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

You got 12 of 29 possible points.
Your score: 41%
Question 1

Επιλέξτε True η False

"test" == 'test'
 

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

Επιλέξτε True η False

1 == 1 and 0 != 1
 

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

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

15 + 2 / 2

Score: 0 of 1
Your answerScoreCorrect answer
17016
Question 4

Επιλέξτε True η False

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

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

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

print type ("python")

Score: 1 of 1
Your answerChoiceScoreCorrect answer

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

0

<type 'int'>

0
Selected

<type 'str'>

1
Should have chosen
Question 6

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

import math

riza = math.sqrt(4)

print riza

x = math.pi

print x

Score: 0 of 1
Your answerChoiceScoreCorrect answer

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

0
Selected

16

3.141592653589793

0

2

3.141592653589793

0
Should have chosen

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

0
Question 7

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

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

Score: 0 of 1
Your answerScoreCorrect answer
13019

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 8

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

print "Python"  + 2

Score: 0 of 1
Your answerChoiceScoreCorrect answer
Selected

Pyhton Pyhton

0

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

0
Should have chosen

2 Pyhton

0

Python 2
 

0
Question 9

Επιλέξτε True η False

not ( 5 == 5 or (1 != 0 and 6 != 7))
 

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

not ( 5 == 5 or (1 != 0 and 6 != 7)) άρα not (True or οτιδήποτε) άρα not(True) άρα False

Question 10

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

 

245

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

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

Question 11

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

 

Metavliti3

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

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

a = 2

print type (a)

Score: 1 of 1
Your answerChoiceScoreCorrect answer

<type 'str'>

0

<type 'a'>

0
Selected

<type 'int'>

1
Should have chosen
Question 13

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

x = 45

y = 10

print x / y

 

Score: 0 of 1
Your answerScoreCorrect answer
4504
Question 14

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

print 3 * "Python"

Score: 1 of 1
Your answerChoiceScoreCorrect answer

Python3

0

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

0
Selected

PythonPythonPython

1
Should have chosen

3Pyhton

0
Question 15

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

15 *  2 / 3

Score: 0 of 1
Your answerScoreCorrect answer
15010

15 * 2 / 3 = 30 / 3 = 10

Question 16

Αυξήστε τη μεταβλητή number κατά 50 %
 

Score: 0 of 1
Your answerChoiceScoreCorrect answer
Selected

number = number * 50

0

number = number + number * 50

0

number = number * 1.5

0
Should have chosen

number = number % 50

0
Question 17

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

23 == 23

34 != 45

56 <= 12

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

Score: 0 of 1
Your answerScoreCorrect answer
True,True,False 0T,T,F
Question 18

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

 

Print

 

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

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

Question 19

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

2 ** 3 * 3 ** 2

Score: 5 of 5
Your answerScoreCorrect answer
72572

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

Question 20

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

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

a, b, c = (1, 2, 3)

Τι τιμές θα πάρουν;
 

Score: 1 of 1
Your answerChoiceScoreCorrect answer

a = [1 ,2, 3]

b = [1 ,2, 3]

c = [1 ,2, 3]

είναι λίστες

0
Selected

a = 1

b = 2

c = 3

1
Should have chosen

a = [1]

b = [2]

c= [3]

είναι λίστες

0
Question 22

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

print 3 * "Python" * 2

Score: 1 of 1
Your answerChoiceScoreCorrect answer

3Pyhton3Pyhton

0

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

0

Python6

0
Selected

PythonPythonPythonPythonPythonPython

1
Should have chosen
Question 23

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

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

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

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

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

 

mikos_1

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