OTP20.03.24

OTP20.03.24

6th - 8th Grade

10 Qs

quiz-placeholder

Similar activities

Quiz1_HPB2021_2010t1

Quiz1_HPB2021_2010t1

1st - 12th Grade

10 Qs

Word Processing

Word Processing

7th Grade

10 Qs

Milestone Exkul SMP SMA - Q5_2022_Basic Python Syntax

Milestone Exkul SMP SMA - Q5_2022_Basic Python Syntax

6th - 8th Grade

15 Qs

Lists and Loops in Computer Science

Lists and Loops in Computer Science

7th - 11th Grade

15 Qs

Osnove HTML-a, mrežno mjesto, mrežne stranice

Osnove HTML-a, mrežno mjesto, mrežne stranice

7th - 8th Grade

11 Qs

Lesson 1: Introduction to Python

Lesson 1: Introduction to Python

5th - 12th Grade

8 Qs

Keyboard Shortcuts

Keyboard Shortcuts

6th Grade

10 Qs

Python

Python

7th - 8th Grade

10 Qs

OTP20.03.24

OTP20.03.24

Assessment

Quiz

Computers

6th - 8th Grade

Hard

Created by

Роман Касимов

Used 1+ times

FREE Resource

10 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

p='I am clever student'

print(p[0:11:2])

Invalid syntax

Ia cee

Ia cee suet

Ia lvr

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

p='abcdefghijklmnopqr'

if len(p)*2%3==0:

print('Ne Pravilno')

else:

print('Pravilno')

Pravilno
Nep Pravilno
Nep

Ne Pravilno

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

p='Python is fun'

print(p[0:10:3])

Py

Pt

Pi

Pn

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

print( len('Hello World') % 4)

0

1

2

3

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

num = 10

if num > 5:

    print('Greater than 5')

else:

    print('Less than or equal to 5')

Greater than 5

Less than or equal to 5

10

5

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

p='abcdefgromamatveymaximegor'

mmr=0

for i in range(len(p)):

if 'm' in p:

mmr+=1

print(mmr)

26

invalid syntax

4

8

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

num = 20

if num % 3 == 0:

    print('Divisible by 3')

else:

    print('Not divisible by 3')

Divisible by 3

Not divisible by 3

20

3

Create a free account and access millions of resources

Create resources
Host any resource
Get auto-graded reports
or continue with
Microsoft
Apple
Others
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?