Python Learn Simpli September 6, 2019 no Comments 1. Which is an incorrect syntax in the following answers? import module import function from module from module import function None 2. What is ‘global’ in Python? Built-in module Keyword Built-in function none None 3. which of the following keyword(s) used along with ‘else’ clause in Python all of the above while try if None 4. Which statements is not true in the following options? None Statements in a block must have same indent level. Indent length may vary for each block Each block must have same indent level. None 5. which of following answer is true about __init__() method? It is a magic method It is a constructor All of the above It calls __new__() method None 6. What kind of relationship exists between inherited class and base class? HAS A IS A None Both None 7. what should be a private in order to make an instance variable prefixed by double under score having single underscore before and after the name prefixed by single under score having double underscore before and after the name None 8. Which string is not a valid aces mode for opening a file in simultaneous read/write mode in following options? rw w+ wb+ r+ None 9. Value of __name__ attribute of a module may be equal to ‘main’ when None of these it is imported by another script it is executed from interpreter it is the first module in a package None 10. Which is not a built-in exception in Python among following options? ValueError KeywordError ImportError TypeError None Time's up