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

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

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

print "Monty" + "Python"

Score: 1 of 1
Your answerChoiceScoreCorrect answer

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

0
Selected

MontyPython

1
Should have chosen

PyhtonPyhton

0
Question 2

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

 

Metavliti+3

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

Υπάρχει το +

Question 3

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

print float(1) / 2

Score: 1 of 1
Your answerChoiceScoreCorrect answer

0

0
Selected

0.5

1
Should have chosen

<type 'int'>

0

<type 'float' >

0
Question 4

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

5 * ( 3 + 2) / 10

Score: 1 of 1
Your answerScoreCorrect answer
212
Question 5

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

Score: 1 of 1
Your answerChoiceScoreCorrect answer
Selected
True1
Should have chosen
False0
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

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

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

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

Score: 0 of 1
Your answerScoreCorrect answer
1,1.5,0,0.501 1.5 0 0.5
Question 8

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

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

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

x = 2

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

print x

Score: 1 of 1
Your answerScoreCorrect answer
8.518.5
Question 10

Επιλέξτε True η False

False and 1 != 0
 

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

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

print 3 * "Python"

Score: 1 of 1
Your answerChoiceScoreCorrect answer

3Pyhton

0

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

0
Selected

PythonPythonPython

1
Should have chosen

Python3

0
Question 12

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

print "Python" , 2

Score: 1 of 1
Your answerChoiceScoreCorrect answer

Pyhton Pyhton

0

2 Pyhton

0
Selected

Pyhton 2

1
Should have chosen
Question 13

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

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

x = 45

y = 10

print divmod( y , x)

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

 

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

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

 

245

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

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

Question 16

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

Kila  2

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

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

Question 17

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

23 == 23

34 != 45

56 <= 12

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

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

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

15 *  2 / 4

Score: 1 of 1
Your answerScoreCorrect answer
717

15 * 2 / 4 = 30 / 4 = 28 (κόβεται το δεκαδικό μέρος)

Question 19

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

x = 2

x - = 1

x = x - 2

print x

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

Ποιος είναι ο τύπος δεδομένων για το 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
Question 21

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

x = 2

x = 2 ** 3 + 2 / 3

print x

Score: 1 of 1
Your answerScoreCorrect answer
818
Question 22

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

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

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

print type (1 .0 / 2)

Score: 1 of 1
Your answerChoiceScoreCorrect answer
Selected

<type 'float'>

1
Should have chosen

0.5

0

0

0

<type 'int'>

0
Question 24

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

print type ("python")

Score: 1 of 1
Your answerChoiceScoreCorrect answer

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

0
Selected

<type 'str'>

1
Should have chosen

<type 'int'>

0
Question 25

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

 

Print

 

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

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