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

You got 16 of 29 possible points.
Your score: 55%
Question 1

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

a, b = b, a

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

Score: 0 of 1
Your answerChoiceScoreCorrect answer

temp = a

b = a

b = temp

0
Selected

temp = b

a = b

a = temp

0

temp = a

a = b

b = temp
 

0
Should have chosen

a = b

temp = a

b = temp

0
Question 2

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

x = 45

y = 10

print divmod( y , x)

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

 

Score: 0 of 1
Your answerScoreCorrect answer
0,100(0,10)
Question 3

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

print type (1 / 2)

Score: 1 of 1
Your answerChoiceScoreCorrect answer

<type 'float'>

0

0.5

0

0

0
Selected

<type 'int'>

1
Should have chosen
Question 4

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

print type ("python")

Score: 1 of 1
Your answerChoiceScoreCorrect answer

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

0

<type 'int'>

0
Selected

<type 'str'>

1
Should have chosen
Question 5

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

a = 2

b = 10

p = a * b

print a + b

Score: 1 of 1
Your answerScoreCorrect answer
12112
Question 6

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

8 / 4 % 2 + 2

Score: 1 of 1
Your answerScoreCorrect answer
212
Question 7

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

 

1onoma

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

Λάθος γιατί αρχίζει με αριθμό

Question 8

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

print int(1.0 / 2.0 )

Score: 0 of 1
Your answerChoiceScoreCorrect answer

0

0
Should have chosen

<type 'int'>

0

0.5

0
Selected

1

0
Question 9

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

2 * ( 5 % 3) + 4 / (1 + 3)

Score: 0 of 1
Your answerScoreCorrect answer
205

2 * ( 5 % 3) + 4 / (1 + 3) = 2 * 2 + 4 / 4 = 4 + 1 = 5

Question 10

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

print "Python"  + str(2)

Score: 1 of 1
Your answerChoiceScoreCorrect answer

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

0
Selected

Python2

1
Should have chosen

PyhtonPyhton

0

2Pyhton

0
Question 11

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

x = 45

y = 10

print divmod( x, y)

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

Score: 0 of 1
Your answerScoreCorrect answer
4,50(4,5)
Question 12

Επιλέξτε True η False

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

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

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

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

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

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

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

0

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

0

16

3.141592653589793

0
Question 15

Επιλέξτε True η False

False and 1 != 0
 

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

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

print "Python"  + 2

Score: 1 of 1
Your answerChoiceScoreCorrect answer
Selected

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

1
Should have chosen

Pyhton Pyhton

0

Python 2
 

0

2 Pyhton

0
Question 17

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

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

print z, x

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

 

 

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

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

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

Score: 0 of 1
Your answerScoreCorrect answer
601

(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 19

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

x = 45

y = 10

print x % y

 

Score: 1 of 1
Your answerScoreCorrect answer
515
Question 20

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

x = 2

x = 2 ** 3 + 2 / 3

print x

Score: 0 of 1
Your answerScoreCorrect answer
1608
Question 21

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

print type (a == 2)

Score: 1 of 1
Your answerChoiceScoreCorrect answer

<type 'str'>

0
Selected

<type 'bool'>

1
Should have chosen

True

0

False

0
Question 22

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

15 *  2 / 3

Score: 1 of 1
Your answerScoreCorrect answer
10110

15 * 2 / 3 = 30 / 3 = 10

Question 23

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

2 ** 3 * 3 ** 2

Score: 0 of 5
Your answerScoreCorrect answer
32072

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

Question 24

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

 

Metavliti+3

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

Υπάρχει το +

Question 25

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

Score: 1 of 1
Your answerChoiceScoreCorrect answer

number = number + number * 50

0

number = number * 50

0

number = number % 50

0
Selected

number = number * 1.5

1
Should have chosen