Option D - OOP

Option D - OOP

11th - 12th Grade

9 Qs

quiz-placeholder

Similar activities

Object-Oriented Programming (OOP) in Python 3 Quiz

Object-Oriented Programming (OOP) in Python 3 Quiz

12th Grade

10 Qs

OOP 1 Undiksha

OOP 1 Undiksha

12th Grade - University

13 Qs

#094 Topic 2.1 Video 1

#094 Topic 2.1 Video 1

11th Grade

5 Qs

OOP

OOP

9th - 12th Grade

10 Qs

object oriented programming

object oriented programming

11th Grade - University

10 Qs

Objects, Classes, and Methods Terminology

Objects, Classes, and Methods Terminology

5th - 12th Grade

11 Qs

Object Oriented Programming in Python

Object Oriented Programming in Python

12th Grade

12 Qs

AppsLab_Q3

AppsLab_Q3

1st Grade - Professional Development

12 Qs

Option D - OOP

Option D - OOP

Assessment

Quiz

Computers

11th - 12th Grade

Hard

Created by

Mai Abdou

Used 19+ times

FREE Resource

9 questions

Show all answers

1.

FILL IN THE BLANK QUESTION

20 sec • 5 pts

A programming entity that contains state (information) and behavior (methods).

2.

MULTIPLE CHOICE QUESTION

10 sec • 5 pts

Set of values stored in an object

Class

State

Numbers

Signature

3.

FILL IN THE BLANK QUESTION

20 sec • 5 pts

A set of actions the object can perform, often changing the state in some way

4.

MULTIPLE CHOICE QUESTION

10 sec • 5 pts

Creating an instance of an object using its class as a template

Class

Relationship

Instantiation

Template

5.

FILL IN THE BLANK QUESTION

1 min • 5 pts

Template/blueprint/DNA for an object

6.

MULTIPLE SELECT QUESTION

20 sec • 5 pts

A class should have

State

Aggregation

Behaviors

Constructors

7.

MULTIPLE CHOICE QUESTION

10 sec • 5 pts

Shows a "has one to many" relationship without lifetime ownership.

Instance Aggregation

Inheritance

8.

MULTIPLE CHOICE QUESTION

10 sec • 5 pts

keyword used for methods and variables only usable inside the class

Public

Private

9.

FILL IN THE BLANK QUESTION

20 sec • 5 pts

Method used to access or get information from an instance of an object