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

You got 10 of 25 possible points.
Your score: 40%
Question 1

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

 

x!b

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

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

Question 2

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

print type (1 / 2)

Score: 0 of 1
Your answerChoiceScoreCorrect answer

<type 'float'>

0
Selected

0.5

0

0

0

<type 'int'>

0
Should have chosen
Question 3

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

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

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

Score: 0 of 1
Your answerScoreCorrect answer
0 3 201 1.5 0 0.5
Question 4

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

x = 35

y = 10

x = x / y

print x

Score: 0 of 1
Your answerScoreCorrect answer
3503

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

Question 5

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

print type (a == 2)

Score: 1 of 1
Your answerChoiceScoreCorrect answer
Selected

<type 'bool'>

1
Should have chosen

True

0

False

0

<type 'str'>

0
Question 6

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

print "Python"  + 2

Score: 1 of 1
Your answerChoiceScoreCorrect answer

Python 2
 

0

2 Pyhton

0
Selected

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

1
Should have chosen

Pyhton Pyhton

0
Question 7

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

Score: 0.25 of 1
Your answerChoiceScoreCorrect answer
str1250int
int250.70float
boolFalse1bool
float'Καλημέρα'0str
Question 8

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

print type ("python")

Score: 0 of 1
Your answerChoiceScoreCorrect answer

<type 'str'>

0
Should have chosen

<type 'int'>

0
Selected

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

0
Question 9

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

print type (1 .0 / 2)

Score: 0 of 1
Your answerChoiceScoreCorrect answer
Selected

0.5

0

0

0

<type 'float'>

0
Should have chosen

<type 'int'>

0
Question 10

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

x = 2

x - = 1

x = x - 2

print x

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

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

Score: 0.66666666666667 of 1
Your answerChoiceScoreCorrect answer
float(10)010.0
5int(5.678)15
5str(5.678)05.678
45abs(-45)145
(3, 1)divmod(10, 3)1(3, 1)
8pow(2, 3)18
Question 12

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

a, b = b, a

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

Score: 0 of 1
Your answerChoiceScoreCorrect answer
Selected

temp = b

a = b

a = temp

0

temp = a

b = a

b = temp

0

a = b

temp = a

b = temp

0

temp = a

a = b

b = temp
 

0
Should have chosen
Question 13

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

print 3 * "Python"

Score: 1 of 1
Your answerChoiceScoreCorrect answer

3Pyhton

0

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

0

Python3

0
Selected

PythonPythonPython

1
Should have chosen
Question 14

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

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

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

import math

riza = math.sqrt(4)

print riza

x = math.pi

print x

Score: 0 of 1
Your answerChoiceScoreCorrect answer

2

3.141592653589793

0
Should have chosen
Selected

16

3.141592653589793

0

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

0

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

0
Question 16

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

5 * ( 3 + 2) / 10

Score: 0 of 1
Your answerScoreCorrect answer
2502
Question 17

Επιλέξτε True η False

False and 1 != 0
 

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

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

a = 0xB

print a

 

 

 

 

Score: 0 of 1
Your answerScoreCorrect answer
0xB011

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

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

Question 19

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

print int(1.0 / 2.0 )

Score: 0 of 1
Your answerChoiceScoreCorrect answer

0

0
Should have chosen

<type 'int'>

0

1

0
Selected

0.5

0
Question 20

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

x = 45

y = 10

print divmod( y , x)

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

 

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

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

x = 45

y = 10

print x % y

 

Score: 0 of 1
Your answerScoreCorrect answer
4505
Question 22

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

11 % 3 - 2 * 2

Score: 0 of 1
Your answerScoreCorrect answer
10-2

11 % 3 - 2 * 2 = 2 - 4 = -2

Question 23

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

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

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

a = 2

b = 10

p = a * b

print "a + b"

Score: 1 of 1
Your answerChoiceScoreCorrect answer

10 + 2

0

12

0
Selected

a + b

1
Should have chosen

2 + 10

0
Question 25

 Τελεστές, αντιστοιχήστε
 

Score: 0.83333333333333 of 1
Your answerChoiceScoreCorrect answer
Αριθμητικός Τελεστής*1Αριθμητικός Τελεστής
Αλφαριθμητική τιμήFalse0Λογική τιμή
Σχεσιακός Τελεστής>1Σχεσιακός Τελεστής
Λογικός Τελεστήςand1Λογικός Τελεστής
Όνομα μεταβλητήςlength1Όνομα μεταβλητής
Αλφαριθμητική τιμή"πλάτος"1Αλφαριθμητική τιμή