Computer Science, asked by abhayyadav65191, 6 months ago

what will be output of the following python code?
A, v = 10,50
If b%a == 0
Print (b//4)
Print (a/2)
Else :
Print (a**2)
Print (b%3)​

Answers

Answered by divyamehta9399
1

: a

Explanation: Functions are reusable pieces of programs. They allow you to give a name to a block of statements, allowing you to run that block using the specified name anywhere in your program and any number of times.

Similar questions