logo

Crowdly

Browser

Add to Chrome

Course 67

Looking for Course 67 test answers and solutions? Browse our comprehensive collection of verified answers for Course 67 at dl.guscollege.com.

Get instant access to accurate answers and detailed explanations for your course questions. Our community-driven platform helps students succeed!

Що таке цикл у Python?
View this question
Що таке ітерація?
View this question

Яким буде результат виконання наступного коду:

n=int(input())

i=1

while i <= n:

    print(i)

    i+=1

   

View this question

Вкажіть організацію циклу яка призводить до зациклювання

View this question

Скільки значень буде виведено на екран?

i = 1

while i <= 4:

    print(i)

    i += 1

View this question

Визначте, що буде надруковано в результаті виконання наступного скрипта:

m=123

while m>0:

    d=m%10

    s=s+d

    m=m//10

print(s)

View this question

Що буде виведено останнім рядком? (впишіть число)

i = 0

s = 0

while i < 5:

    s = s + i

    i += 1

    print(s)

View this question

Вкажіть , який із наведених нижче виразів набуває значення True

View this question

Вкажіть, яке слово відповідає в Python булевскому значенню 'істина"

View this question

Вкажіть, чим є вираз в круглих дужках конструкції if ( x==0 ):

                                                                                                             y=2

View this question

Want instant access to all verified answers on dl.guscollege.com?

Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!

Browser

Add to Chrome