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

You got 3 of 9 possible points.
Your score: 33%
Question 1

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

for i in range(-4,0):

    print i

Score: 0 of 1
Your answerChoiceScoreCorrect answer

1, 2, 3, 4

0

-4, -3, -2, -1

0
Should have chosen
Selected

τίποτα

0
Question 3

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

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

    print i

Score: 1 of 1
Your answerChoiceScoreCorrect answer

4, 2

0
Selected

2, 4

1
Should have chosen

2, 4, 6

0
Question 4

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

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 5

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

for i in range(100, 10, -50):

    print i

Score: 0 of 1
Your answerChoiceScoreCorrect answer

100, 50, 0

0
Selected

10, 60

0

100, 50

0
Should have chosen
Question 6

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

for i in range(5,9):

     print i

Score: 0 of 1
Your answerChoiceScoreCorrect answer

5, 6, 7, 8

0
Should have chosen
Selected

5, 6, 7, 8, 9

0
Question 7

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

for i in range(0):

     print i 

Score: 0 of 1
Your answerChoiceScoreCorrect answer
Selected

0

0

τίποτα

0
Should have chosen
Question 8

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

for i in range(-2,2):

    print i

Score: 1 of 1
Your answerChoiceScoreCorrect answer

2, 1, 0

0

τίποτα

0
Selected

-2, -1, 0, 1

1
Should have chosen
Question 9

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

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

    print i

Score: 0 of 1
Your answerChoiceScoreCorrect answer

τίποτα

0
Should have chosen

3

0
Selected

3, 3, 3

0
Question 10

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

for i in range(4,4):

    print i

Score: 1 of 1
Your answerChoiceScoreCorrect answer
Selected

τίποτα

1
Should have chosen

4

0

4, 4

0