OOPS - PYTHON

OOPS - PYTHON

Assessment

Flashcard

Instructional Technology

Professional Development

Hard

Created by

Wayground Content

FREE Resource

Student preview

quiz-placeholder

9 questions

Show all answers

1.

FLASHCARD QUESTION

Front

OOPs

Back

Object Oriented Programming

2.

FLASHCARD QUESTION

Front

Which of the options given below can create objects? Options: Classes, Functions, Methods, Modules

Back

Classes

3.

FLASHCARD QUESTION

Front

What are classes?

Back

Blueprints/Prototypes that defines methods and attributes

4.

FLASHCARD QUESTION

Front

What are Objects?

Back

Instances of a Class

5.

FLASHCARD QUESTION

Front

What are Attributes?

Back

Variables of a class

6.

FLASHCARD QUESTION

Front

What refers to the behavior of the class? Options: Attribute, Class, Object, Method

Back

Method

7.

FLASHCARD QUESTION

Front

what is self?

Back

Self represents the instance of the class in the class

8.

FLASHCARD QUESTION

Front

How to call a method?

Back

Obj.method():

9.

FLASHCARD QUESTION

Front

Define of a class: Options: class NAME:, class Name():, class (NAME):, class: Name()

Back

class Name():