Εντολή print

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

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

Print=10

print Print

Score: 1 of 1
Your answerChoiceScoreCorrect answer
Selected

10

1
Should have chosen

SyntaxError: invalid syntax

0

Print

0
Question 2

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

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

 

Score: 1 of 1
Your answerChoiceScoreCorrect answer

1111122222333334444455555

0

12345

0
Selected

1 22 333 4444 55555

1
Should have chosen
Question 3

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

print '1'+'1'

Score: 1 of 1
Your answerChoiceScoreCorrect answer

2

0

error

0
Selected

11

1
Should have chosen
Question 4

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

a=b=c=5

a+=2

print a, b, c

Score: 1 of 1
Your answerChoiceScoreCorrect answer
Selected

7 5 5

1
Should have chosen

7 7 7

0
Question 5

τι θα εμφανιστεί; print 'Γεια σας' * 5

Score: 1 of 1
Your answerChoiceScoreCorrect answer

Γεια σας5

0

SyntaxError

0
Selected

Γεια σαςΓεια σαςΓεια σαςΓεια σαςΓεια σας

1
Should have chosen
Question 6

Στο παρακάτω πρόγραμμα το math.pi είναι το εμβαδό του κύκλου
import math
p=math.pi
r=10
print 2*p*r
print p*r**2

Score: 1 of 1
Your answerChoiceScoreCorrect answer
True0
Selected
False1
Should have chosen

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