Python Recap

Python Recap

University

7 Qs

quiz-placeholder

Similar activities

Posttes Pewarisan Pertemuan 1

Posttes Pewarisan Pertemuan 1

University

10 Qs

Quiz 4 PBO A

Quiz 4 PBO A

University

10 Qs

AITT LAB QUIZ  4

AITT LAB QUIZ 4

University

10 Qs

Popular Video Games (2019)

Popular Video Games (2019)

KG - Professional Development

10 Qs

Java Quiz 1

Java Quiz 1

University

10 Qs

java quiz on Encapsulation and Abstraction

java quiz on Encapsulation and Abstraction

University

10 Qs

AP CSA Inheritance Polymorphism

AP CSA Inheritance Polymorphism

University

10 Qs

Talent Next Java MCQ-1

Talent Next Java MCQ-1

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