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

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

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

print "Python"  + 2

Score: 1 of 1
Your answerChoiceScoreCorrect answer

2 Pyhton

0
Selected

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

1
Should have chosen

Python 2
 

0

Pyhton Pyhton

0
Question 2

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

x = 2

x - = 1

x = x - 2

print x

Score: 1 of 1
Your answerScoreCorrect answer
-11-1
Question 3

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

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 4

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

 

1onoma

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

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

Question 5

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

print int(1.0 / 2.0 )

Score: 1 of 1
Your answerChoiceScoreCorrect answer

1

0

0.5

0

<type 'int'>

0
Selected

0

1
Should have chosen
Question 6

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

Score: 1 of 1
Your answerChoiceScoreCorrect answer
10.0float(10)110.0
5int(5.678)15
5.678str(5.678)15.678
45abs(-45)145
(3, 1)divmod(10, 3)1(3, 1)
8pow(2, 3)18
Question 7

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

 

Metavliti+3

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

Υπάρχει το +

Question 8

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

 

mikos_1

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

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

2 ** 3 * 3 ** 2

Score: 1 of 1
Your answerScoreCorrect answer
72172

2 ** 3 * 3 ** 2 = 8 * 9 = 72

Question 10

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

print type (1 / 2)

Score: 0 of 1
Your answerChoiceScoreCorrect answer

0.5

0

<type 'int'>

0
Should have chosen

<type 'float'>

0
Selected

0

0
Question 11

Επιλέξτε True η False

"test" == 'test'
 

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

Επιλέξτε True η False

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

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

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

print float(1) / 2

Score: 1 of 1
Your answerChoiceScoreCorrect answer

<type 'float' >

0
Selected

0.5

1
Should have chosen

<type 'int'>

0

0

0
Question 14

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

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

Kila  2

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

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

Question 16

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 17

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

print "Python"  + str(2)

Score: 1 of 1
Your answerChoiceScoreCorrect answer

PyhtonPyhton

0
Selected

Python2

1
Should have chosen

2Pyhton

0

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

0
Question 18

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

23 == 23

34 != 45

56 <= 12

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

Score: 0 of 1
Your answerScoreCorrect answer
T T F0T,T,F
Question 19

Πληκτρολογήστε τα αποτελέσματα των παρακάτω λογικών σχέσεων, με γράμματα  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 20

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

print 3 * "Python"

Score: 1 of 1
Your answerChoiceScoreCorrect answer
Selected

PythonPythonPython

1
Should have chosen

Python3

0

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

0

3Pyhton

0
Question 21

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

a, b = b, a

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

Score: 1 of 1
Your answerChoiceScoreCorrect answer

temp = a

b = a

b = temp

0
Selected

temp = a

a = b

b = temp
 

1
Should have chosen

a = b

temp = a

b = temp

0

temp = b

a = b

a = temp

0
Question 22

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

a = 2

b = 10

p = a * b

print a + b

Score: 1 of 1
Your answerScoreCorrect answer
12112
Question 23

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

x = 35

y = 10

x = x / y

print x

Score: 1 of 1
Your answerScoreCorrect answer
313

Ακέραιος / Ακέραιος = δίνει ακέραια τιμή, κόβουμε τα δεκαδικά, δεν στρογγυλοποιούμε

Question 24

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

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

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

 

x!b

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

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