Phyton

Phyton

11th Grade

6 Qs

quiz-placeholder

Similar activities

Python - 01

Python - 01

9th - 12th Grade

10 Qs

CWA Java 3

CWA Java 3

11th - 12th Grade

8 Qs

Kode Quiz

Kode Quiz

11th Grade

7 Qs

2DO BACHILLERATO - SEGUNDO PARCIAL - PROGRAMACION

2DO BACHILLERATO - SEGUNDO PARCIAL - PROGRAMACION

11th Grade

10 Qs

Quiz 1

Quiz 1

9th - 12th Grade

11 Qs

XI-MIPA 1 Belajar Python with Progate sd variable.com

XI-MIPA 1 Belajar Python with Progate sd variable.com

10th - 11th Grade

10 Qs

CodeHS Python

CodeHS Python

7th - 12th Grade

10 Qs

Pop Quiz

Pop Quiz

11th Grade

10 Qs

Phyton

Phyton

Assessment

Quiz

Computers

11th Grade

Hard

Created by

Johnson jr

Used 2+ times

FREE Resource

6 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

x, y, z = 15, 3.2, 'Beautiful'

print(y)

Error

15

3.2

beautiful

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

alphabets = {'a':'apple', 'b':'ball', 'c':'cat'}

print(alphabets)

{'a': 'apple', 'b': 'ball', 'c': 'cat'}

'a': 'apple', 'b': 'ball', 'c': 'cat'

{a: apple, b: ball, c: cat}

error

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

float_x = 2.5

float_y = 3.5

integer_z = 50

new_number = float_x + float_y + integer_z

print(new_number)

print(type(new_number))

56

<class 'float'>

56

<class 'integer'>

56.0

<class 'float'>

error

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

num_string = '13'

num_int = 15

num_new = int(num_string)

num_end = num_new + num_int

print (num_end)

13

15

error

28

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

#Python print() with sep parameter


print ('Congratulation for Graduation' , 2024, 'Brother !', sep= '* ')

Congratulation for Graduation* 2024* Brother!

Congratulation for Graduation, 2024, Brother!

Congratulation for Graduation. 2024. Brother!

error

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

num_a = 4

num_b = 5

print(num_a + num_b)

print(num_a - num_b)

print(num_a // num_b)

print(num_a % num_b)

print(num_a * num_b)

9

-1

0

4

20

9

-1

0

5

20

9

-1

0

-4

20

9

-1

0

-5

20