[Python OOP] Inheritance, special function

Quiz
•
Computers
•
12th Grade
•
Hard
Zheng Liu
Used 4+ times
FREE Resource
7 questions
Show all answers
1.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
Look at the code snippet in the screenshot. If you run the screenshot, what will happen?
It will raise an error: Rectangle class does not have method "printMe" defined.
It will raise an error: Rectangle class is empty. Python does not allow that.
It will run, and print "Shape: generic shape" on screen.
It will run, but nothing will be printed on screen.
2.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
Look at this code snippet (screenshot). What will happen if you run it?
An error will occur: Rectangle class has two "printMe" methods. Cannot resolve which method to use.
It will print "Shape: generic shape" on screen
It will print "Shape: Rectangle" on screen
It will print two lines:
Shape: generic shape
Shape: Rectangle
3.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
Look at the code snippet (screenshot). What happens if you run it?
An error will occur.
It will print "Shape Rectangle"
It will print:
Shape: Rectangle
shape: generic shape
It will print:
Shape: generic shape
Shape: rectangle
4.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
Look at the code snippet. Note there's a blank "______" in the snippet. Suppose we would like to make "Shape" an abstract class, by keeping "printMe" method not implemented. Which option is correct to fill in the blank?
return NotImplemented
raise NotImplementError("printMe method not implemnted!")
return NotImplementedError("printMe method not implemnted!")
return None
5.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
Recall that Python str class support "+" operation: "abc" + "ef" => "abcef". Which special method must the str class have implemented?
def __str_ _
def str
def __add_ _
def __eq_ _
6.
MULTIPLE SELECT QUESTION
45 sec • 1 pt
This code snippet shows the definition of "Stack" class. Which option(s) of the following is correct to get the size of the stack object s (assign to variable n)?
n = s.size()
n = s.len()
n = len(s)
n = len(s.__list)
7.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
Look at the snippet for Stack class. What's the time complexity of "push", "pop" and "get" methods? (N: size of stack)
push: O(1)
pop: O(1)
get: O(1)
push: O(N)
pop: O(N)
get: O(1)
push: O(1)
pop: O(1)
get: O(N)
push: O(N)
pop: O(N)
get: O(N)
Similar Resources on Wayground
10 questions
Python quiz

Quiz
•
10th Grade - Professi...
10 questions
Quiz1_HPB2021_2010t1

Quiz
•
1st - 12th Grade
10 questions
CS1310 Unit 1 Quizziz

Quiz
•
12th Grade
10 questions
Python Flow Control

Quiz
•
9th - 12th Grade
10 questions
Indexing and Slicing in Python

Quiz
•
4th Grade - University
10 questions
CLASS 9 AI - VIVA 2024-25

Quiz
•
9th Grade - University
9 questions
Python Quiz 1

Quiz
•
8th Grade - University
10 questions
Python Basics

Quiz
•
12th Grade - University
Popular Resources on Wayground
50 questions
Trivia 7/25

Quiz
•
12th Grade
11 questions
Standard Response Protocol

Quiz
•
6th - 8th Grade
11 questions
Negative Exponents

Quiz
•
7th - 8th Grade
12 questions
Exponent Expressions

Quiz
•
6th Grade
4 questions
Exit Ticket 7/29

Quiz
•
8th Grade
20 questions
Subject-Verb Agreement

Quiz
•
9th Grade
20 questions
One Step Equations All Operations

Quiz
•
6th - 7th Grade
18 questions
"A Quilt of a Country"

Quiz
•
9th Grade