Introduction to OOP

Introduction to OOP

6th - 12th Grade

5 Qs

quiz-placeholder

Similar activities

OOP in PHP - Object Oriented Programming - deel 1

OOP in PHP - Object Oriented Programming - deel 1

6th Grade - University

10 Qs

Encapsulation

Encapsulation

2nd - 7th Grade

10 Qs

Classes & Objects

Classes & Objects

10th Grade

10 Qs

Objects & Classes

Objects & Classes

11th - 12th Grade

10 Qs

Object Oriented Programming

Object Oriented Programming

11th - 12th Grade

8 Qs

CodeHS 4.10 Key Terms for Classes

CodeHS 4.10 Key Terms for Classes

9th - 12th Grade

10 Qs

QUIZ-I-OBJECT ORIENTED PROGRAMMING WITH C++

QUIZ-I-OBJECT ORIENTED PROGRAMMING WITH C++

10th Grade - University

10 Qs

Python OOP Practice

Python OOP Practice

8th Grade

10 Qs

Introduction to OOP

Introduction to OOP

Assessment

Quiz

Computers

6th - 12th Grade

Hard

Created by

Whizara Teacher

FREE Resource

5 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 5 pts

Object oriented programming focuses on

procedures rather than objects

objects rather than procedures

only data

2.

MULTIPLE CHOICE QUESTION

30 sec • 5 pts

What is the relationship between a class and an object?

 A class is the blueprint for other classes, and an object is an instance of other objects

 An object is the blueprint for classes, and a class is an instance of a the object

A class is the blueprint for objects, and an object is an instance of a the class

none of the mentioned

3.

MULTIPLE CHOICE QUESTION

30 sec • 5 pts

The properties of an object (data) is always tied with its behavior (methods that act on the data). This is known as?

Data combination

Data encapsulation

Data coupling

none of the mentioned

4.

MULTIPLE CHOICE QUESTION

30 sec • 5 pts

____ is the concept of object-oriented programming that displays only essential attributes and through this, hides unnecessary information.

Concealing

Abstraction

Polymorphism

Inheritance

5.

MULTIPLE CHOICE QUESTION

30 sec • 5 pts

State true or false. A class is defined using the syntax:

class <classname>:

    Class variables if any 

    Class methods

True

False