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

You got 21 of 25 possible points.
Your score: 84%
Question 1

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

print range(1, 2, 100)

   

Score: 1 of 1
Your answerChoiceScoreFeedbackCorrect answer

[1, 101]
 

0

[1, 3, 5,   ...   ,97, 99]

0
Selected

[1]

1
Should have chosen
Question 2

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

'1000' < '2'

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

Κάθε αντικείμενο στη λίστα χαρακτηρίζεται από έναν μοναδικό αύξοντα αροθμό, οποίος ορίζει τη θέση του στη λίστα

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

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

word = 'zanneio gymnasio'

print word[:7]
 

Score: 1 of 1
Your answerChoiceScoreFeedbackCorrect answer

gymnasio

0

zanneio g

0
Selected

zanneio

1
Should have chosen
Question 5

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

powers = [2, 4, 8, 16]

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

print fib + powers

 

Score: 1 of 1
Your answerChoiceScoreFeedbackCorrect answer

[2, 4, 8, 16, 3, 5, 8, 13, 21]

0
Selected

[3, 5, 8, 13, 21, 2, 4, 8, 16]

1
Should have chosen

[3, 5, 8, 13, [21, 2, 4, 8, 16]]

0
Question 6

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

L = [ 10, 2, 33, 4, 33]

maximum = L[0]

for number in L:

        if number > maximum:

                maximum = number
print maximum

Score: 1 of 1
Your answerChoiceScoreFeedbackCorrect answer

10

0

2

0
Selected

33

1
Should have chosen
Question 7

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

fruits = ['apple', 'juice']

print fruits[0]

Score: 1 of 1
Your answerChoiceScoreFeedbackCorrect answer
Selected

apple

1
Should have chosen

Μήνυμα λάθους, δεν υπάρχει μηδενικό στοιχείο αφού όλα τα στοιχεία είναι δύο

0

5

0

juice

0
Question 8

Τι θα εμφανίσει αν δοθεί η τιμή 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 9

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

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

daysofweek = [''Κυριακή''] + daysofweek

print daysofweek

Score: 1 of 1
Your answerChoiceScoreFeedbackCorrect answer

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

0
Selected

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

1
Should have chosen

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

0
Question 10

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

x = [21, 23, 25,27]

y = [5, 6, 7, 8]

a = [x, y]

print a[1][2]

Score: 0 of 1
Your answerChoiceScoreFeedbackCorrect answer

6

0
Selected

25

0

7

0
Should have chosen

23

0
Question 11

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

w='MONTY PYTHON'

print w[0]+w[1]+w[2]+w[8]

τι θα εμφανίσεi ΜΕ ΛΑΤΙΝΙΚΟΥΣ ΧΑΡΑΚΤΗΡΕΣ;

Score: 1 of 1
Your answerScoreFeedbackCorrect answer
MONT1MONT

Δες τις συμβολοσειρές

Question 12

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

"Py" in "Python"
 

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

Η παρακάτω συνάρτηση δέχεται μια λέξη και υπολογίζει και επιστρέφει το πλήθος των κεφαλαίων αγγλικών γραμμάτων που έχει:

def countCapitals(word):

        enCapSet = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'

        countCapitals = 0

       for letter in word:

                ____________________

               countCapitals + = 1

        return countCapitals
 

Επιλέξτε την εντολή που λείπει

Score: 1 of 1
Your answerChoiceScoreFeedbackCorrect answer
Selected

if letter in enCapSet:
 

1
Should have chosen

if enCapSet in letter :

0

if letter not in enCapSet:
 

0

if letter == enCapSet:
 

0
Question 14

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

word = "PYTHON"

print word[5] + word[0]

Score: 1 of 1
Your answerChoiceScoreFeedbackCorrect answer

PN

0
Selected

NP

1
Should have chosen

OP

0
Question 15

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

print list('Python')
 

Score: 1 of 1
Your answerChoiceScoreFeedbackCorrect answer
Selected

['P', 'y', 't', 'h', 'o', 'n']

1
Should have chosen

6

0

['Python']

0
Question 16

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

word = 'zanneio gymnasio'

print word[:]

Score: 1 of 1
Your answerChoiceScoreFeedbackCorrect answer

κενό

0

zanneio

0
Selected

zanneio gymnasio

1
Should have chosen
Question 17

Τα αλφαρηθμιτικά ή συμβολοσειρές είναι ακολουθίες από χαρακτήρες που έχουν σταθερό μέγεθος και μη μεταβαλλόμενα περιεχόμενα

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

Επιλέξτε τη σωστή range ώστε να εμφανίζονται τα στοιχεία της λίστας L με αντίστροφη σειρά από αυτήν που είναι αποθηκευμένα

N = len(L)

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

        print L[i]
 

Score: 1 of 1
Your answerChoiceScoreFeedbackCorrect answer
Selected

for i in range(N-1, -1, -1):
 

1
Should have chosen

for i in range(N, -1, -1):

0

for i in range(N, 0, -1):

0

for i in range(N, -1, -1):

0
Question 19

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

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

print daysofweek[6]

Score: 1 of 1
Your answerChoiceScoreFeedbackCorrect answer

Σάββατο

0

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

0
Selected

Κυριακή

1
Should have chosen
Question 20

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

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

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

Question 21

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

Επιλέξτε την εντολή που είναι απαραίτητη (στο σημείο που λείπει) ώστε να εμφανιστούν με αντίστροφη σειρά από αυτήν που δόθηκαν

mylist = []

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

while n >= 0:

        __________________________

        n = input(' Δώσε επόμενο αριθμό')

for number in mylist:

        print number

Score: 0 of 1
Your answerChoiceScoreFeedbackCorrect answer

mylist = [n] + mylist

0
Should have chosen

mylist =  mylist +[n]

0
Selected

mylist.append(n)

0
Question 22

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

word = 'zanneio gymnasio'

print word[0:len(word)]

Score: 1 of 1
Your answerChoiceScoreFeedbackCorrect answer

zo

0

gymnasio

0
Selected

zanneio gymnasio

1
Should have chosen

zanneio

0
Question 23

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

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

print 123+int('123')

Score: 1 of 1
Your answerScoreFeedbackCorrect answer
2461246

123+int('123') => 123+μετατροπή κειμένου σε ακέραιο =>123+123=>246

Η συνάρτηση int('123') μετατρέπει το κείμενο αριθμών σε ακέραιο.

H int('Hi12') είναι λάθος αφού δεν είναι όλοι αριθμοί!

Question 24

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

L = [6, 28, 496, 8128]

for item in L:

        print item

 

Score: 0 of 1
Your answerChoiceScoreFeedbackCorrect answer

L = [6, 28, 496, 8128]

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

        print L[i]

0
Selected

L = [6, 28, 496, 8128]

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

        print index

0

L = [6, 28, 496, 8128]

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

        print L[index]

0
Should have chosen
Question 25

Η συνάρτηση len επιστρέφει την συμβολοσειρά με κεφαλαία γράμματα

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

H συνάρτηση len επιστρέφει το μήκος, δηλαδή το πλήθος των χαρακτήρων του αλφαρηθμιτικού