Review Quiz

Review Quiz

4th Grade

10 Qs

quiz-placeholder

Similar activities

Python - тест

Python - тест

1st - 12th Grade

15 Qs

Pascal Assessment

Pascal Assessment

3rd - 4th Grade

10 Qs

Exploring Email

Exploring Email

4th - 7th Grade

14 Qs

Introduction to Python - If and Else

Introduction to Python - If and Else

1st - 6th Grade

10 Qs

Struktur kawalan ulangan

Struktur kawalan ulangan

2nd - 5th Grade

11 Qs

Algorithms

Algorithms

2nd - 6th Grade

11 Qs

Cấu trúc lặp (phần 1)

Cấu trúc lặp (phần 1)

3rd Grade - University

10 Qs

computer

computer

1st - 5th Grade

10 Qs

Review Quiz

Review Quiz

Assessment

Quiz

Created by

Joy Peji

Computers

4th Grade

7 plays

Hard

10 questions

Show all answers

1.

FILL IN THE BLANK QUESTION

30 sec • 1 pt

print(len('Hello') + len('Hello'))

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

i = 0

spam = 'Hello'

while i < 10:

spam = spam + spam[i]

i = i + 1

print(spam)

HelloH

HelloHe

HelloHel

HelloHell

HelloHello

HelloHelloH

HelloHelloHe

HelloHelloHel

HelloHelloHell

HelloHelloHello

HelloHelloHello

HelloH

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

i = 0

while i < 4:

while i < 6:

i = i + 2

print(i)

2

4

6

6

4

2

2 4 6

6 4 2

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

for i in 'hello':

print(i)

hello

h

e

l

l

o

h e l l o

o

l

l

e

h

5.

MULTIPLE SELECT QUESTION

30 sec • 1 pt

if 10 < 5:

print('Hello')

else:

print('Goodbye')

elif 5 == 5:

print('Alice')

True

False

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

if 10 < 5:

print('Hello')

elif 5 == 5:

print('Me')

else:

print('Goodbye')

Hello

Me

Goodbye

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

spam = 'joy'

for i in spam:

spam += i

print(spam)

joyjoy

joy

Nothing

Explore all questions with a free account

or continue with
Microsoft
Apple
Others
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?