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

You got 13 of 15 possible points.
Your score: 87%
Question 1

abs(int(-5.5))

Score: 1 of 1
Your answerChoiceScoreCorrect answer

-5

0
Selected

5

1
Should have chosen

5.5

0
Question 2

Η εντολή

print float('5')

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

 

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

float(int(5.2))

Score: 1 of 1
Your answerChoiceScoreCorrect answer
Selected

5.0

1
Should have chosen

5

0

5.2

0
Question 4

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

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

int(str(1)*3)+2

Score: 1 of 1
Your answerChoiceScoreCorrect answer
Selected

113

1
Should have chosen

5

0

'1112'

0
Question 6

int(5/float(2))

Score: 1 of 1
Your answerChoiceScoreCorrect answer
Selected

2

1
Should have chosen

2.5

0
Question 7

str(float(int(5.99)))
 

Score: 1 of 1
Your answerChoiceScoreCorrect answer

'5.99'

0

5

0
Selected

'5.0'

1
Should have chosen
Question 8

Η εντολή

 a=float('δέκα')

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

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

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

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

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

pow(int(8.0/3),3)

Score: 1 of 1
Your answerChoiceScoreCorrect answer

9

0
Selected

8

1
Should have chosen
Question 12

str(1)+str(1)

Score: 1 of 1
Your answerChoiceScoreCorrect answer
Selected

'11'

1
Should have chosen

'2'

0
Question 13

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

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

Score: 1 of 1
Your answerChoiceScoreCorrect answer

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

0

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

0

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

0
Selected

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

1
Should have chosen
Question 14

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

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

Score: 0.5 of 1
Your answerChoiceScoreCorrect answer
False7 == 7.00True
Falsestr(7)==str(7.0)1False