Things to Remember in Python

Things to Remember in Python

University

9 Qs

quiz-placeholder

Similar activities

BINARY BRAINS

BINARY BRAINS

University

10 Qs

Primary Storage

Primary Storage

4th Grade - University

10 Qs

Java Method Overloading

Java Method Overloading

University

6 Qs

OOP-1

OOP-1

University

10 Qs

Information Technology  unit2 1 computer memory

Information Technology unit2 1 computer memory

3rd Grade - University

12 Qs

Data Life Cycle

Data Life Cycle

University

10 Qs

The OOP Quiz

The OOP Quiz

University

10 Qs

AP CSA Inheritance Polymorphism

AP CSA Inheritance Polymorphism

University

10 Qs

Things to Remember in Python

Things to Remember in Python

Assessment

Quiz

Computers

University

Easy

Created by

Aldebaran Adhitya

Used 5+ times

FREE Resource

9 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

... in OOP gives the ability of a particular line of code to be implemented by different methods depending on the type of the object involved.

Inheritance

Encapsulation

Polymorphism

Overriding

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

The ability to derive a new class from one or more existing classes. Inherited variables and methods of the original (parent) class are available in the new (child) class as if they were declared locally.

This is the definition of ...

Inheritance

Encapsulation

Polymorphism

Overriding

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

The class implementation details are invisible (hidden) from the user. All interaction with an object occurs through a well-defined interface that supports a modular design.

This is the definition of ...

Inheritance

Encapsulation

Polymorphism

Overriding

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

A subclass inherits methods from a superclass. Sometimes it is necessary for the subclass to modify the implementation of a method defined in the superclass.

This is the definition of ...

Inheritance

Encapsulation

Polymorphism

Overriding

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

A computer system consists of five logical units, which are:

  1. 1. CPU,

  2. 2. Input Unit,

  3. 3. Output Unit,

  4. 4. Primary Storage Unit,

  5. 5. Secondary Storage Unit

  1. 1. SPU,

  2. 2. Input Unit,

  3. 3. Output Unit,

  4. 4. Primary Storage Unit,

  5. 5. Secondary Storage Unit

  1. 1. CPU,

  2. 2. Input Unit,

  3. 3. Output Unit,

  4. 4. Primary Storage Unit,

  5. 5. Ternary Storage Unit

  1. 1. CPU,

  2. 2. Input Unit,

  3. 3. Output Unit,

  4. 4. Primary Storage Unit,

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

The character "A" has an ord of ...

65

97

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

The character "a" has an ord of ...

65

97

8.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

... is the thought processes involved in formulating problems

and their solutions so that the solutions are represented in a form that can be effectively

carried out by a computer.

Computational thinking

Thinking about Computers

9.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

When a Python program is executed directly (not import-ed), the value of the

variable name name__ is ...

__main__

"__main__"