Search Header Logo

Python Quiz-5

Authored by shilpa gupta

Computers

University

Used 29+ times

Python Quiz-5
AI

AI Actions

Add similar questions

Adjust reading levels

Convert to real-world scenario

Translate activity

More...

    Content View

    Student View

10 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

1. Which of the following best describes inheritance?

Ability of a class to derive members of another class as a part of its own definition

Means of bundling instance variables and methods in order to restrict access to certain class members

Focuses on variables and passing of variables to functions

Allows for implementation of elegant software that is well designed and easily modified

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following statements is wrong about inheritance?

Protected members of a class can be inherited

The inheriting class is called a subclass

Private members of a class can be inherited and accessed

Inheritance is one of the features of OOP

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

class A():

def disp(self):

print("A disp()")

class B(A):

pass

obj = B()

obj.disp()

Invalid syntax for inheritance

Error because when object is created, argument must be passed

Nothing is printed

A disp()

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

All subclasses are a subtype in object-oriented programming.

True

False

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following is not a type of inheritance?

Double

Single

Multiple

Multilevel

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What type of inheritance is illustrated in the following Python code?

class A():

pass

class B():

pass

class C(A,B):

pass

Multilevel

Single

Multiple

Hybrid

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What type of inheritance is illustrated in the following Python code?

class A():

pass

class B(A):

pass

class C(B):

pass

Multilevel

Multiple

Single

Hybrid

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?