Computer Science, asked by anuroopsaxena1, 9 months ago

Which of the following is not true about a function? (python)
a) it can store and work on more than one line of code
b) a function can be used outside of the parent program
c) it can be used to perform complex functions which include multiple conditions​

Answers

Answered by soubhagyadash10
14

Answer:

may be the option b

Explanation:

hope it will helpfull

Answered by adventureisland
0

Option (A) is correct answer.

" It can store and work on more than one line of program"  is not true about a function.

About Function :

  • Functions are reusable software components, which is the right statement. They let you to name a block of statements and then use that name to run that block anywhere in your application and as many times as you like.
  • A function in Python is a collection of connected statements that performs a single task.
  • Functions aid in the division of our software into smaller, modular portions.
Similar questions