June 2022 1 5 Report
14. 24 % 5 da wynik

a) 1
b) 2
c) 3
d) 4

15. Ile razy będzie wypisany napis "Welcome to Python"?

count = 0 while count < 10:
print ("Welcome to Python")
count += 1

a) 8

b) 9

c) 10

d) 11

16. Jaki będzie efekt wykonania kodu?

X = 0

while x < 4:
X = x + 1
print ("x is", x)

a) x is 0

b) x is 1

c) x is 2

d) x is 4

17. Jaki będzie efekt wykonania kodu?

number = 6
while number > 0:
number -= 3
print (number, end = ' ' )

a) 6 3 0
b) 6 3
c) 3 0
d) 3 0 - 3
e) 0 - 3

Naprawdę błagam o pomoc​

Recommend Questions



Life Enjoy

" Life is not a problem to be solved but a reality to be experienced! "

Get in touch

Social

© Copyright 2013 - 2024 KUDO.TIPS - All rights reserved.