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

You got 20 of 36 possible points.
Your score: 56%
Question 1

Για τις τιμές στις λογικές μεταβλητές ή εκφράσεις, Α=False, B=True, C=True,

να επιλέξετε τη απάντηση True ή False στην παρακάτω λογική πρόταση

not(A or B) and C

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

not(A or B) and C = not(False or True) and True = notTrue and True = False and True = False

Question 2

type('Καλή επιτυχία')

Score: 1 of 1
Your answerChoiceScoreCorrect answer
Selected

str

1
Should have chosen

καλή επιτυχία

0
Question 3

10 // 2 + 5 == math.sqrt (100)

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

10 // 2 + 5 == math.sqrt (100) άρα 5+5 == 10 άρα 10 == 10 άρα True

Question 4

15 % 20

Score: 0 of 1
Your answerChoiceScoreCorrect answer

0

0
Selected

20

0

15

0
Should have chosen
Question 5

str(float(int(5.99)))
 

Score: 0 of 1
Your answerChoiceScoreCorrect answer

'5.0'

0
Should have chosen

5

0
Selected

'5.99'

0
Question 6

2 % 2 <= 2 - 2

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

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

Question 7

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

a=5

b=10

print a,b

a,b=b,a

print a,b

Score: 1 of 1
Your answerChoiceScoreCorrect answer
Selected

5    10

10    5

1
Should have chosen

10   5

5    10

0
Question 8

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

Score: 0 of 1
Your answerChoiceScoreCorrect answer

10
15

0
Selected

5
10

0

10
20

0
Should have chosen
Question 9

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

abs(int(-5.5))

Score: 1 of 1
Your answerChoiceScoreCorrect answer
Selected

5

1
Should have chosen

5.5

0

-5

0
Question 11

Επιλέξτε τις κατάλληλες εντολές ...

Score: 0.25 of 1
Your answerChoiceScoreCorrect answer
n=float(input('Δώσε .....'))διαβάζει ένα όνομα0n=raw_input('Δώσε .....)
n=int(input('Δώσε ......'))διαβάζει έναν αριθμό0n=input('Δώσε .....')
n=int(input('Δώσε ......'))Διαβάζει έναν ακέραιο αριθμό1n=int(input('Δώσε ......'))
n=int(input('Δώσε ......'))Διαβάζει έναν πραγματικό αριθμό0n=float(input('Δώσε .....'))
Question 12

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

 

Question 13

(8 > 2 ** 3 ) and True

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

(8 > 2 ** 3 ) and True άρα 8>8 and True άρα False and True άρα False

Question 14

float(int(5.2))

Score: 1 of 1
Your answerChoiceScoreCorrect answer
Selected

5.0

1
Should have chosen

5

0

5.2

0
Question 15

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

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

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

Question 16

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

Score: 0.85714285714286 of 1
Your answerChoiceScoreCorrect answer
55str(5)+'5'0'55'
55int(5.0*11)155
50abs(5-55)150
'123'str(1)+str(2)+str(3)1'123'
6.0int(1.0)+int(2.0)+int(3.0)06
6.0float(6)16.0
8pow(2,3)18
Question 17

(2%5 == 2) or (10//3 >4)

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

(2%5 == 2) or (10//3 >4) ή ((2 == 2) or (3 >4) ή True or False ή True

Question 18

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

Score: 0 of 1
Your answerChoiceScoreCorrect answer
ΝΑΙprint0ΟΧΙ
ΟΧΙpali_tha_milame_gia_vathmous0ΝΑΙ
Question 19

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

Score: 1 of 1
Your answerChoiceScoreCorrect answer
Selected

12

1
Should have chosen

8

0

9

0
Question 20

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

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

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

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

Δηλαδή η παράσταση 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 22

str(1)*5
 

Score: 1 of 1
Your answerChoiceScoreCorrect answer

5

0

'55555'
 

0

'15'

0
Selected

'11111'

1
Should have chosen
Question 23

Τι θα εμφανιστεί ;
a, b, c, e = 4, 5, 6, 7
print e, a

Score: 1 of 1
Your answerChoiceScoreCorrect answer

4 7

0
Selected

7 4

1
Should have chosen

5 6

0
Question 24

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

a, b = divmod (11, 5)

print pow(a,b)

Score: 1 of 1
Your answerChoiceScoreCorrect answer

4

0
Selected

2

1
Should have chosen

χμμμ... error

0

1

0
Question 25

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

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

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

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

x=25

y=10

x+=2

y-=3

z=x/y

c=x%y

print z, c

Score: 0 of 1
Your answerChoiceScoreCorrect answer
Selected

4 0
 

0

3 6

0
Should have chosen

6 3

0
Question 28

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

Score: 1 of 2
Your answerChoiceScoreCorrect answer
ΝΑΙVathmos_me_keno0NAI
ΝΑΙvathmos_______11ΝΑΙ
Question 29

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

Score: 0 of 1
Your answerChoiceScoreCorrect answer

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

0

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

0
Should have chosen
Selected

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

0
Question 30

18+20/2

Score: 1 of 1
Your answerChoiceScoreCorrect answer
Selected

28

1
Should have chosen

19

0
Question 31

8 + 3 ** 2 / 3 >= 11

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

Κοίτα: 8 + 3 ** 2 / 3 >= 11 άρα 8+9/3>=11 άρα 8+3>==1 άρα 11>=11 άρα True

Question 32

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 33

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

a=20

b=19

mo=( ___  +____ )/2

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

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

Score: 0 of 1
Your answerChoiceScoreCorrect answer

mo=( a + b)/2

0

mo=float(a + b )/2

0
Should have chosen
Selected

mo=( a + b )/2

mo=float(mo)

0
Question 34

(2 + 2 ) ** 2 == (2 ** 2 ) ** 2

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

(2 + 2 ) ** 2 == (2 ** 2 ) ** 2  άρα 4 ** 2 == 4 ** 2 άρα 16 == 16 άρα True

Question 35

int(10.0/3)

Score: 0 of 1
Your answerChoiceScoreCorrect answer
Selected

3.33

0

3

0
Should have chosen