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

You got 21 of 25 possible points.
Your score: 84%
Question 1

Βρες το αποτέλεσμα από τις παρακάτω εκφράσεις σε Pyhton, αν a = 1  , b = 2 και c = 4

a + b * (a ** c + c / 2) ** 2

Score: 1 of 1
Your answerScoreCorrect answer
19119

a + b * (a ** c + c / 2) ** 2 = 1 + 2 * (1 ** 4 + 4 / 2) ** 2 = 1 + 2 * (1 + 2) ** 2 = 1 + 2 * 3 ** 2= 1 + 2 * 9 = 1 + 18 = 19

Question 2

Επιλέξτε True η False

False and 1 != 0
 

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

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

 

1onoma

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

Λάθος γιατί αρχίζει με αριθμό

Question 4

Επιλέξτε True η False

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

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

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

(x * y + x + 2) ** 2 + 3 ** 2

Score: 0 of 1
Your answerScoreCorrect answer
730109

(x * y + x + 2) ** 2 + 3 ** 2 = (2 * 3 + 2 + 2 ) ** 2 + 3 ** 2= (6 +2 + 2) ** 2 + 9 = 10 ** 2 + 9 = 100 + 9 = 109

Question 6

Επιλέξτε True η False

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

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

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

Question 7

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

x = 45

y = 10

print x % y

 

Score: 1 of 1
Your answerScoreCorrect answer
515
Question 8

a, b, c = (1, 2, 3)

Τι τιμές θα πάρουν;
 

Score: 1 of 1
Your answerChoiceScoreCorrect answer
Selected

a = 1

b = 2

c = 3

1
Should have chosen

a = [1 ,2, 3]

b = [1 ,2, 3]

c = [1 ,2, 3]

είναι λίστες

0

a = [1]

b = [2]

c= [3]

είναι λίστες

0
Question 9

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

2 * ( 5 % 3) + 4 / (1 + 3)

Score: 1 of 1
Your answerScoreCorrect answer
515

2 * ( 5 % 3) + 4 / (1 + 3) = 2 * 2 + 4 / 4 = 4 + 1 = 5

Question 10

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

 

Print

 

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

Σωστό, γιατί δεν είναι η δεσμευμένη λέξη print, αλλά η Print με κεφαλαίο
 

Question 11

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

x = 45

y = 10

print divmod( x, y)

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

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

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

print type (3.14)

Score: 1 of 1
Your answerChoiceScoreCorrect answer

<type 'str'>

0
Selected

<type 'float'>

1
Should have chosen

π

0

<type 'int'>

0
Question 13

 Τελεστές, αντιστοιχήστε
 

Score: 0.83333333333333 of 1
Your answerChoiceScoreCorrect answer
Αριθμητικός Τελεστής*1Αριθμητικός Τελεστής
Λογική τιμήFalse1Λογική τιμή
Σχεσιακός Τελεστής>1Σχεσιακός Τελεστής
Σχεσιακός Τελεστήςand0Λογικός Τελεστής
Όνομα μεταβλητήςlength1Όνομα μεταβλητής
Αλφαριθμητική τιμή"πλάτος"1Αλφαριθμητική τιμή
Question 14

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

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

print z, x

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

 

 

Score: 1 of 1
Your answerScoreCorrect answer
today 11today 1
Question 15

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

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

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

1 != 0

1 != 1

0 != 1

0 != 0

Score: 1 of 1
Your answerScoreCorrect answer
T,F,T,F1T,F,T,F
Question 16

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

print type (1 .0 / 2)

Score: 1 of 1
Your answerChoiceScoreCorrect answer

0.5

0

<type 'int'>

0

0

0
Selected

<type 'float'>

1
Should have chosen
Question 17

Αυξήστε τη μεταβλητή number κατά 50 %
 

Score: 0 of 1
Your answerChoiceScoreCorrect answer

number = number * 50

0

number = number + number * 50

0

number = number * 1.5

0
Should have chosen
Selected

number = number % 50

0
Question 18

Ποιος είναι ο τύπος δεδομένων για το 28.2Ε-5, δηλαδή  στην εντολή type(28.2E-5) τι θα δώσει η Python;
 

Score: 1 of 1
Your answerChoiceScoreCorrect answer

str

0

int

0
Selected

float

1
Should have chosen
Question 19

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

print 3 * "Python"

Score: 1 of 1
Your answerChoiceScoreCorrect answer
Selected

PythonPythonPython

1
Should have chosen

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

0

Python3

0

3Pyhton

0
Question 20

Πληκτρολογήστε για True Τ και για False F (με λατινικούς χαρακτήρες)

23 == 23

34 != 45

56 <= 12

Πληκτρολογήστε τις τρεις λογικές απαντήσεις. Διαχωρίστε με κόμμα χωρίς κενό

Score: 1 of 1
Your answerScoreCorrect answer
T,T,F1T,T,F
Question 21

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

x = 45

y = 10

print x / y

 

Score: 1 of 1
Your answerScoreCorrect answer
414
Question 22

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

print type (1 / 2)

Score: 1 of 1
Your answerChoiceScoreCorrect answer

0.5

0

<type 'float'>

0
Selected

<type 'int'>

1
Should have chosen

0

0
Question 23

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

 

x!b

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

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

Question 24

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

a = 0xB

print a

 

 

 

 

Score: 0 of 1
Your answerScoreCorrect answer
1011

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

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

Question 25

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

8 / 4 % 2 + 2

Score: 1 of 1
Your answerScoreCorrect answer
212