Τελεστές-Μεταβλητές-Βασικές Συναρτήσεις-print

You got 22 of 35 possible points.
Your score: 63%
Question 1

(12 > 11) or (3 ** 3 + 4 // 16 + 8 ** 2 * 5 - 4 == 4)

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

(12 > 11) or (3 ** 3 + 4 // 16 + 8 ** 2 * 5 - 4 == 4) άρα True or οτιδήποτε θα είναι True. (Δε χρειάζεται άλλη απόδειξη)

Τυπικά:  True or (27 + 0 + 320 - 4 == 4)  άρα True or (343==4) άρα True or Fasle άρα True

Question 2

Για την Python 2.7, αντιστοιχείστε τα στοιχεία της στήλης Α με αυτά της στήλης Β

Score: 0.28571428571429 of 1
Your answerChoiceScoreCorrect answer
1.0abs(-5-6)011
1.0pow(2,1)02
(2,0)divmod(2,1)1(2,0)
1.0float(3/2)11.0
43/float(2)01.5
11int(float(9)/2)04
(2,0)int(5/float(2)) + float(int(5/2.0))04.0
Question 3

str(1)+str(1)

Score: 0 of 1
Your answerChoiceScoreCorrect answer
Selected

'2'

0

'11'

0
Should have chosen
Question 4

Τύποι δεδομένων

Σε ποιο τύπο δεδομένων στη γλώσσα προγραμματισμού Python 2.7 αντιστοιχούν οι τιμές της αριστερής στήλης του παρακάτω πίνακα.
Να συνδέσετε κατάλληλα τις τιμές της αριστερής στήλης με το σωστό τύπο δεδομένων της δεξιάς στήλης.

Score: 0 of 1
Your answerChoiceScoreCorrect answer
float(κινητής υποδιαστολής)-130int (ακέραια)
int (ακέραια)34.650float(κινητής υποδιαστολής)
string (συμβολοσειρά)raw_input0εντολή
float(κινητής υποδιαστολής)'input'0string (συμβολοσειρά)
Question 5

για το παρακάτω τμήμα προγράμματος, ποια έντολή θα επιλέγατε ώστε να εμφανίζει το μήνυμα:
Ποιο socket επιλέγεις για ______ πυρήνες; π.χ. αν ο χρήστης δώσει 4, θα εμφανίζει: Ποιο socket επιλέγεις για 4 πυρήνες;
cores=input('Πόσους πυρήνες διαθέτει ο επεξεργαστής; ')
socket=______________________

Score: 0 of 1
Your answerChoiceScoreCorrect answer

socket=input('Ποιο socket επιλέγεις για ' + str(cores) + ' πυρήνες')

0
Should have chosen
Selected

socket=input('Ποιο socket επιλέγεις για ' +cores+ ' πυρήνες')

0

socket=input('Ποιο socket επιλέγεις για ' ,cores, ' πυρήνες')

0
Question 6

3 + 3 * 3 - 3 // 3 ** 3 == 3 * 3 + 3

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

3 + 3 * 3 - 3 // 3 ** 3 == 3 * 3 + 3   άρα 3 + 9 - 3 // 27 == 9 + 3 άρα 3 + 9 - 0 == 9 + 3 άρα 12 == 12 άρα True

Question 7

Να καταγράψετε τι πιστεύετε ότι θα εμφανιστεί στην οθόνη μετά την εκτέλεση του παρακάτω τμήματος προγράμματος:

x=25

y=10

x+=2

y-=3

z=x/y

c=x%y

print z, c

Score: 0 of 1
Your answerChoiceScoreCorrect answer

3 6

0
Should have chosen

6 3

0
Selected

4 0
 

0
Question 8

4 / 2 + 5 == 10 - 6 / 2

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

4 / 2 + 5 == 10 - 6 / 2 άρα 2 + 5 == 10 - 3 άρα 7 == 7 άρα True

Question 9

Σε ποιο τύπο δεδομένων στη γλώσσα προγραμματισμού Python αντιστοιχούν οι τιμές της αριστερής στήλης του παρακάτω πίνακα. Να συνδέσετε κατάλληλα τις τιμές της αριστερής στήλης με το σωστό τύπο δεδομένων της δεξιάς στήλη

Score: 0 of 1
Your answerChoiceScoreCorrect answer
str (συμβολοσειρά)float(15%4)0float (κινητής υποδιαστολής)
float (κινητής υποδιαστολής)'15/4.0'0str (συμβολοσειρά)
str (συμβολοσειρά)10/30int (ακέραιος)
Question 10

4 + 4 / 4 - 4 % 4 == 4

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

4 + 4 / 4 - 4 % 4 == 4 ή 4 + 1 - 0 == 4 ή 5 == 4 ή False

Question 11

Για την Python 2.7, αντιστοιχείστε τα στοιχεία της στήλης Α με αυτά της στήλης Β

Score: 0.14285714285714 of 1
Your answerChoiceScoreCorrect answer
'55'str(5)+'5'1'55'
50int(5.0*11)055
'123'abs(5-55)050
50str(1)+str(2)+str(3)0'123'
8int(1.0)+int(2.0)+int(3.0)06
55float(6)06.0
6pow(2,3)08
Question 12

τι θα εμφανιστεί;
x=5
x*=2
print x
x+=10
print x

Score: 0 of 1
Your answerChoiceScoreCorrect answer

10
20

0
Should have chosen
Selected

10
15

0

5
10

0
Question 13

18+20/2

Score: 1 of 1
Your answerChoiceScoreCorrect answer
Selected

28

1
Should have chosen

19

0
Question 14

7+ 7 // 7 ** 7 == 7 / 7 * 7
 

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

7+ 7 // 7 ** 7 == 7 / 7 * 7 άρα 7 + 7 // (κάτι πολύ μεγαλύτερο του 7) == 1*7 άρα 7 + 0 ==  7 άρα 7 == 7 άρα True

Question 15

(15 > 20 / 2) or (3**123*3132+2987-2354/2354265<=238293-23213*23)

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

(15 > 20 / 2) or (3**123*3132+2987-2354/2354265<=238293-23213*23) άρα (15 > 10) or (οτιδήποτε) άρα True or (οτιδήποτε ) άρα True

True or οτιδήποτε είναι True 

Question 16

Τύποι δεδομένων

Σε ποιο τύπο δεδομένων στη γλώσσα προγραμματισμού Python 2.7 αντιστοιχούν οι τιμές της αριστερής στήλης του παρακάτω πίνακα.
Να συνδέσετε κατάλληλα τις τιμές της αριστερής στήλης με το σωστό τύπο δεδομένων της δεξιάς στήλης.

Score: 1 of 1
Your answerChoiceScoreCorrect answer
int(ακέραια)15/61int(ακέραια)
float (κινητής υποδιαστολής)18.0/61float (κινητής υποδιαστολής)
str(συμβολοσειρά)'18/6'1str(συμβολοσειρά)
bool (λογική)type(15>3)1bool (λογική)
Question 17

Υπολόγισε 2 ** 3 + 3 ** 2 / 3

Score: 1 of 1
Your answerChoiceScoreCorrect answer

9

0

8

0
Selected

11

1
Should have chosen
Question 18

5 + 3 ** 2 - 3 >= 10 % 4 + 10

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

5 + 3 ** 2 - 3 >= 10 % 4 + 10 άρα 5 + 9 - 3 >= 2 + 10 άρα 11 >= 12 άρα False

Question 19

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

print '1'+'1'

Score: 1 of 1
Your answerChoiceScoreCorrect answer

error

0

2

0
Selected

11

1
Should have chosen
Question 20

6 + 1 - 3 % 4 == 2 ** 2

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

6 + 1 - 3 % 4 == 2 ** 2 άρα 6 + 1 - 3 == 4 άρα 4==4 άρα True

Question 21

5 + 3 ** 2 == 4 ** 2 / 2 + 2 * 3

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

5 + 3 ** 2 == 4 ** 2 / 2 + 2 * 3 άρα 5 + 9 == 16 / 2 + 6 άρα 14 == 8 + 6 άρα 14 == 14 άρα True

Question 22

(3 + 4 / 2**2  >= 4 ) and (5 * 2 -10 // 2 == 0)
 

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

(3 + 4 / 2**2  >= 4 ) and (5 * 2 -10 // 2 == 0) ή (3+4/4>=4)  and (10-5==0) ή (4>=4) and (5==0) ή True and False ή False

Question 23

Σιγά, μια αλλαγή σε παράνθεση θα αλλάξει το αποτέλεσμα;

Δηλαδή η παράσταση 3 + 2 ** 2 - 2 + 3 / (3.0 +3)  είναι διαφορετική με την (3 + 2) ** 2 - 2 + 3 / (3.0 +3) και την 3 + 2**2 - 2 + 3 / 3.0 +3 ;

Score: 1 of 1
Your answerChoiceScoreCorrect answer
5.53 + 2 ** 2 - 2 + 3 / (3.0 +3)15.5
23.5(3 + 2) ** 2 - 2 + 3 / (3.0 +3)123.5
93 + 2**2 - 2 + 3 / 3.0 +319

Είδες, μια παρένθεση επηρεάζει το αποτέλεσμα, μπορεί όμως να τύχει να μη συμβεί κάτι τέτοιο! χμμμ...

Question 24

3-3*2**2/4//5

Score: 1 of 1
Your answerChoiceScoreCorrect answer

0

0

2

0
Selected

3

1
Should have chosen
Question 25

15 % 20

Score: 1 of 1
Your answerChoiceScoreCorrect answer

0

0

20

0
Selected

15

1
Should have chosen
Question 26

τι θα εμφανιστεί στην οθόνη;

a=5

b=10

print a,b

a,b=b,a

print a,b

Score: 1 of 1
Your answerChoiceScoreCorrect answer

10   5

5    10

0
Selected

5    10

10    5

1
Should have chosen
Question 27

(2 + 2 ** 2 >= 2 * 3) and ( 3 * 2 - 2 // 3 == 6 ** 2 / 6)
 

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

(2 + 2 ** 2 >= 2 * 3) and ( 3 * 2 - 2 // 3 == 6 ** 2 / 6) άρα (2 + 4 >= 6) and ( 6 - 0 == 36 / 6) άρα ( 6 >= 6) and (6 == 6) άρα True and True άρα True

Question 28

10 + 4**2 * 2**2 < 6 % 16 // 6 * 6

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

10 + 4**2 * 2**2 < 6 % 16 // 6 * 6 ή 10 + 16 * 4 < 6 // 6 *6  ή  10 + 64 < 1 * 6 ή 74 < 6 ή False

Question 29

2 % 2 <= 2 - 2

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

2 % 2 <= 2 - 2 ή 0 <= 0 ή True

Question 30

Τι θα εμφανιστεί;
x=5
x=x+3
x+=4
print x

Score: 1 of 1
Your answerChoiceScoreCorrect answer
Selected

12

1
Should have chosen

9

0

8

0
Question 31

Έστω το παρακάτω τμήμα προγράμματος:

a=20

b=19

mo=( ___  +____ )/2

print '  Ο μέσος όρος των αριθμών είναι: ', mo

Για την Python 2.7, Τι θα επιλέγατε για να υπολογιστεί με ακρίβεια ο μέσος όρος, δλαδή 19.5 και όχι 19;

Score: 1 of 1
Your answerChoiceScoreCorrect answer

mo=( a + b )/2

mo=float(mo)

0
Selected

mo=float(a + b )/2

1
Should have chosen

mo=( a + b)/2

0
Question 32

(3 // 3) ** 3 < 3 + 3 // 3

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

(3 // 3) ** 3 < 3 + 3 // 3 ή 1 ** 3 < 3 + 1 ή 1 < 4 True

Question 33

Ποια από τα παρακάτω ονόματα  μεταβλητών είναι αποδεκτά στην  Python;

Score: 1 of 1
Your answerChoiceScoreCorrect answer
ΟΧΙprint1ΟΧΙ
ΝΑΙpali_tha_milame_gia_vathmous1ΝΑΙ
Question 34

8 / 2 ** 2 + 2 <= 5

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

Δηλαδή: 8 / 2 ** 2 + 2 <= 5 άρα 8 / 4 + 2 <= 5 άρα 2 +2 <=5 άρα 4 <=5 άρα True

Question 35

10-6//4 == 1

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

10-6//4 == 1,  δηλαδή 10-1 ==1 ή 9 == 1 ή False