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

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

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

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

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

Score: 0.57142857142857 of 1
Your answerChoiceScoreCorrect answer
'55'str(5)+'5'1'55'
'55'int(5.0*11)055
55abs(5-55)050
'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 3

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

Score: 0.14285714285714 of 1
Your answerChoiceScoreCorrect answer
1.0abs(-5-6)011
11pow(2,1)02
1.0divmod(2,1)0(2,0)
(2,0)float(3/2)01.0
43/float(2)01.5
4.0int(float(9)/2)04
1.5int(5/float(2)) + float(int(5/2.0))04.0