Chapter 12: Python Inheritance

 

Results

Previous
Next

#1. In file handling, what does this terms means ‘r’,’a’?

Previous
Next

#2. In Inheritance, new class is called _______ class.

Previous
Next

#3. The one from which it inherits is called the ____ class.

Previous
Next

#4. Which function is used to read all the characters?

Previous
Next

#5. _______ class inherits from the base class, adding new features to it.

Previous
Next

#6. To open a file c:scores.text for writing, we use

Previous
Next

#7. Inheritance results into ______ of code.

Previous
Next

#8. What is the type of int?

Previous
Next

#9. _________ means having two methods with the same name but doing different tasks.

Previous
Next

#10. Python supports the creation of anonymous functions at runtime, using a construct called __________

Previous
Next

#11. A class can be derived from more than one base classes in python is called ____________ inheritance.

Previous
Next

#12. Python have

Previous
Next

#13. We can inherit form a derived class is known as _________ inheritance.

Previous
Next

#14. Which are the advantages of functions in python?

Previous
Next

#15. _______ create a structure that can take or use many forms of objects.

Previous
Next

#16. Suppose list1 is [3,5,25,1,3] what is min(list1)?

Previous
Next

#17. In python, that allows same operator to have different meaning according to the context is called ___________ overloading.

Previous
Next

#18. Suppose list1 is [3,5,25,1,3], what is max(list1)?

Previous
Next

#19. Python does not limit operator overloading to _______ operators only.

Previous
Next

#20. What is the default value of encoding in encode() windows?

Previous
Next

#21. How are variable length arguments specified in the function heading?

Previous
Next

#22. Which function is used to write all the characters?

Previous
Next

#23. To open a file c:scores.txt for appending data, we use

Previous
Next

#24. ________ exceptions are raised as a result of an error in opening a particular file.

Previous
Next

#25. Which of the following aren’t defined in the math module?

Previous
Finish