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

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

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

5 * ( 3 + 2) / 10

Score: 1 of 1
Your answerScoreCorrect answer
212
Question 2

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

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

print z, x

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

 

 

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

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

x = 2

x = 2 ** 3 + 2 / float(4)

print x

Score: 1 of 1
Your answerScoreCorrect answer
8.518.5
Question 4

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

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 5

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

x = 45

y = 10

print x % y

 

Score: 1 of 1
Your answerScoreCorrect answer
515
Question 6

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

x = 45

y = 10

print divmod( y , x)

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

 

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

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

Score: 1 of 1
Your answerChoiceScoreCorrect answer
int (ακέραια)-271int (ακέραια)
float (κινητής υποδιαστολής)35.71float (κινητής υποδιαστολής)
string (συμβολοσειρά)'False'1string (συμβολοσειρά)
bool (λογική)True1bool (λογική)
Question 8

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

Kila  2

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

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

Question 9

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

 

mikos_1

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

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

x = 2

x = 2 ** 3 + 2 / 3

print x

Score: 0 of 1
Your answerScoreCorrect answer
908
Question 11

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

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

print int(1.0 / 2.0 )

Score: 1 of 1
Your answerChoiceScoreCorrect answer

<type 'int'>

0

0.5

0
Selected

0

1
Should have chosen

1

0
Question 13

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

Score: 1 of 1
Your answerChoiceScoreCorrect answer

int

0

str

0
Selected

float

1
Should have chosen
Question 14

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

print type (3.14)

Score: 1 of 1
Your answerChoiceScoreCorrect answer
Selected

<type 'float'>

1
Should have chosen

<type 'str'>

0

π

0

<type 'int'>

0
Question 15

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

a = 2

b = 10

p = a * b

print a + b

Score: 1 of 1
Your answerScoreCorrect answer
12112
Question 16

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

print type (1 / 2)

Score: 1 of 1
Your answerChoiceScoreCorrect answer

0.5

0
Selected

<type 'int'>

1
Should have chosen

<type 'float'>

0

0

0
Question 17

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

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

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

a = 2

print type (a)

Score: 1 of 1
Your answerChoiceScoreCorrect answer
Selected

<type 'int'>

1
Should have chosen

<type 'str'>

0

<type 'a'>

0
Question 19

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

print type ("python")

Score: 1 of 1
Your answerChoiceScoreCorrect answer

<type 'int'>

0
Selected

<type 'str'>

1
Should have chosen

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

0
Question 20

Επιλέξτε 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 21

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

Score: 1 of 1
Your answerChoiceScoreCorrect answer

number = number * 50

0

number = number + number * 50

0
Selected

number = number * 1.5

1
Should have chosen

number = number % 50

0
Question 22

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

print "Python"  + 2

Score: 0 of 1
Your answerChoiceScoreCorrect answer
Selected

Python 2
 

0

Pyhton Pyhton

0

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

0
Should have chosen

2 Pyhton

0
Question 23

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

8 / 4 % 2 + 2

Score: 1 of 1
Your answerScoreCorrect answer
212
Question 24

Επιλέξτε True η False

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

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

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

print "Python"  + str(2)

Score: 1 of 1
Your answerChoiceScoreCorrect answer

PyhtonPyhton

0

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

0
Selected

Python2

1
Should have chosen

2Pyhton

0