V
Q. What will be the output of the following Python code?
i = 1 while True: if i%2 == 0: break print(i) i += 2
No solution found for this question.
Add Solution and get +2 points.
You must be Logged in to update hint/solution
Be the first to start discuss.
Q. How many keywords are there in python 3.7?
Q. Is this code valid in Python?
Q. What is the output of the following code?
Q. Which among the following list of operators has the highest precedence? +, -, **, %, /, <<, >>, |
Q. What will be the result of the following expression in Python “2 ** 3 + 5 ** 2”?
Q. What will be the output of the following Python code?
Q. Program code making use of a given module is called a ______ of the module.
Q. What is the output of the following code?
Q. In which part of memory does the system stores the parameter and local variables of funtion call?
Q. How many local and global variables are there in the following Python code?
Discusssion
Login to discuss.