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

You got 23 of 25 possible points.
Your score: 92%
Question 1

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

a = 2

b = 10

p = a * b

print a + b

Score: 1 of 1
Your answerScoreCorrect answer
12112
Question 2

Βρες το αποτέλεσμα από τις παρακάτω εκφράσεις σε Pyhton, αν x =2 , y = 3 και z = 1

(x + y) / (x ** 3 + y ** 2 + 1) * z+1

Score: 1 of 1
Your answerScoreCorrect answer
111

(x + y) / (x ** 3 + y ** 2 + 1) * z + 1= (2 + 3) / ( 2 ** 3 + 3 ** 2 + 1) * 1 + 1= 5 / (8 + 9 + 1) + 1= 5 / 18 + 1= 0 +1 = 1

Question 3

Επιλέξτε True η False

False and 1 != 0
 

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

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

a = 0xB

print a

 

 

 

 

Score: 0 of 1
Your answerScoreCorrect answer
0xB011

Μετατρέπει το δεκαεξαδικό Β σε δεκαδικό, δηλαδή 11

Η εντολή 0bδυαδικός κάνει την αντίσοτιχη μετατροπή του δυαδικού σε δεκαδικό. π.χ. 0b11 είναι το 3
 

Question 5

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

import math

riza = math.sqrt(4)

print riza

x = math.pi

print x

Score: 1 of 1
Your answerChoiceScoreCorrect answer

16

3.141592653589793

0

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

0
Selected

2

3.141592653589793

1
Should have chosen

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

0
Question 6

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

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

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

23 == 23

34 != 45

56 <= 12

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

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

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

a, b = b, a

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

Score: 1 of 1
Your answerChoiceScoreCorrect answer

a = b

temp = a

b = temp

0
Selected

temp = a

a = b

b = temp
 

1
Should have chosen

temp = b

a = b

a = temp

0

temp = a

b = a

b = temp

0
Question 9

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

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

print z, x

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

 

 

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

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

print 3 * "Python" * 2

Score: 1 of 1
Your answerChoiceScoreCorrect answer
Selected

PythonPythonPythonPythonPythonPython

1
Should have chosen

Python6

0

3Pyhton3Pyhton

0

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

0
Question 11

Βρες το αποτέλεσμα από τις παρακάτω εκφράσεις σε Pyhton, αν x =2 , y = 3

(x * y + x + 2) ** 2 + 3 ** 2

Score: 1 of 1
Your answerScoreCorrect answer
1091109

(x * y + x + 2) ** 2 + 3 ** 2 = (2 * 3 + 2 + 2 ) ** 2 + 3 ** 2= (6 +2 + 2) ** 2 + 9 = 10 ** 2 + 9 = 100 + 9 = 109

Question 12

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

print type (1 .0 / 2)

Score: 1 of 1
Your answerChoiceScoreCorrect answer
Selected

<type 'float'>

1
Should have chosen

<type 'int'>

0

0.5

0

0

0
Question 13

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

print "Python"  + str(2)

Score: 0 of 1
Your answerChoiceScoreCorrect answer

2Pyhton

0
Selected

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

0

Python2

0
Should have chosen

PyhtonPyhton

0
Question 14

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

Kila  2

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

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

Question 15

Επιλέξτε True η False

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

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

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

print type (1 / 2)

Score: 1 of 1
Your answerChoiceScoreCorrect answer

0.5

0

<type 'float'>

0

0

0
Selected

<type 'int'>

1
Should have chosen
Question 17

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

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 18

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

x = 45

y = 10

print x / y

 

Score: 1 of 1
Your answerScoreCorrect answer
414
Question 19

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

 

x!b

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

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

Question 20

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

print type (3.14)

Score: 1 of 1
Your answerChoiceScoreCorrect answer

<type 'str'>

0

<type 'int'>

0

π

0
Selected

<type 'float'>

1
Should have chosen
Question 21

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

5 * ( 3 + 2) / 10

Score: 1 of 1
Your answerScoreCorrect answer
212
Question 22

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

x = 2

x = 2 ** 3 + 2 / 3

print x

Score: 1 of 1
Your answerScoreCorrect answer
818
Question 23

Επιλέξτε True η False

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

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

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

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

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

print "Python" , 2

Score: 1 of 1
Your answerChoiceScoreCorrect answer

2 Pyhton

0

Pyhton Pyhton

0
Selected

Pyhton 2

1
Should have chosen