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

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

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

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

a = 2

print type (a)

Score: 1 of 1
Your answerChoiceScoreCorrect answer

<type 'a'>

0

<type 'str'>

0
Selected

<type 'int'>

1
Should have chosen
Question 3

Επιλέξτε True η False

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

Score: 0 of 1
Your answerChoiceScoreCorrect answer
True0
Should have chosen
Selected
False0
Question 4

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

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

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

1 == 0

1 == 1

0 == 1

0 == 0

Score: 0 of 1
Your answerScoreCorrect answer
F0F,T,F,T
Question 5

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

Kila  2

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

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

Question 6

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

print type (1 .0 / 2)

Score: 0 of 1
Your answerChoiceScoreCorrect answer

<type 'int'>

0

<type 'float'>

0
Should have chosen

0.5

0
Selected

0

0
Question 7

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

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

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

Score: 0.16666666666667 of 1
Your answerChoiceScoreCorrect answer
5.678float(10)010.0
10.0int(5.678)05
8str(5.678)05.678
10.0abs(-45)045
10.0divmod(10, 3)0(3, 1)
8pow(2, 3)18
Question 9

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

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

print z, x

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

 

 

Score: 0 of 1
Your answerScoreCorrect answer
50today 1
Question 10

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

 

Metavliti3

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

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

print type (a == 2)

Score: 0 of 1
Your answerChoiceScoreCorrect answer

False

0
Selected

<type 'str'>

0

True

0

<type 'bool'>

0
Should have chosen
Question 12

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

23 == 23

34 != 45

56 <= 12

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

Score: 0 of 1
Your answerScoreCorrect answer
550T,T,F
Question 13

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

x = 45

y = 10

print x % y

 

Score: 0 of 1
Your answerScoreCorrect answer
4805
Question 14

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

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

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

x = 234

y = 456.7

x, y = y, x

print x, y

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

Score: 0 of 1
Your answerScoreCorrect answer
130456.7 234

Έγγινε αντιμετάθεση

Question 16

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

Score: 0.25 of 1
Your answerChoiceScoreCorrect answer
bool1250int
str250.70float
intFalse0bool
str'Καλημέρα'1str
Question 17

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

Score: 0 of 1
Your answerChoiceScoreCorrect answer
42 + 8 * 2018
42 ** 2 + 4 / 2 - 3 * 4 0-6
545 / 1004
4.545 % 1005
545.0 / 1004.5
Question 18

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

 

mikos_1

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

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

8 / 4 % 2 + 2

Score: 0 of 1
Your answerScoreCorrect answer
702
Question 20

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

2 ** 3 * 3 ** 2

Score: 0 of 1
Your answerScoreCorrect answer
23072

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

Question 21

Επιλέξτε True η False

not ( 4 == 4 and 1 != 0)
 

Score: 0 of 1
Your answerChoiceScoreCorrect answer
Selected
True0
False0
Should have chosen
Question 22

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

import math

riza = math.sqrt(4)

print riza

x = math.pi

print x

Score: 1 of 1
Your answerChoiceScoreCorrect answer

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

0

πως είπατε; που να ξέρω το π
 

0

16

3.141592653589793

0
Selected

2

3.141592653589793

1
Should have chosen
Question 23

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

print float(1) / 2

Score: 0 of 1
Your answerChoiceScoreCorrect answer

<type 'int'>

0

0.5

0
Should have chosen

0

0
Selected

<type 'float' >

0
Question 24

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

15 *  2 / 3

Score: 0 of 1
Your answerScoreCorrect answer
3010

15 * 2 / 3 = 30 / 3 = 10

Question 25

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

print "Python" , 2

Score: 0 of 1
Your answerChoiceScoreCorrect answer

Pyhton 2

0
Should have chosen
Selected

Pyhton Pyhton

0

2 Pyhton

0