Εντολή print

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

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

Print=10

print Print

Score: 1 of 1
Your answerChoiceScoreCorrect answer

Print

0
Selected

10

1
Should have chosen

SyntaxError: invalid syntax

0
Question 2

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

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
Question 3

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

print '1'+'1'

Score: 1 of 1
Your answerChoiceScoreCorrect answer

2

0

error

0
Selected

11

1
Should have chosen
Question 4

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

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 5

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

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

 

Score: 1 of 1
Your answerChoiceScoreCorrect answer

12345

0
Selected

1 22 333 4444 55555

1
Should have chosen

1111122222333334444455555

0
Question 6

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

Score: 1 of 1
Your answerChoiceScoreCorrect answer

Γεια σας5

0
Selected

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

1
Should have chosen

SyntaxError

0