Mεταβλητές-τελεστές-print-for-while-Συμβολοσειρές-random-def

You got 19 of 25 possible points.
Your score: 76%
Question 1

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

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

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

Question 2

Μπορεί να μετατραπεί η παρακάτω while σε ισοδύναμη for;

i=5

while i<10:

    i=i+1

    print i

 

Score: 1 of 1
Your answerChoiceScoreFeedbackCorrect answer

Με τίποτα!

0

for i in range(5,10):

    print i

0
Selected

for i in range(6,11):

    print i

1

σωστά

 

Should have chosen
Question 3

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

Score: 1 of 1
Your answerChoiceScoreFeedbackCorrect answer
ΟΧΙprint1print, ως όνομα μεταβλητής η εντολή print απαγορεύεται, η Print (με κεφαλαίο) επιτρέπεταιΟΧΙ
ΝΑΙpali_tha_milame_gia_vathmous1pali_tha_milame_gia_vathmous, γιατί το σκέφτεσαι, υπακούει στους κανόνεςΝΑΙ
Question 4

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

Score: 1 of 1
Your answerChoiceScoreFeedbackCorrect answer
ΟΧΙ1vathmos11vathmos, Αρχίζει από αριθμόΟΧΙ
ΝΑΙVathmos11Vathmos1, σωστόΝΑΙ
Question 5

a='Καλή μελέτη' 
b=''
for i in range(4):
    b=b+a[i]
print b
Τι θα εμφανιστεί;
Score: 1 of 1
Your answerChoiceScoreFeedbackCorrect answer

'καλ'

0

'μελέτη'

0

'ηλάκ'

0
Selected

'καλή'
 

1

Σωστά

Should have chosen
Question 6

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

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

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

Question 7

Να μετατραπεί η σύνθετη δομή επιλογής σε απλή:

if a>0:

    print 'Θετικός'

else:

    print ' Δεν είναι θετικός'

 

Score: 1 of 1
Your answerChoiceScoreFeedbackCorrect answer

if a>0:

    print 'Θετικός'

if a<0:

    print ' Δεν είναι θετικός'

0
Selected

if a>0:

    print 'Θετικός'

if a<=0:

    print ' Δεν είναι θετικός'

1
Should have chosen

if a>0:

    print 'Θετικός'

if a=0:

    print ' Δεν είναι θετικός'

0
Question 8

5<=2+3

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

True, είναι η απάντηση αφού θα προηγηθεί η πρόσθεση 5<=5
 

Question 9

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

for i in range(10, 2, -3):

    print i

Score: 1 of 1
Your answerChoiceScoreFeedbackCorrect answer

7, 4

0

-3, -1, 1, 3, 5, 7, 9

0
Selected

10, 7, 4

1

Διάβασε τη λειτουργία της for

Should have chosen
Question 10

a='Καλή'
b='μέρα' 
c=a+b
print 'Καλημέρα' in c
Score: 0 of 1
Your answerChoiceScoreFeedbackCorrect answer
Selected
True0
False0
Should have chosen

c='Καλήμέρα' και όχι 'Καλημέρα'

Question 11

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

Score: 1 of 1
Your answerChoiceScoreFeedbackCorrect answer

9

0

8

0
Selected

11

1
Should have chosen
Question 12

10 % (33 ** 12345)

Score: 1 of 1
Your answerChoiceScoreFeedbackCorrect answer

άπειρο ...

0

10 % (33 ** 12345) άρα 10 % (κάτι μεγαλύτερο από 10) άρα 10.

ή πιο απλά 10 παγωτά να μοιραστούν σε έναν αριθμό ατόμων όπου το πλήθος τους έχει 18747 ψηφία (δε θα χωρέσει η πράξη εδώ....) ,

δε θα μπορέσουν να τα μοιραστούν και θα περισσέψουν 10, ευτυχώς θα τα φάνε 10 πιτσιρίκια που είχαν πολύ καιρό να φαν παγωτό.

Selected

10

1
Should have chosen

0

0

10 % (33 ** 12345) άρα 10 % (κάτι μεγαλύτερο από 10) άρα 10.

ή πιο απλά 10 παγωτά να μοιραστούν σε έναν αριθμό ατόμων όπου το πλήθος τους έχει 18747 ψηφία (δε θα χωρέσει η πράξη εδώ....) ,

δε θα μπορέσουν να τα μοιραστούν και θα περισσέψουν 10, ευτυχώς θα τα φάνε 10 πιτσιρίκια που είχαν πολύ καιρό να φαν παγωτό.

Question 13

Μπορεί να μετατραπεί η ακόλουθη while σε for;

i=30

while i>19:

    print i

    i=i-2

Score: 1 of 1
Your answerChoiceScoreFeedbackCorrect answer

 

for i in range(19, 30, -2):

    print i

0

for i in range(30, 17, -2):

    print i

 

0
Selected

for i in range(30, 19, -2):

    print i

1

Σωστά

Should have chosen
Question 14

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

for i in range(10, 22, -3):

    print i

Score: 1 of 1
Your answerChoiceScoreFeedbackCorrect answer
Selected

τίποτα

1
Should have chosen

10

0

22, 19, 16, 13

0
Question 15

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

Score: 1 of 1
Your answerChoiceScoreFeedbackCorrect answer
Selected

str

1
Should have chosen

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

0
Question 16

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

Score: 1 of 1
Your answerChoiceScoreFeedbackCorrect answer
Selected

19

1
Should have chosen

16

0

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

0
Question 17

Μετατρέψτε την for σε ισοδύναμη while

for i in range(50,40,10):

    print i

Score: 0 of 1
Your answerChoiceScoreFeedbackCorrect answer
Selected

i=50

while i>40:

    print i

    i=i+10

    

0

χμμμ...ξανακοίτα το, το βήμα θετικό...αλλά απο το 50 έως το 40 ανεβαίνοντας.....δε θα γίνει καμιά επανάληψη...δες τη λύση

i=50

while i<10:

    print i

    i=i+40 

0

i=50

while i>40:

    i=i+10

    print i

    

0

i=50

while i<40

    print i

    i=i+10

0
Should have chosen
Question 18

10 - 10 % 11 <= (10 -10) % 10

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

10 - 10 % 11 <= (10 -10) % 10 ή 10 - 10 <= 0 % 10 ή 0 <= 0 ή True

Question 19

str(1)+str(1)

Score: 1 of 1
Your answerChoiceScoreFeedbackCorrect answer

'2'

0
Selected

'11'

1
Should have chosen
Question 20

Μετατρέψτε την for σε ισοδύναμη while

for i in range(10,5,-5):

    print i

Score: 1 of 1
Your answerChoiceScoreFeedbackCorrect answer
Selected

i=10

while i>5:

    print i

    i=i-5

1

Σωστά

Should have chosen

i=10

while i<5:

    print i

    i=i-5 

    

0

i=10

while i>5:

    i=i-5 

    print i

    

0

i=10

while i>5:

    print i

    i=i+5 

0
Question 21

Τι θα εμφανίσει, αν ο χρήστης πληκτρολογήσει τον αριθμό -5;

a=input(' Δώσε αριθμό')

for i in range(a):

     print i 

Score: 0 of 1
Your answerChoiceScoreFeedbackCorrect answer

τίποτα

0

Τι θα εμφανίσει, αν ο χρήστης πληκτρολογήσει τον αριθμό -5;

a=input(' Δώσε αριθμό')

for i in range(a):

     print i 

Δε θα γίνει καμιά επανάληψη

Διάβασε τη λειτουργία της for

Should have chosen

-1, -2 ,-3, -4, -5

0
Selected

-5, -4, -3, -2, -1

0
Question 22

import random

a=random.randint(1,3)

print a

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

Score: 0 of 1
Your answerChoiceScoreFeedbackCorrect answer

1 ή 2 ή 3

0
Should have chosen

1 ή 3

0

random.randint(1,3) # θα εμφανίσει ακέραιο από το 1 έως ΚΑΙ το 3

Selected

1 ή 2

0
Question 23

η εντολή random.randrange(2,6) θα εμφανίσει ακέραιο __________________

Score: 0 of 1
Your answerChoiceScoreFeedbackCorrect answer

το 2 ή το 5

0

το 2 ή το 6

0

από το 2 έως ΚΑΙ το 5

0

από το 2 έως ΚΑΙ το 5, γιατί η randrange() λειτουργεί όπως η range()

Should have chosen
Selected

από το 2 έως ΚΑΙ το 6

0
Question 24

12//7

Score: 1 of 1
Your answerChoiceScoreFeedbackCorrect answer
Selected

1

1

Σωστά σκέφτηκες, αφού έχουμε ακέραιο πηλίκο

Should have chosen

1.71

0
Question 25

site=raw_input('Δώσε μια ελληνική ιστοσελίδα')
while site[ _ ]+site[ _ ]+site[ _ ] != '.gr'
    site=raw_input('Λάθος ξαναδώσε την ιστοσελίδα') 
Γράψτε μόνο τους αριθμούς που θα συμπληρώσετε στις αγκύλες, χωρίς να αφήσετε κενά ανάμεσά τους
Score: 0 of 1
Your answerScoreFeedbackCorrect answer
230-3-2-1