Δομή επανάληψης: εντολή for

You got 6 of 10 possible points.
Your score: 60%
Question 1

τι θα εμφανίσει;

for i in range(4,0):

    print i

Score: 0 of 1
Your answerChoiceScoreCorrect answer

1, 2, 3, 4

0

τίποτα

0
Should have chosen
Selected

4, 3, 2, 1

0
Question 2

τι θα εμφανίσει;

for i in range(5, 6, 5):

    print i

Score: 1 of 1
Your answerChoiceScoreCorrect answer

5, 10

0

τίποτα

0
Selected

5

1
Should have chosen
Question 3

τι θα εμφανίσει;

for i in range(-6, 6, 3):

    print i

Score: 0 of 1
Your answerChoiceScoreCorrect answer

-6, -3, 0, 3, 6

0

-6, -3, 0, 3

0
Should have chosen
Selected

3, 6

0

τίποτα

0
Question 4

Τι θα εμφανίσει;

for i in range(4):

     print i -1

 

Score: 0 of 1
Your answerChoiceScoreCorrect answer

1, 2, 3, 4

0

-1 , 0 , 1 , 2

0
Should have chosen
Selected

0, 1, 2, 3

0
Question 5

τι θα εμφανίσει;

for i in range(10):

     print i+1

Score: 0 of 1
Your answerChoiceScoreCorrect answer

1, 2, 3, 4, 5, 6, 7, 8, 9, 10 

0
Should have chosen
Selected

0, 1, 2, 3, 4, 5, 6, 7, 8, 9

0
Question 6

Τι θα εμφανίσει;

for i in range(0):

     print i 

Score: 1 of 1
Your answerChoiceScoreCorrect answer

0

0
Selected

τίποτα

1
Should have chosen
Question 7

τι θα εμφανίσει;

for i in range(10, 22, -3):

    print i

Score: 1 of 1
Your answerChoiceScoreCorrect answer
Selected

τίποτα

1
Should have chosen

10

0

22, 19, 16, 13

0
Question 8

τι θα εμφανίσει;

for i in range(-4,0):

    print i

Score: 1 of 1
Your answerChoiceScoreCorrect answer
Selected

-4, -3, -2, -1

1
Should have chosen

τίποτα

0

1, 2, 3, 4

0
Question 9

Τι θα εμφανίσει;

for i in range(5,6):

    print i

Score: 1 of 1
Your answerChoiceScoreCorrect answer
Selected

5

1
Should have chosen

5, 6

0
Question 10

Τι θα εμφανίσει, αν ο χρήστης πληκτρολογήσει τον αριθμό -5;

a=input(' Δώσε αριθμό')

for i in range(a):

     print i 

Score: 1 of 1
Your answerChoiceScoreCorrect answer
Selected

τίποτα

1
Should have chosen

-5, -4, -3, -2, -1

0

-1, -2 ,-3, -4, -5

0