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

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

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

L = ['a', 'b', 'c']

i = 0

s1 = ' '

for ch in L:

        i + = 2

        s1 = s1 + i * ch

print s1
 

Score: 1 of 1
Your answerChoiceScoreFeedbackCorrect answer
Selected

aabbbbcccccc

1
Should have chosen

a2b4c6

0

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

0

abbcccc

0
Question 2

Τι θα εμφανίσει το παρακάτω πρόγραμμα αν ο χρήστης δώσει την τιμή N=5

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

numberList = range(1, N + 1):

sum = 0

for number in numberList:

        sum + = number

print sum
 

Score: 1 of 1
Your answerChoiceScoreFeedbackCorrect answer

21

0
Selected

15

1
Should have chosen

10

0
Question 3

H λίστα πρέπει να έχει αντικείμενα του ίδιου τύπου δεδομένων

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

Η λίστα είναι μια διατεταγμένη ακολουθία αντικειμένων, όχι απαραίτητα του ίδιου τύπου

Question 4

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

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

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 5

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

word = 'zanneio gymnasio'

print word[:7]
 

Score: 1 of 1
Your answerChoiceScoreFeedbackCorrect answer
Selected

zanneio

1
Should have chosen

zanneio g

0

gymnasio

0
Question 6

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

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

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

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
Question 8

Τι θα εμφανίσει ο παρακάτω κώδικας σε Python;

de trimSpaces(sentence):

        result = ''

        for char in sentence:

                if char != '':

                       result + = char

phrase = 'Καλή επιτυχία στις εξετάσεις'

print trimSpaces(phrase)

Score: 0 of 1
Your answerChoiceScoreFeedbackCorrect answer
Selected

Καλή Επιτυχία Στις Εξετάσεις

0

ΚΑΛΗ ΕΠΙΤΥΧΙΑ ΣΤΙΣ ΕΞΕΤΑΣΕΙΣ

0

Καλήεπιτυχίαστιςεξετάσεις

0
Should have chosen

'   ' τίποτα, δηλαδή τρία κενά

0
Question 9

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

vowels='aeiou'

'e' in vowels

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

vowels='aeiou'

'e' in vowels   => 'e' υπάρχει στα vowels =>Υπάρχει =>True

 

Question 10

Τι επιστρέφει η παρακάτω συνάρτηση στην Python:

def vowels(word):

        vowels = 'AEIOUaeiou'

        word_vowels=''

        for letter in word:

                if letter in vowels:

                       word_vowels + = letter

        return word_vowels

Score: 0 of 1
Your answerChoiceScoreFeedbackCorrect answer

τη ίδια τη συμβολοσειρά χωρίς τα φωνήεντα

0

Τη συμβολοσειρά σε ΚΕΦΑΛΑΙΑ

0

την ίδια τη συμβολοσειρά μόνο με τα φωνήνετά της

0
Should have chosen
Selected

τον αριθμό φωνηέντων που έχει μια συμβολοσειρά
 

0
Question 11

100 not in range(1, 10)
 

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

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

'babylon5' > 'babylon4'

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

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

'1000' < '2'

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

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

L = [ 1, 2, 3, 4, 5]

sum = 0.0

for number in L:

        sum + = number

average = sum /len(L)

print average

Score: 1 of 1
Your answerChoiceScoreFeedbackCorrect answer

3.75

0

3

0
Selected

3.0

1
Should have chosen
Question 15

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

5 in fib

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

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

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

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

Question 17

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

fruits = ['apple', 'juice']

print 'apple' in fruits

Score: 1 of 1
Your answerChoiceScoreFeedbackCorrect answer

0

0

False

0
Selected

True

1
Should have chosen

1

0
Question 18

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

print int('496') + 4

Score: 0 of 1
Your answerChoiceScoreFeedbackCorrect answer
Selected

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

0

4964

0

500

0
Should have chosen
Question 19

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

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
Selected

[5, 13, 89, 21, 34]

1
Should have chosen

[5, 13, 89, 21, 55]

0

[8, 89, 13, 21, 34]

0
Question 20

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

word = 'zanneio gymnasio'

print word[8:]

Score: 1 of 1
Your answerChoiceScoreFeedbackCorrect answer

zanneio

0
Selected

gymnasio

1
Should have chosen

ymnasio

0
Question 21

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

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

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 L[index]

1
Should have chosen
Question 22

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

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

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

print fib

 

Score: 1 of 1
Your answerChoiceScoreFeedbackCorrect answer
Selected

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

1
Should have chosen

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

0

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

0
Question 23

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

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

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

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

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

def countCapitals(word):

        enCapSet = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'

        countCapitals = 0

       for letter in word:

                ____________________

               countCapitals + = 1

        return countCapitals
 

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

Score: 1 of 1
Your answerChoiceScoreFeedbackCorrect answer

if enCapSet in letter :

0

if letter == enCapSet:
 

0

if letter not in enCapSet:
 

0
Selected

if letter in enCapSet:
 

1
Should have chosen