Computer Science
Functions that do not return any value are known as:
- fruitful functions
- void functions
- library functions
- user-defined functions
Python Functions
2 Likes
Answer
void functions
Reason — Functions that do not return any value are known as void functions because they do not produce any output or result that can be used in the calling code.
Answered By
2 Likes
Related Questions
A function in Python begins with which keyword?
- void
- return
- int
- def
Name the statement that sends back a value from a function.
- input
- return
- None
A variable created or defined within a function body is classified as:
- local
- global
- built-in
- instance
Which of the following arguments works with implicit values that are used if no value is provided?
- keyword
- required
- variable-length
- default