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

You got 13 of 25 possible points.
Your score: 52%
Question 1

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

x = 45

y = 10

print divmod( x, y)

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

Score: 0 of 1
Your answerScoreCorrect answer
4.00(4,5)
Question 2

Επιλέξτε True η False

False and 1 != 0
 

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

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

Score: 0.6 of 1
Your answerChoiceScoreCorrect answer
182 + 8 * 2118
182 ** 2 + 4 / 2 - 3 * 4 0-6
4.545 / 1004
545 % 1015
4.545.0 / 1014.5
Question 4

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

 

245

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

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

Question 5

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

x = 45

y = 10

print x / y

 

Score: 0 of 1
Your answerScoreCorrect answer
4.504
Question 6

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

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

Μετατρέψτε την απλή ενοτλή αντιμετάθεσης της 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

temp = b

a = b

a = temp

0

a = b

temp = a

b = temp

0
Question 8

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

print float(1) / 2

Score: 1 of 1
Your answerChoiceScoreCorrect answer

0

0

<type 'float' >

0
Selected

0.5

1
Should have chosen

<type 'int'>

0
Question 9

Επιλέξτε True η False

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

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

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

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

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

a = 2

print type (a)

Score: 0 of 1
Your answerChoiceScoreCorrect answer

<type 'str'>

0
Selected

<type 'a'>

0

<type 'int'>

0
Should have chosen
Question 12

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

print "Monty" + "Python"

Score: 1 of 1
Your answerChoiceScoreCorrect answer
Selected

MontyPython

1
Should have chosen

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

0

PyhtonPyhton

0
Question 13

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

import math

riza = math.sqrt(4)

print riza

x = math.pi

print x

Score: 0 of 1
Your answerChoiceScoreCorrect answer

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

0

2

3.141592653589793

0
Should have chosen

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

0
Selected

16

3.141592653589793

0
Question 14

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

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 15

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

print type (3.14)

Score: 1 of 1
Your answerChoiceScoreCorrect answer
Selected

<type 'float'>

1
Should have chosen

<type 'int'>

0

<type 'str'>

0

π

0
Question 16

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

print type (1 / 2)

Score: 1 of 1
Your answerChoiceScoreCorrect answer

0

0

0.5

0

<type 'float'>

0
Selected

<type 'int'>

1
Should have chosen
Question 17

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

print type (1 .0 / 2)

Score: 1 of 1
Your answerChoiceScoreCorrect answer

0.5

0
Selected

<type 'float'>

1
Should have chosen

0

0

<type 'int'>

0
Question 18

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

a = 2

b = 10

p = a * b

print "a + b"

Score: 0 of 1
Your answerChoiceScoreCorrect answer

10 + 2

0

2 + 10

0

a + b

0
Should have chosen
Selected

12

0
Question 19

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

23 == 23

34 != 45

56 <= 12

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

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

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

print int(1.0 / 2.0 )

Score: 1 of 1
Your answerChoiceScoreCorrect answer

0.5

0
Selected

0

1
Should have chosen

1

0

<type 'int'>

0
Question 21

Βρες το αποτέλεσμα από τις παρακάτω εκφράσεις σε Pyhton, αν a = 1  , b = 2 και c = 4

a + b * (a ** c + c / 2) ** 2

Score: 0 of 1
Your answerScoreCorrect answer
1019

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 22

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

print 3 * "Python" * 2

Score: 1 of 1
Your answerChoiceScoreCorrect answer

Python6

0

3Pyhton3Pyhton

0

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

0
Selected

PythonPythonPythonPythonPythonPython

1
Should have chosen
Question 23

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

15 + 2 / 2

Score: 0 of 1
Your answerScoreCorrect answer
8016
Question 24

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

8 / 4 % 2 + 2

Score: 0 of 1
Your answerScoreCorrect answer
402
Question 25

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

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

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

1 != 0

1 != 1

0 != 1

0 != 0

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