Python Classes and Objects

Python Classes and Objects

9th - 12th Grade

11 Qs

quiz-placeholder

Similar activities

Python Objects and Recursion

Python Objects and Recursion

10th Grade

14 Qs

Careers in Computing

Careers in Computing

8th - 9th Grade

10 Qs

OOP

OOP

9th - 12th Grade

10 Qs

Python Classes Quiz

Python Classes Quiz

9th - 12th Grade

15 Qs

Object-Oriented Programming (OOP) in Python 3 Quiz

Object-Oriented Programming (OOP) in Python 3 Quiz

12th Grade

10 Qs

Creating and using classes in Python

Creating and using classes in Python

9th - 12th Grade

15 Qs

object oriented programming

object oriented programming

11th Grade - University

10 Qs

Python Classes and Objects

Python Classes and Objects

Assessment

Quiz

Computers

9th - 12th Grade

Hard

Created by

Thomas Martinez

FREE Resource

11 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

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.

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the keyword to create a class?

import

__int__

class

def

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Identify the first statement that creates a class named Employee.

class Employee():

Class Employee:

class employee:

class Employee:

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Identify the term that describes the creation of a new object.

instantiation

declare

iteration

initialize

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

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()

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

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):

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Identify the code that properly accesses an engine_sound() method in a Car class.

porsche.engine_sound()

mustang = engine_sound()

engine_sound(tesla):

engine_sound.Car(camaro)

Create a free account and access millions of resources

Create resources
Host any resource
Get auto-graded reports
or continue with
Microsoft
Apple
Others
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?