Python Recap

Python Recap

University

7 Qs

quiz-placeholder

Similar activities

The Gameboy Dynasty Part 3 Demo

The Gameboy Dynasty Part 3 Demo

KG - University

10 Qs

Java Quiz1

Java Quiz1

University

10 Qs

Java Control Flow statements

Java Control Flow statements

University

10 Qs

javaquizvivek

javaquizvivek

University

12 Qs

exception

exception

University

10 Qs

Java quiz-2024-Sec-B

Java quiz-2024-Sec-B

University

12 Qs

Inheritance

Inheritance

University

7 Qs

java quiz based on interface

java quiz based on interface

University

10 Qs

Python Recap

Python Recap

Assessment

Quiz

Computers

University

Medium

Created by

P zet

Used 2+ times

FREE Resource

7 questions

Show all answers

1.

MULTIPLE SELECT QUESTION

45 sec • 1 pt

What do you call a class which you inherit from?

Ultra class

Parent class

Super class

Mega class

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What function is used to access super class attributes and methods?

super()

parent()

top()

self()

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following is not a built-in data type in Python?

String (str)

Integer (int)

list

void

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following is a correct way to create a list of integers from 1 to 5?

(1, 2, 3, 4, 5)

[1, 2, 3, 4, 5]

{1, 2, 3, 4, 5}

1, 2, 3, 4, 5

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following statements about classes in Python is true?

A class is used to create conditional statements.

A class is an instance of an object.

A class is a blueprint for creating objects.

A class is a collection of elements such as integers.

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the result of the following calculation: 5 % 2

2.5

2

1

0

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

What is the output of the following code?

5

"MyClass"

"x"

None