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

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

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

Score: 0.57142857142857 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
2int(float(9)/2)04
1.0int(5/float(2)) + float(int(5/2.0))04.0
Question 2

Για την 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'
6.0int(1.0)+int(2.0)+int(3.0)06
6.0float(6)16.0
6.0pow(2,3)08
Question 3

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

Score: 0.85714285714286 of 1
Your answerChoiceScoreCorrect answer
5.0float(5)15.0
6int(5.99)05
'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)