Python Basic Practice Questions


  1. State True or False :

    β€œIn a Python program, if a break statement is given in a nested loop, it terminates the execution of all loops in one go.”
    False

  2. What will be the output of the following statement ?

    print(3-2**2**3+99/11)
    -244.0