Python Loops

Python Loops

9th - 11th Grade

13 Qs

quiz-placeholder

Similar activities

Python

Python

1st Grade - Professional Development

11 Qs

Seri ekran,potansiyometre,servo

Seri ekran,potansiyometre,servo

9th - 12th Grade

18 Qs

ASK T3 : BAB 4 P2

ASK T3 : BAB 4 P2

1st - 12th Grade

10 Qs

Pop Quiz

Pop Quiz

11th Grade

10 Qs

quiz o python

quiz o python

9th - 12th Grade

15 Qs

Python_P_F

Python_P_F

9th Grade

12 Qs

PYTHON

PYTHON

9th Grade

14 Qs

Python_if-else

Python_if-else

9th - 10th Grade

15 Qs

Python Loops

Python Loops

Assessment

Quiz

Computers, Professional Development

9th - 11th Grade

Hard

Created by

Müzeyyen MUTLU

Used 57+ times

FREE Resource

13 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

Aşağıdaki operatörlerden hangisi "eşitse" anlamı ifade etmektedir?

??

==

!=

&&

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Aşağıdaki operatörlerden hangisi kalanı bulma(mod alma, örn:7'nin 3' e bölümünden kalanı bulma) bulma ifadesinin karşılığıdır?

//

/

%

**

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Aşağıdaki programı çıktısı nedir?


f = "Hoşgeldin"

b = "Burak"

print(b+f)

Hoşgeldin Burak

Burak Hoşgeldin

HoşgeldinBurak

BurakHoşgeldin

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Aşağıdaki programı çıktısı nedir?


f = "Hoşgeldin"

b = "Burak"

print(f,b)

Hoşgeldin Burak

Burak Hoşgeldin

HoşgeldinBurak

BurakHoşgeldin

5.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Aşağıda verilen "for" satırlarındaki hangi "range" kullanımı ile bir çıktı (döngü) üretilemez?

for i in range(1 , 5):

for x in range(10):

for z in range(10,0,-2)

for y in range(-3)

6.

MULTIPLE CHOICE QUESTION

2 mins • 1 pt

Media Image

Ekranda oluşacak çıktı nedir? Yazın.

20 18 16 14 12 10 8

20 18 16 14 12 10

10 12 14 16 18 20

20 9 -2

7.

MULTIPLE CHOICE QUESTION

2 mins • 1 pt

Aşağıdakilerden hangisi 1den 5e kadar olan sayıları ekrana yazdıran kod bloğudur?

i = 1

while i < 5:

print(i)

i += 1

i = 0

while :

print(i)

i =i+ 1

i<5

i = 1

while i >=5:

print(i)

i += 1

i = 1

while i<5:

print(t)

t+=i

i+=1

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?