Things to Remember in Python

Things to Remember in Python

University

9 Qs

quiz-placeholder

Similar activities

Java  - Introduction

Java - Introduction

University

10 Qs

Tes Polymorphism

Tes Polymorphism

University

10 Qs

Fundamentals of Object-Oriented Programming

Fundamentals of Object-Oriented Programming

University

10 Qs

Lecture 01 - IT 1020SEF

Lecture 01 - IT 1020SEF

University

11 Qs

Topik 2: Ciri-ciri Object Oriented Programming (OOP)

Topik 2: Ciri-ciri Object Oriented Programming (OOP)

University

10 Qs

Quiz on Computer Scince

Quiz on Computer Scince

University

10 Qs

Computer System

Computer System

University

14 Qs

Overview of IT

Overview of IT

6th Grade - University

8 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__"