Font size
Worksheets12/3 Classes & Objects
Total questions: 17
Worksheet time: 13mins
What are the attributes to the BankAccount class?
Deposit & withdrawal
owner & balance
BankAccount
string & Dollars
What are the Class Name to the BankAccount class?
Deposit & withdrawal
owner & balance
BankAccount
string & Dollars
I hate Mr. Bugusky
What are the functions to the BankAccount class?
Deposit & withdrawal
owner & balance
BankAccount
string & Dollars
I hate Mr. Bugusky
What of the following is a callable function?
radius
getArea()
center
getCircumference()
setCenter(3,4)
What is an argument all classes need to initialize?
self
name
class
I hate mr. B
keyword
In the statement
Bank tom = Bank(5000.0);
Which is the class?
Bank
tom
new
5000.0
In the statement
Bank tom = Bank(5000.0);
Which is the object?
Bank
tom
new
5000.0
What is a Python class?
A function to create an object.
A template (blueprint) for creating objects.
A procedure related to an object.
A process that repeats are directed.
What is the keyword to create a class?
import
__int__
class
def
Identify the code that properly creates an instance of a class named Car.
camero.car(make, model)
tesla = car.make()
mustang = Car(make,model)
porsche = car.make.model()
Identify the initialization method for a Car class.
class init(self, make, model):
class__init__:
def __init__(self, make, model):
def __init__(self, make, model):
What choice correctly defines a class called NFL_Player with attributes name and overall.
class NFL_Player:
def __init__(self, name, overall):
self.name = name
self.overall = name
class NFL_Player()
def __init__(self, name, overall):
self.name = name
self.overall = name
class NFL_Player:
def __init__(name, overall):
self.name = name
self.overall = name
class NFL_Player()
def __init__(name, overall):
self.name = name
self.overall = name
I don't know.....
Why do we make variable or objects global?
So people on any part of the world can see it. Across the flat earth.
Its good practice.
They are temp and only exist inside the function or class that contains them. Therefore accessible anywhere.
Who would win a battle between, Darth Vader vs. Yoda?
Darth Vader
Yoda
What is cooler, Mandalorian or Black Mirror?
Mandalorian
Capt. James T. Kirk
No opinion
Birthday = True
Is today Mr. Bugusky's birthday?
Yes
No
