Κεφάλαιο 3 - Βιβλίο-Τετράδιο Εργασιών Μαθητή

You got 14 of 25 possible points.
Your score: 56%
Question 1

Τι θα εμφανίσει;

x = 45

y = 10

print x / y

 

Score: 0 of 1
Your answerScoreCorrect answer
2204
Question 2

Επιλέξτε True η False

not ( 4 == 4 and 1 != 0)
 

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

Το παρακάτω όνομα είναι αποδεκτό ως όνομα μεταβλητής;

Kila  2

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

Δεν πρέπει να υπάρχει το κενό

Question 4

Στην εντολή print, μπορείτε να ξεκινήσετε με μονά εισαγωγικά και να κλείσετε με διπλά;

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

Τι θα εμφανιστεί;

print "Monty" + "Python"

Score: 1 of 1
Your answerChoiceScoreCorrect answer

PyhtonPyhton

0
Selected

MontyPython

1
Should have chosen

Μήνυμα λάθους

0
Question 6

Τι θα εμφανίσει;

a = 0xB

print a

 

 

 

 

Score: 0 of 1
Your answerScoreCorrect answer
0011

Μετατρέπει το δεκαεξαδικό Β σε δεκαδικό, δηλαδή 11

Η εντολή 0bδυαδικός κάνει την αντίσοτιχη μετατροπή του δυαδικού σε δεκαδικό. π.χ. 0b11 είναι το 3
 

Question 7

Μετατρέψτε την απλή ενοτλή αντιμετάθεσης της Python

a, b = b, a

σε ισοδύναμη:

Score: 0 of 1
Your answerChoiceScoreCorrect answer
Selected

a = b

temp = a

b = temp

0

temp = b

a = b

a = temp

0

temp = a

b = a

b = temp

0

temp = a

a = b

b = temp
 

0
Should have chosen
Question 8

Τι θα εμφανίσει ;

print float(1) / 2

Score: 0 of 1
Your answerChoiceScoreCorrect answer

<type 'float' >

0

<type 'int'>

0
Selected

0

0

0.5

0
Should have chosen
Question 9

Τι θα εμφανίσει στο διερμηνευτή;

print type ("python")

Score: 1 of 1
Your answerChoiceScoreCorrect answer
Selected

<type 'str'>

1
Should have chosen

<type 'int'>

0

<error> Δεσμευμένη λέξη

0
Question 10

Τι θα εμφανίσει στο διερμηνευτή;

print type (1 .0 / 2)

Score: 1 of 1
Your answerChoiceScoreCorrect answer
Selected

<type 'float'>

1
Should have chosen

<type 'int'>

0

0

0

0.5

0
Question 11

Βρες το αποτέλεσμα από τις παρακάτω εκφράσεις σε Pyhton, αν x =2 , y = 3 και z = 1

(x + y) / (x ** 3 + y ** 2 + 1) * z+1

Score: 0 of 1
Your answerScoreCorrect answer
01

(x + y) / (x ** 3 + y ** 2 + 1) * z + 1= (2 + 3) / ( 2 ** 3 + 3 ** 2 + 1) * 1 + 1= 5 / (8 + 9 + 1) + 1= 5 / 18 + 1= 0 +1 = 1

Question 12

Αντιστοιχήστε τους τύπους δεδομένων:

Score: 1 of 1
Your answerChoiceScoreCorrect answer
int1251int
float250.71float
boolFalse1bool
str'Καλημέρα'1str
Question 13

Τι θα εμφανίσει;

x = 45

y = 10

print divmod( x, y)

Πληκτρολογήστε τις τιμές μέσα σε παρένθεση, χωρίς κενά. π.χ. (7,9)

Score: 0 of 1
Your answerScoreCorrect answer
(,)0(4,5)
Question 14

Πληκτρολογήστε τα αποτελέσματα των παρακάτω λογικών σχέσεων, με γράμματα  T για True και F για False

(Λατινικούς χαρακτήρες για να καταλάβει το Λατινικό Τ από το Ελληνικό Τ  )

Διαχωρίστε με κόμμα χωρίς κενό

1 == 0

1 == 1

0 == 1

0 == 0

Score: 1 of 1
Your answerScoreCorrect answer
F,T,F,T1F,T,F,T
Question 15

Υπολογίστε την πράξη σε Pyhton

5 * ( 3 + 2) / 10

Score: 0 of 1
Your answerScoreCorrect answer
102
Question 16

Τι θα εμφανίσει;

a = 2

b = 10

p = a * b

print a + b

Score: 1 of 1
Your answerScoreCorrect answer
12112
Question 17

Τι θα εμφανίσει;

a = 2

b = 10

p = a * b

print "a + b"

Score: 0 of 1
Your answerChoiceScoreCorrect answer

12

0

a + b

0
Should have chosen

10 + 2

0
Selected

2 + 10

0
Question 18

Τι θα εμφανιστεί;

print "Python" , 2

Score: 1 of 1
Your answerChoiceScoreCorrect answer
Selected

Pyhton 2

1
Should have chosen

2 Pyhton

0

Pyhton Pyhton

0
Question 19

Επιλέξτε True η False

not ( 5 == 5 or (1 != 0 and 6 != 7))
 

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

not ( 5 == 5 or (1 != 0 and 6 != 7)) άρα not (True or οτιδήποτε) άρα not(True) άρα False

Question 20

Τι θα εμφανίσει;

x, y, z = 1, 4, "today"

print z, x

Πληκτρολογήστε με κενό ανάμεσα

 

 

Score: 0 of 1
Your answerScoreCorrect answer
today,10today 1
Question 21

Υπολογίστε την πράξη σε Pyhton

15 *  2 / 3

Score: 1 of 1
Your answerScoreCorrect answer
10110

15 * 2 / 3 = 30 / 3 = 10

Question 22

Τι θα εμφανίσει ;

print int(1.0 / 2.0 )

Score: 1 of 1
Your answerChoiceScoreCorrect answer

1

0

0.5

0
Selected

0

1
Should have chosen

<type 'int'>

0
Question 23

Υπολογίστε την πράξη σε Pyhton

15 + 2 / 2

Score: 1 of 1
Your answerScoreCorrect answer
16116
Question 24

Τι θα εμφανίσει στο διερμηνευτή;

print type (3.14)

Score: 0 of 1
Your answerChoiceScoreCorrect answer
Selected

<type 'int'>

0

π

0

<type 'str'>

0

<type 'float'>

0
Should have chosen
Question 25

Το παρακάτω όνομα είναι αποδεκτό ως όνομα μεταβλητής;

 

Metavliti+3

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

Υπάρχει το +