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

You got 15 of 25 possible points.
Your score: 60%
Question 1

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

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 2

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

print range(1, 2, 100)

   

Score: 0 of 1
Your answerChoiceScoreFeedbackCorrect answer

[1, 101]
 

0
Selected

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

0

[1]

0
Should have chosen
Question 3

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

word = 'zanneio gymnasio'

print word[8:]

Score: 0 of 1
Your answerChoiceScoreFeedbackCorrect answer
Selected

zanneio

0

gymnasio

0
Should have chosen

ymnasio

0
Question 4

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

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

print 123+'123'

Score: 1 of 1
Your answerChoiceScoreFeedbackCorrect answer

246

0

123123

0
Selected

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

1

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

Should have chosen
Question 5

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

def count_vowels(word):

        vowels = 'AEIOUaeiou'

        count = 0

        for letter in word:

                if letter in vowels:

                       count + = 1

        return count

Score: 1 of 1
Your answerChoiceScoreFeedbackCorrect answer

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

0

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

0

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

0
Selected

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

1
Should have chosen
Question 6

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

word = 'zanneio gymnasio'

print word[0:7]

Score: 1 of 1
Your answerChoiceScoreFeedbackCorrect answer

gymnasio

0
Selected

zanneio

1
Should have chosen

z
 

0
Question 7

Οι λίστες στην Python, έχουν σταθερό μήκος, δηλαδή δε μπορεί το μέγεθός τους να αλλάξει
 

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

Οι λίστες στην Python δεν έσουν σταθερό μήκος, δηλαδή μπορούν να αυξάνονται και να μειώνονται κατά την εκτέλεση του προγράμματος

Question 8

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

x = [21, 23, 25,27]

y = [5, 6, 7, 8]

a = [x, y]

print a[1][2]

Score: 0 of 1
Your answerChoiceScoreFeedbackCorrect answer

7

0
Should have chosen

25

0
Selected

23

0

6

0
Question 9

Αν δώσουμε τη λέξη 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
Selected

True

1
Should have chosen

False

0

madam
 

0
Question 10

Θα εμφανίσει  5

word = 'PYTHON'

print len(word)

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

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

x = [21, 23, 25, 27]

y = [5, 6, 7, 8]

z = x + y

print z

Score: 1 of 1
Your answerChoiceScoreFeedbackCorrect answer
Selected

[21, 23, 25, 27, 5, 6, 7, 8]

1
Should have chosen

[21, 23, 25, 27,[5, 6, 7, 8]]

0

[21, 23, 25, 27], 5, 6, 7, 8]]

0
Question 12

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

def maxLength(wordList):

        maxLen = 0

        maxWord = ''

        for word in wordList:

                if len(word) > maxLen:

                        maxLen = len(word)

                        maxWord = word

        return maxWord

L=['I', 'am', 'learning', 'Python', 'OLE']

print maxLength(L)

Score: 1 of 1
Your answerChoiceScoreFeedbackCorrect answer

OLE

0
Selected

learning

1
Should have chosen

Python

0

8

0
Question 13

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

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

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

print daysofweek

Score: 1 of 1
Your answerChoiceScoreFeedbackCorrect answer

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

0

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

0
Selected

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

1
Should have chosen
Question 14

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

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

print daysofweek[0] + daysofweek[4]

Score: 1 of 1
Your answerChoiceScoreFeedbackCorrect answer

ΔΕΥΤΕΡΑΠΑΡΑΣΚΕΥΗ

0

ΔευτέραΠέμπτη

0
Selected

ΔευτέραΠαρασκευή

1
Should have chosen
Question 15

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

fruits = ['apple', 'juice']

print len(fruits)

Score: 0 of 1
Your answerChoiceScoreFeedbackCorrect answer

2

0
Should have chosen

10

0
Selected

1

0
Question 16

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

word = 'zanneio gymnasio'

print word[3:11]

Score: 0 of 1
Your answerChoiceScoreFeedbackCorrect answer

neio gym

0
Should have chosen

nneio gym

0
Selected

neio gymn

0
Question 17

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

fruits = ['apple', 'juice']

print fruits[0]

Score: 1 of 1
Your answerChoiceScoreFeedbackCorrect answer

juice

0

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

0

5

0
Selected

apple

1
Should have chosen
Question 18

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

alphabet='ABCDEFGHIJKLMNOPQRSTUVWXYZ'

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

print cipherAlphabet

Score: 0 of 1
Your answerChoiceScoreFeedbackCorrect answer

CDEFGHIJKLMNOPQRSTUVWXYZAB

0
Selected

EFGHIJKLMNOPQRSTUVWXYZABCD

0

DEFGHIJKLMNOPQRSTUVWXYZΑΒC

0
Should have chosen
Question 19

Επιλέξτε τη σωστή 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 20

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

fruits = ['apple', 'juice']

print 'apple' in fruits

Score: 1 of 1
Your answerChoiceScoreFeedbackCorrect answer

0

0

1

0
Selected

True

1
Should have chosen

False

0
Question 21

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

"Py" in "Python"
 

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

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

word = 'zanneio gymnasio'

print word[:7]
 

Score: 1 of 1
Your answerChoiceScoreFeedbackCorrect answer

zanneio g

0

gymnasio

0
Selected

zanneio

1
Should have chosen
Question 23

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

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

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

Question 24

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

'babylon5' > 'babylon4'

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

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

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

maximum = L[0]

for number in L:

        if number > maximum:

                maximum = number
print maximum

Score: 0 of 1
Your answerChoiceScoreFeedbackCorrect answer

33

0
Should have chosen
Selected

10

0

2

0