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

You got 14 of 36 possible points.
Your score: 39%
Question 1

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 2

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

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

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

Score: 1 of 1
Your answerChoiceScoreCorrect answer

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

0
Selected

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

1
Should have chosen

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

0
Question 4

υπολογίστε: 7 + 5 ** 2 // 2

Score: 0 of 1
Your answerChoiceScoreCorrect answer
Selected

χμμ.. 12 στο τετράγωνο διά 2

0

16

0

19

0
Should have chosen
Question 5

pow (4, 2) == pow (2 ,4)

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

pow (4, 2) == pow (2 ,4) άρα 4 * 4== 2 * 2 * 2 * 2  άρα 16 == 16 άρα True

Question 6

(8 > 2 ** 3) and True

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

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

Question 7

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

Score: 2 of 2
Your answerChoiceScoreCorrect answer
True7 == 7.01True
Falsestr(7)==str(7.0)1False

7 == 7.0  Συγκρίνονται δύο αριθμητικές τιμές, όχι οι τύποι των αριθμών, άρα είναι True

str(7)==str(7.0)  Συγκρίνονται τα δύο str-κείμενα  '7' == '7.0' , που δεν είναι ίδια, άρα False

Question 8

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

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

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

(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 ή 1 ** 3 < 3 + 1 ή 1 < 4 True

Question 10

18+20/2

Score: 1 of 1
Your answerChoiceScoreCorrect answer
Selected

28

1
Should have chosen

19

0
Question 11

8 + 3 ** 2 / 3 >= 11

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

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

Question 12

(17-1- 4**2) % 5

Score: 0 of 1
Your answerChoiceScoreCorrect answer
Selected

Δε γίνεται

0

0

0
Should have chosen

5

0
Question 13

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

Score: 0 of 1
Your answerChoiceScoreCorrect answer

9

0

12

0
Should have chosen
Selected

8

0
Question 14

15 % 20

Score: 0 of 1
Your answerChoiceScoreCorrect answer

20

0
Selected

0

0

15

0
Should have chosen
Question 15

2 * 2 * 2 * 2 ! = 2 ** ( 2 ** 2 )

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

2 * 2 * 2 * 2 ! = 2 ** ( 2 ** 2 ) άρα 4*2*2 != 2 **4 άρα 16 != 16 άρα False

Question 16

int(str(1)*3)+2

Score: 0 of 1
Your answerChoiceScoreCorrect answer

113

0
Should have chosen

'1112'

0
Selected

5

0
Question 17

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

Score: 0.75 of 1
Your answerChoiceScoreCorrect answer
str (συμβολοσειρά)'45.356'1str (συμβολοσειρά)
boolTrue1bool
float12.01float
float12/50int
Question 18

(3//2+5 == 6 ) or (14 % 3 - 2 //3 < 6)
 

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

(3//2+5 == 6 ) or (14 % 3 - 2 //3 < 6) ή (1+5==6) or (2 - 0 <6) ή (6 == 6)  or (2<6) ή True or True ή True

Question 19

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

Score: 0.5 of 1
Your answerChoiceScoreCorrect answer
ΝΑΙprint0ΟΧΙ
ΝΑΙpali_tha_milame_gia_vathmous1ΝΑΙ
Question 20

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

int(5/float(2))

Score: 0 of 1
Your answerChoiceScoreCorrect answer
Selected

2.5

0

2

0
Should have chosen
Question 22

pow(int(8.0/3),3)

Score: 0 of 1
Your answerChoiceScoreCorrect answer
Selected

9

0

8

0
Should have chosen
Question 23

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 24

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

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

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

Score: 0 of 1
Your answerChoiceScoreCorrect answer
True0
Should have chosen
Selected
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 26

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

Score: 0 of 1
Your answerChoiceScoreCorrect answer

10
20

0
Should have chosen
Selected

5
10

0

10
15

0
Question 27

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 28

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

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 29

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

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

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

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

Question 30

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

x=25

y=10

x+=2

y-=3

z=x/y

c=x%y

print z, c

Score: 1 of 1
Your answerChoiceScoreCorrect answer
Selected

3 6

1
Should have chosen

4 0
 

0

6 3

0
Question 31

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

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

mo=float(mo)

0
Selected

mo=( a + b)/2

0

mo=float(a + b )/2

0
Should have chosen
Question 32

( 4 >= 4 / 4 ** 4 ) and ( 2 >= 2 * 2 / 2 ** 2)

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

( 4 >= 4 / 4 ** 4 ) and ( 2 >= 2 * 2 / 2 ** 2) άρα ( 4 >= 0) and ( 2 >= 2 * 2 / 4) άρα (4>=0) and (2 >=1) άρα True and True άρα True

Σκέψου: 4 / 4 ** 4 είναι 4 / (αριθμός μεγαλύτερος του 4) άρα 0 ( στην Python 2.7)

Question 33

Υπολογίστε:
10 % (234**23423540982)

Score: 0 of 1
Your answerChoiceScoreCorrect answer

10

0
Should have chosen

Αδύνατο

0
Selected

0

0
Question 34

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

Score: 0.33333333333333 of 1
Your answerChoiceScoreCorrect answer
str (συμβολοσειρά)12.0/60float (κινητής υποδιαστολής)
int (ακέραιος)7/21int (ακέραιος)
float (κινητής υποδιαστολής)'13'0str (συμβολοσειρά)
Question 35

(9 ** 8 - 7 ** 6 + 5 ** 2 // 665 == 5) and (4 / 2 == 3)

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

(9 ** 8 - 7 ** 6 + 5 ** 2 // 665 == 5) and (4 / 2 == 3) άρα οτιδήποτε and (2 == 3) άρα οτιδήποτε and False άρα False