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

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

int(str(1)*3)+2

Score: 1 of 1
Your answerChoiceScoreCorrect answer

5

0

'1112'

0
Selected

113

1
Should have chosen
Question 2

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

Score: 0.42857142857143 of 1
Your answerChoiceScoreCorrect answer
11abs(-5-6)111
4.0pow(2,1)02
(2,0)divmod(2,1)1(2,0)
4.0float(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
Question 3

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

Score: 0.14285714285714 of 1
Your answerChoiceScoreCorrect answer
50str(5)+'5'0'55'
'55'int(5.0*11)055
50abs(5-55)150
6.0str(1)+str(2)+str(3)0'123'
'123'int(1.0)+int(2.0)+int(3.0)06
'55'float(6)06.0
'55'pow(2,3)08
Question 4

abs(-5+4)

Score: 1 of 1
Your answerChoiceScoreCorrect answer

-1

0
Selected

1

1
Should have chosen
Question 5

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

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

Ισοδύναμα ή όχι; divmod(5,12) με divmod(12,5)

Score: 0.5 of 1
Your answerChoiceScoreCorrect answer
(2,2)divmod(5,12) 0(0,5)
(2,2)divmod(12,5)1(2,2)