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

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

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

print int(1.0 / 2.0 )

Score: 1 of 1
Your answerChoiceScoreCorrect answer

<type 'int'>

0
Selected

0

1
Should have chosen

1

0

0.5

0
Question 2

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

 

x!b

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

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

Question 3

Βρες το αποτέλεσμα από τις παρακάτω εκφράσεις σε 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 4

Επιλέξτε True η False

1 == 1 or 2 != 1 or 5 == 5

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

Τύποι δεδομένων. Ερώτηση αντιστοίχησης

Score: 1 of 1
Your answerChoiceScoreCorrect answer
int (ακέραια)12 / 21int (ακέραια)
float (κινητής υποδιαστολής) 12 / 2.01float (κινητής υποδιαστολής)
string (συμβολοσειρά)'μεταβλητή'1string (συμβολοσειρά)
bool (λογική)False1bool (λογική)
Question 6

Αντιστοιχήστε τα αποτελέσμα των πράξεων

Score: 1 of 1
Your answerChoiceScoreCorrect answer
182 + 8 * 2118
-62 ** 2 + 4 / 2 - 3 * 4 1-6
445 / 1014
545 % 1015
4.545.0 / 1014.5
Question 7

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

a = 2

print type (a)

Score: 1 of 1
Your answerChoiceScoreCorrect answer

<type 'str'>

0
Selected

<type 'int'>

1
Should have chosen

<type 'a'>

0
Question 8

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

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

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

a, b = b, a

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

Score: 1 of 1
Your answerChoiceScoreCorrect answer
Selected

temp = a

a = b

b = temp
 

1
Should have chosen

temp = a

b = a

b = temp

0

temp = b

a = b

a = temp

0

a = b

temp = a

b = temp

0
Question 10

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

print 3 / 2 , 3.0 / 2 , 1 / 2 , 1.0 /  2

Πληκτρολογήστε τους τρεις αριθμούς χωρίς κόμμα, αλλά με ένα κενό ανάμεσά τους

Score: 1 of 1
Your answerScoreCorrect answer
1 1.5 0 0.511 1.5 0 0.5
Question 11

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

 

245

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

Λάθος, ξεκινά από αριθμό

Question 12

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

Kila  2

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

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

Question 13

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

print type (a == 2)

Score: 1 of 1
Your answerChoiceScoreCorrect answer
Selected

<type 'bool'>

1
Should have chosen

True

0

False

0

<type 'str'>

0
Question 14

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

print type (1 / 2)

Score: 1 of 1
Your answerChoiceScoreCorrect answer
Selected

<type 'int'>

1
Should have chosen

<type 'float'>

0

0

0

0.5

0
Question 15

Υπολογίστε την πράξη σε 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 16

Επιλέξτε True η False

1 == 1 and 0 != 1
 

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

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

a = 2

b = 10

p = a * b

print "a + b"

Score: 1 of 1
Your answerChoiceScoreCorrect answer

12

0
Selected

a + b

1
Should have chosen

2 + 10

0

10 + 2

0
Question 18

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

x = 45

y = 10

print divmod( y , x)

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

 

Score: 1 of 1
Your answerScoreCorrect answer
(0,10)1(0,10)
Question 19

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

 

Print

 

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

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

Question 20

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

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 21

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

23 == 23

34 != 45

56 <= 12

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

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

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

 

Metavliti3

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

Επιλέξτε True η False

"test" == 'test'
 

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

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

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

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

Score: 1 of 1
Your answerChoiceScoreCorrect answer
Selected

float

1
Should have chosen

str

0

int

0