Python True False Questions

  1. An “immutable” object is an object that can be changed after it is created.
    1. True
    2. False
Answer :
False
Explanation:
Added By : Shruti

  1. Immutability can be used to guarantee that an object remains constant throughout your program.
    1. True
    2. False
Answer :
True
Explanation:
Added By : Sandhya


  1. Python automatically stores byte code in files with a .pyc extension.
    1. True
    2. False
Answer :
True
Explanation:
Added By : Varun

  1. When execute Python program, Python first compiles source code(file statement) into a format known as pseudo code.
    1. True
    2. False
Answer :
False
Explanation:

Python first compiles source code(file statement) into a format known as byte code.

Added By : Varun

  1. Python has deep support of Object Oriented Programming (OOP)
    1. True
    2. False
Answer :
True
Explanation:
Added By : Varun

Post Your Question
Social Sharing
Search