Home / Programming MCQs / Python MCQs / Question
R
Q. Study the following program:
1. class book: 2. def __init__(a, b): 3. a.o1 = b 4. class child(book): 5. def __init__(a, b): 6. a.o2 = b 7. obj = page(32) 8. print “%d %d” % (obj.o1, obj.o2)
No solution found for this question.
Add Solution and get +2 points.
You must be Logged in to update hint/solution
What will be the output of the following Python code and state the type of copy that is depicted?
What will be the output of the following code snippet?
What will be the output of the following code?
What will be the output of the following Python function?
Which of the following is true for variable names in Python?
If a class is derived from two different classes, this is called ______?
Discusssion
Login to discuss.