Python Recap

Python Recap

University

7 Qs

quiz-placeholder

Similar activities

javaquizvivek

javaquizvivek

University

12 Qs

Classic Platformers (8-bit games)

Classic Platformers (8-bit games)

KG - Professional Development

8 Qs

1.2 Categories of Computer

1.2 Categories of Computer

University

10 Qs

DC

DC

3rd Grade - University

9 Qs

Guess the Controller 3

Guess the Controller 3

KG - Professional Development

12 Qs

Android Fundamentals - Day 1: Java

Android Fundamentals - Day 1: Java

University - Professional Development

10 Qs

Revisão de Python

Revisão de Python

10th Grade - University

10 Qs

Java Control Flow statements

Java Control Flow statements

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