Βασικές συναρτήσεις

You got 2 of 3 possible points.
Your score: 67%
Question 1

Για την Python 2.7, αντιστοιχείστε τα στοιχεία της στήλης Α με αυτά της στήλης Β

Score: 1 of 1
Your answerChoiceScoreCorrect answer
'55'str(5)+'5'1'55'
55int(5.0*11)155
50abs(5-55)150
'123'str(1)+str(2)+str(3)1'123'
6int(1.0)+int(2.0)+int(3.0)16
6.0float(6)16.0
8pow(2,3)18
Question 2

Για την Python 2.7, αντιστοιχείστε τα στοιχεία της στήλης Α με αυτά της στήλης Β

Score: 1 of 1
Your answerChoiceScoreCorrect answer
5.0float(5)15.0
5int(5.99)15
'5'str(5)1'5'
6abs(-6)16
8pow(2,3)18
(6 ,0)divmod(60,10)1(6 ,0)
(0,6)divmod(6,10)1(0,6)
Question 3

Για την Python 2.7, αντιστοιχείστε τα στοιχεία της στήλης Α με αυτά της στήλης Β

Score: 0.85714285714286 of 1
Your answerChoiceScoreCorrect answer
11abs(-5-6)111
2pow(2,1)12
(2,0)divmod(2,1)1(2,0)
1.5float(3/2)01.0
1.53/float(2)11.5
4int(float(9)/2)14
4int(5/float(2)) + float(int(5/2.0))04.0