Revision

Revision

7th Grade

6 Qs

quiz-placeholder

Similar activities

Input and Output Operations in Python

Input and Output Operations in Python

6th - 10th Grade

11 Qs

Structura secventiala

Structura secventiala

6th - 8th Grade

8 Qs

1. MicroBit variabile

1. MicroBit variabile

4th - 8th Grade

7 Qs

Тест

Тест

7th Grade

10 Qs

Программирование алгоритма 8 класс

Программирование алгоритма 8 класс

1st - 10th Grade

10 Qs

Minecraft Education Edition

Minecraft Education Edition

4th - 9th Grade

10 Qs

Variables Warm Up

Variables Warm Up

6th - 8th Grade

10 Qs

Питон Майкрафт циклы

Питон Майкрафт циклы

1st - 7th Grade

10 Qs

Revision

Revision

Assessment

Quiz

Computers

7th Grade

Hard

Created by

Elena Curea

Used 1+ times

FREE Resource

6 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Un operator care verifica daca doua valori sunt egale, este

==

===

=

!=

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Valuare asignata in final lui x este :

x = 1

x = x == x

False

0

True

1

3.

MULTIPLE CHOICE QUESTION

45 sec • 2 pts

Cate * afiseaza urmatoarea secventa de cod:

i = 0

while i <= 3 :

    i += 2

    print("*")

0

1

2

3

4.

MULTIPLE CHOICE QUESTION

1 min • 2 pts

Cate * afiseaza secventa:

i = 0

while i <= 5 :

    i += 1

    if i % 2 == 0:

      break

    print("*")

0

3

1

2

5.

MULTIPLE CHOICE QUESTION

45 sec • 2 pts

Cate semne # va afisa:

for i in range(1):

    print("#")

else:

    print("#")

0

3

1

2

6.

MULTIPLE CHOICE QUESTION

1 min • 3 pts

Cate # se vor afisa:

var = 0

while var < 6:

    var += 1

    if var % 2 == 0:

        continue

    print("#")

1

2

3

0