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

You got 12 of 15 possible points.
Your score: 80%
Question 1

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

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

Για την 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 3

abs(-5+4)

Score: 1 of 1
Your answerChoiceScoreCorrect answer

-1

0
Selected

1

1
Should have chosen
Question 4

abs(int(-5.5))

Score: 1 of 1
Your answerChoiceScoreCorrect answer
Selected

5

1
Should have chosen

5.5

0

-5

0
Question 5

str(1)*5
 

Score: 1 of 1
Your answerChoiceScoreCorrect answer

'55555'
 

0

5

0
Selected

'11111'

1
Should have chosen

'15'

0
Question 6

Η εντολή

print float('5')

δε μπορεί να εκτελεστεί αφού το '5' είναι συμβολοσειρά

 

Score: 1 of 1
Your answerChoiceScoreCorrect answer
True0
Selected
False1
Should have chosen
Question 7

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

Score: 0.57142857142857 of 1
Your answerChoiceScoreCorrect answer
1.0abs(-5-6)011
2pow(2,1)12
(2,0)divmod(2,1)1(2,0)
1.5float(3/2)01.0
23/float(2)01.5
4int(float(9)/2)14
4.0int(5/float(2)) + float(int(5/2.0))14.0
Question 8

Η εντολή

 a=float('δέκα')

θα μετατρέψει το 'δέκα' σε αριθμό, άρα  η μεταβλητή a θα έχει την τιμή 10.0

Score: 0 of 1
Your answerChoiceScoreCorrect answer
Selected
True0
False0
Should have chosen
Question 9

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

Score: 0 of 1
Your answerChoiceScoreCorrect answer
False7 == 7.00True
Truestr(7)==str(7.0)0False
Question 10

Για την 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 11

str(float(int(5.99)))
 

Score: 1 of 1
Your answerChoiceScoreCorrect answer
Selected

'5.0'

1
Should have chosen

5

0

'5.99'

0
Question 12

a, b = divmod (pow(3, 2) , int(3.9))

ποιες οι τιμές για τα a και b;

Score: 1 of 1
Your answerChoiceScoreCorrect answer
Selected

a θα είναι 3 και b θα είναι 0

1
Should have chosen

a θα είναι 2 και b θα είναι 2

0

a θα είναι 0 και b θα είναι 3

0
Question 13

str(1)+str(1)

Score: 1 of 1
Your answerChoiceScoreCorrect answer

'2'

0
Selected

'11'

1
Should have chosen
Question 14

pow(int(8.0/3),3)

Score: 1 of 1
Your answerChoiceScoreCorrect answer
Selected

8

1
Should have chosen

9

0
Question 15

pow (4, 2) == pow (2 ,4)

Score: 1 of 1
Your answerChoiceScoreCorrect answer
Selected
True1
Should have chosen
False0