Εντολή print

You got 5 of 6 possible points.
Your score: 83%
Question 1

Να καταγράψετε τι πιστεύετε ότι θα εμφανιστεί στην οθόνη μετά την εκτέλεση του παρακάτω τμήματος προγράμματος:

x=25

y=10

x+=2

y-=3

z=x/y

c=x%y

print z, c

Score: 1 of 1
Your answerChoiceScoreCorrect answer

6 3

0

4 0
 

0
Selected

3 6

1
Should have chosen
Question 2

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

print 3 ** 2 *  '9'

Score: 1 of 1
Your answerChoiceScoreCorrect answer

81

0
Selected

999999999

1
Should have chosen
Question 3

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

print 1 * '1', '2' * 2 , 3 * '3', '4' *4 , 5 * '5'

 

Score: 0 of 1
Your answerChoiceScoreCorrect answer

1 22 333 4444 55555

0
Should have chosen

1111122222333334444455555

0
Selected

12345

0
Question 4

τι θα εμφανιστεί στην οθόνη;

a=5

b=10

print a,b

a,b=b,a

print a,b

Score: 1 of 1
Your answerChoiceScoreCorrect answer
Selected

5    10

10    5

1
Should have chosen

10   5

5    10

0
Question 5

Τι υπολογίζεται στο παρακάτω πρόγραμμα ;

import math

p=math.pi

r=10

print p*r**2

Αν υπολογίζεται το εμβαδόν του κύκλου , επιλέξτε True

Score: 1 of 1
Your answerChoiceScoreCorrect answer
Selected
True1
Should have chosen
False0

το math.pi είναι το π=3.141592653589793 και το παραπώνω πρόγραμμα το χρησιμοποιεί για τον υπολογισμό του εμβαδού p*r**2 

Question 6

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

import math

a=math.sqrt(4)

b=a+10

print b

Score: 1 of 1
Your answerChoiceScoreCorrect answer
Selected

12

1
Should have chosen

26

0