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

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

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

Score: 0.85714285714286 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'
'123'int(1.0)+int(2.0)+int(3.0)06
6.0float(6)16.0
8pow(2,3)18
Question 2

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

Score: 0.71428571428571 of 1
Your answerChoiceScoreCorrect answer
11abs(-5-6)111
2pow(2,1)12
2divmod(2,1)0(2,0)
1.0float(3/2)11.0
1.03/float(2)01.5
4int(float(9)/2)14
4.0int(5/float(2)) + float(int(5/2.0))14.0
Question 3

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

Score: 0.85714285714286 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
8divmod(60,10)0(6 ,0)
(0,6)divmod(6,10)1(0,6)