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

You got 20 of 25 possible points.
Your score: 80%
Question 1

Αν δώσουμε τη λέξη madam τι θα εμφανιστεί;

word = raw_input('Δώσε λέξη')

panindrome = True

N = len(word)

i = 0

while i < N/2 and palindrome:

        if word[i] != word[N-i-1]:

                palindrome = False

        i + = 1

print palindrome

Score: 1 of 1
Your answerChoiceScoreFeedbackCorrect answer

radar

0

False

0
Selected

True

1
Should have chosen

madam
 

0
Question 2

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

fib = [1, 1, 2, 3, 5, 8, 13, 21]

fib = fib +[34]

fib = [0] + fib

print fib

Score: 1 of 1
Your answerChoiceScoreFeedbackCorrect answer
Selected

[0, 1, 1, 2, 3, 5, 8, 13, 21, 34]

1
Should have chosen

[34, 1, 1, 2, 3, 5, 8, 13, 21, 0]

0

[1, 1, 2, 3, 5, 8, 13, 21, 34, 0]

0
Question 3

Ποια θα είναι η νέα λίστα;

fib = [5, 8, 13, 21, 34]

fib.pop(1)

fib.append(55)

fib.pop()

fib.insert(2, 89)

print fib
 

Score: 1 of 1
Your answerChoiceScoreFeedbackCorrect answer

[8, 89, 13, 21, 34]

0
Selected

[5, 13, 89, 21, 34]

1
Should have chosen

[5, 13, 89, 21, 55]

0
Question 4

Η αρίθμηση των χαρακτήρων από το τέλος, σε ένα αλφαρηθμιτικό  ξεκινάει από το 0

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

Η αρίθμηση των χαρακτήρων από το τέλος, σε ένα αλφαρηθμιτικό  ξεκινάει από το -1

Question 5

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

mix = [6, 3.14, True, 'Hi']

print len(mix)

Score: 0 of 1
Your answerChoiceScoreFeedbackCorrect answer

4 το σύνολο των στοιχείων

0
Should have chosen
Selected

Μήνυμα λάθους, αφού δε μπορεί να υπάρξει λίστα με αριθμούς, συμβολοσειρές, λογικές τιμές

0

11, το σύνολο όλων των  χαρακτήρων

0

2, το σύνολο όλων των αριθμών

0
Question 6

από το Τετράδιο Εργασιών Μαθητή

vowels='aeiou'

'p' not in vowels

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

vowels='aeiou'

'p' not in vowels => 'p' δεν υπάρχει στο vowels (στα φωνήεντα ) => σωστά, δεν υπάρχει =>True

Question 7

Ποια είναι η λογική τιμή της έκφρασης:

"Py" in "Python"
 

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

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

word = 'zanneio gymnasio'

print word[0:len(word)]

Score: 0 of 1
Your answerChoiceScoreFeedbackCorrect answer

gymnasio

0

zo

0
Selected

zanneio

0

zanneio gymnasio

0
Should have chosen
Question 9

Τι εμφανίζει;

alist = ['a', 'b', 'c', 'd']

ch = ' '

for i in alist:

        ch + = i

print ch

Score: 1 of 1
Your answerChoiceScoreFeedbackCorrect answer

a1b2c3d4

0

4

0
Selected

abcd

1
Should have chosen
Question 10

Ποια είναι η λογική τιμή της έκφρασης:

'babylon5' > 'babylon4'

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

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

print int('496') + 4

Score: 1 of 1
Your answerChoiceScoreFeedbackCorrect answer
Selected

500

1
Should have chosen

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

0

4964

0
Question 12

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

fib = [3, 5, 8, 13, 21]

fib = fib +[fib[3] + fib[4]]

print fib

 

Score: 0 of 1
Your answerChoiceScoreFeedbackCorrect answer
Selected

[3, 5, 8, 13, 21, 13, 21]

0

[3, 5, 8, 13, 21, 34]

0
Should have chosen

[3, 5, 8, 13, 21, [13, 21]]

0
Question 13

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

daysofweek = ['Δευτέρα', 'Τρίτη', 'Τετάρτη', 'Πέμπτη'] + ['Παρασκευή', 'Σάββατο', 'Κυριακή']

print daysofweek[6]

Score: 1 of 1
Your answerChoiceScoreFeedbackCorrect answer

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

0

Σάββατο

0
Selected

Κυριακή

1
Should have chosen
Question 14

Ποια είναι η if η οποία θα ελέγχει αν μια λέξη αρχίζει από μικρό η κεφαλαίο γράμμα Α;

Score: 0 of 1
Your answerChoiceScoreFeedbackCorrect answer
Selected

if word[-1] == 'A' or word[-1] == 'α':

0

if word[1] == 'A' or word[1] == 'α':

0

if word[0] == 'A' and word[0] == 'α':

0

if word[0] == 'A' or word[0] == 'α':

0
Should have chosen
Question 15

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

print range(30, 10, -5)
 

Score: 1 of 1
Your answerChoiceScoreFeedbackCorrect answer
Selected

[30, 25, 20, 15]

1
Should have chosen

[30, 20, 10, 0, -5]

0

[25, 20, 15, 10]

0
Question 16

Η συνάρτηση str μετατρέπει μια συμβολοσειρά σε ακέραιο αριθμό

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

Η συνάρτηση str μετατρέπει μια τιμή σε συμβολοσειρά

Question 17

Επιλέξτε τον ισοδύναμο κώδικα με τον παρακάτω:

L = [6, 28, 496, 8128]

for item in L:

        print item

 

Score: 1 of 1
Your answerChoiceScoreFeedbackCorrect answer

L = [6, 28, 496, 8128]

for index in [0, 1, 2, 3]:

        print index

0
Selected

L = [6, 28, 496, 8128]

for index in [0, 1, 2, 3]:

        print L[index]

1
Should have chosen

L = [6, 28, 496, 8128]

for index in [0, 1, 2, 3]:

        print L[i]

0
Question 18

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

word = "PYTHON"

print word[5] + word[0]

Score: 1 of 1
Your answerChoiceScoreFeedbackCorrect answer
Selected

NP

1
Should have chosen

PN

0

OP

0
Question 19

από το Τετράδιο Εργασιών Μαθητή

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

print 123+'123'

Score: 1 of 1
Your answerChoiceScoreFeedbackCorrect answer

123123

0

246

0
Selected

Εμφάνιση λάθους

1

Σωστά, 123+'123' => αριθμός+κείμενο =>σφάλμα

Should have chosen
Question 20

Τι θα εμφανίσει αν δοθεί η τιμή cost=31 και payment = 50

values = [100, 50, 20, 10, 5, 2, 1]

cost = input('Δώσε το κόστος των αγορών')

payment = input('Δώσε το κόστος της πληρωμής')

change = payment - cost

for value in values:

         print value, ' : ' , change / value

        change = change % value

Score: 1 of 1
Your answerChoiceScoreFeedbackCorrect answer

100 : 0

50 : 0

20 : 0

10 : 1

5 : 0

2 : 4

1 : 1

 

0
Selected

100 : 0

50 : 0

20 : 0

10 : 1

5 : 1

2 : 2

1 : 0

 

1
Should have chosen
Question 21

Η αρίθμηση των χαρακτήρων σε ένα αλφαρηθμιτικό ξεκινάει από το 0

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

Ο τελεστής + όταν εφαρμόζεται σε αντικείμενα τύπου string, έχει σαν αποτέλεσμα τη συνένωσή τους σε μια συμβολοσειρά

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

Επιλέξτε τη σωστή range, ώστε το παρακάτω πρόγραμμα να δημιουργεί μια λίστα με όλα τα θετικά πολλαπλάσια του 3 που είναι μικρότερα του 1000

list3 = []

for i in range( ___,  ____,  ____):

        list3 = list3 + [i]
 

Score: 1 of 1
Your answerChoiceScoreFeedbackCorrect answer

range(0, 1000, 3)

0
Selected

range(3, 1000, 3)

1
Should have chosen

range(3, 999, 3)

0
Question 24

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

alphabet='ABCDEFGHIJKLMNOPQRSTUVWXYZ'

cipherAlphabet = alphabet[3: ] + alphabet[ :3]

print cipherAlphabet

Score: 1 of 1
Your answerChoiceScoreFeedbackCorrect answer

CDEFGHIJKLMNOPQRSTUVWXYZAB

0

EFGHIJKLMNOPQRSTUVWXYZABCD

0
Selected

DEFGHIJKLMNOPQRSTUVWXYZΑΒC

1
Should have chosen
Question 25

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

print range(10, 30, 5)

 

Score: 1 of 1
Your answerChoiceScoreFeedbackCorrect answer

[15, 20, 25, 30]

0

[10, 15, 20, 25, 30]

0
Selected

[10, 15, 20, 25]

1
Should have chosen