Search Header Logo

G11 Unit 2 Exercises

Authored by Razan Alghamdi undefined

Computers

11th Grade

Used 2+ times

G11 Unit 2 Exercises
AI

AI Actions

Add similar questions

Adjust reading levels

Convert to real-world scenario

Translate activity

More...

    Content View

    Student View

16 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

The composition of attributes and methods is defined by

Inheritance

Method

Class

Object

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which statement is true about the inheritance concept in object-oriented programming?

A child class can inherit attributes and methods from multiple parent classes.

Child classes cannot have additional attributes or methods beyond those of the parent

A parent class can inherit from its child class.

Only methods can be inherited from the parent class.

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Consider the following code and identify the parent class.

class A:

pass

class B(A):

pass

class C(A):

pass

A

B

C

None

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

In Python, what is an example of polymorphism?

Creating classes that inherit from multiple parent classes.

Creating multiple classes with the same name.

Using the len() method on different data types.

Writing multiple functions with different names that perform the same action.

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Predict the output of the following program.

class Parent:

def speak(self):

return "Parent Speaking"

class Child(Parent):

def speak(self):

return "Child Speaking"

obj = Child()

print(obj.speak())

Child Speaking

An error will be raised

None of the above

Parent Speaking

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will happen if a method is not found in the Child class but is present in the parent class?

The program will throw an error.

The method from the parent class will be executed.

The program will terminate.

The method from the child class will be executed.

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which feature of OOP allows the reusability of code?

Inheritance

Class

Method

Object

Access all questions and much more by creating a free account

Create resources

Host any resource

Get auto-graded reports

Google

Continue with Google

Email

Continue with Email

Classlink

Continue with Classlink

Clever

Continue with Clever

or continue with

Microsoft

Microsoft

Apple

Apple

Others

Others

Already have an account?