Python Quiz-5

Python Quiz-5

University

10 Qs

quiz-placeholder

Similar activities

java quiz on Encapsulation and Abstraction

java quiz on Encapsulation and Abstraction

University

10 Qs

Knowledge representations

Knowledge representations

University

10 Qs

AITT LAB QUIZ  4

AITT LAB QUIZ 4

University

10 Qs

Unit 08 - Quiz (Part 1)

Unit 08 - Quiz (Part 1)

University

10 Qs

Enitity Relationship

Enitity Relationship

University

15 Qs

Talent Next Java MCQ-1

Talent Next Java MCQ-1

University

10 Qs

Quiz 4

Quiz 4

University

5 Qs

Java Quiz

Java Quiz

University

10 Qs

Python Quiz-5

Python Quiz-5

Assessment

Quiz

Computers

University

Hard

Created by

shilpa gupta

Used 29+ times

FREE Resource

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

Create a free account and access millions of resources

Create resources
Host any resource
Get auto-graded reports
or continue with
Microsoft
Apple
Others
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?