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

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

Επιλέξτε True η False

"test" == 'test'
 

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

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

5 * ( 3 + 2) / 10

Score: 1 of 1
Your answerScoreCorrect answer
212
Question 3

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

x = 45

y = 10

print x % y

 

Score: 1 of 1
Your answerScoreCorrect answer
515
Question 4

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

a = 2

b = 10

p = a * b

print a + b

Score: 1 of 1
Your answerScoreCorrect answer
12112
Question 5

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

print 3 * "Python" * 2

Score: 1 of 1
Your answerChoiceScoreCorrect answer

3Pyhton3Pyhton

0
Selected

PythonPythonPythonPythonPythonPython

1
Should have chosen

Python6

0

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

0
Question 6

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

 

Metavliti+3

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

Υπάρχει το +

Question 7

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

x = 2

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

print x

Score: 0 of 1
Your answerScoreCorrect answer
2.508.5
Question 8

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

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

print z, x

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

 

 

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

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

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

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

x = 35

y = 10

x = x / y

print x

Score: 1 of 1
Your answerScoreCorrect answer
313

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

Question 11

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

print int(1.0 / 2.0 )

Score: 1 of 1
Your answerChoiceScoreCorrect answer
Selected

0

1
Should have chosen

1

0

<type 'int'>

0

0.5

0
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 "Monty" + "Python"

Score: 1 of 1
Your answerChoiceScoreCorrect answer
Selected

MontyPython

1
Should have chosen

PyhtonPyhton

0

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

0
Question 14

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

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

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

1 == 0

1 == 1

0 == 1

0 == 0

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

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

Score: 0 of 1
Your answerChoiceScoreCorrect answer

number = number * 1.5

0
Should have chosen
Selected

number = number + number * 50

0

number = number % 50

0

number = number * 50

0
Question 16

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

a, b = b, a

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

Score: 0 of 1
Your answerChoiceScoreCorrect answer

temp = b

a = b

a = temp

0
Selected

temp = a

b = a

b = temp

0

temp = a

a = b

b = temp
 

0
Should have chosen

a = b

temp = a

b = temp

0
Question 17

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

 

1onoma

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

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

Question 18

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

Kila  2

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

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

Question 19

Τα σχόλια  # είναι πολύ χρήσιμα για να τεκμηριώσετε τον κώδικά σας.

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

Επιλέξτε True η False

False and 1 != 0
 

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

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

print 3 * "Python"

Score: 1 of 1
Your answerChoiceScoreCorrect answer

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

0
Selected

PythonPythonPython

1
Should have chosen

Python3

0

3Pyhton

0
Question 22

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

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 23

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

print type ("python")

Score: 0 of 1
Your answerChoiceScoreCorrect answer

<type 'str'>

0
Should have chosen

<type 'int'>

0
Selected

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

0
Question 24

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

print type (1 / 2)

Score: 1 of 1
Your answerChoiceScoreCorrect answer

0

0
Selected

<type 'int'>

1
Should have chosen

<type 'float'>

0

0.5

0
Question 25

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

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