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

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

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

'antonis' > 'antonia'

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

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

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

print 123+'123'

Score: 1 of 1
Your answerChoiceScoreFeedbackCorrect answer

246

0

123123

0
Selected

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

1

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

Should have chosen
Question 3

Οι λίστες στην Python δεν είναι δυναμικές δομές, όπως σε άλλες γλώσσες. Δηλαδή είναι αδύνατο να έχουν σε μία λίστα στοιχεία δαφορετικών τύπων δεδομένων

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

Tι θα εμφανιστεί αν εκτελεστεί το παρακάτω πρόγραμμα με τις συναρτήσεις (σε Python);

def num_of_Vowels(word):

         vowels= 'ΑΕΗΙΟΥΩαεηιουω'

        count = 0

        for letter in word:

                if letter in vowels:

                        count + = 1

        return count

def maxVowels(wordList):

        maxV = 0

        maxWord = ''

        for word in wordList:

                if num_of_Vowels(word) > maxV:

                        maxV = num_of_Vowels(word)

                       maxWord = word

        return maxWord

L = ['Θέλει', 'αρετή',' και', 'τόλμη', 'η', 'ελευθερία']

print maxVowels(L)

Score: 1 of 1
Your answerChoiceScoreFeedbackCorrect answer

τόλμη

0

αρετή

0
Selected

ελευθερία

1
Should have chosen

9

0
Question 5

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

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

print daysofweek[0] + daysofweek[4]

Score: 1 of 1
Your answerChoiceScoreFeedbackCorrect answer

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

0
Selected

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

1
Should have chosen

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

0
Question 6

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

Τι θα εμφανιστεί; Πληκτρολογήστε χωρίς τα εισαγωγικά

print str(123)+'123'

Score: 1 of 1
Your answerScoreFeedbackCorrect answer
1231231123123

str(123)+'123' => μετατροπή του 123 σε κείμενο +'123' =>'123+'123'=> ένωση δύο κειμένων =>'123123' άρα 123123

δες και Συμβολοσειρές

Question 7

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

madam
 

0

False

0
Question 8

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

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 9

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

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

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

Question 10

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

word = 'zanneio gymnasio'

print word[3:11]

Score: 0 of 1
Your answerChoiceScoreFeedbackCorrect answer
Selected

neio gymn

0

neio gym

0
Should have chosen

nneio gym

0
Question 11

Τι θα εμφανίσουν οι λίστες;

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

fib = fibonacci[:]

a = fib

a.pop()

fib.pop()

a[0] = a[1] = 55

print a

print fib

print fibonacci
 

Score: 1 of 1
Your answerChoiceScoreFeedbackCorrect answer
Selected

[55, 55, 13]

[55, 55, 13]

[5, 8, 13, 21, 34]

 

1
Should have chosen

[55, 55, 13]

[5, 8, 13]

[5, 8, 13, 21, 34]

 

0

[55, 55, 13, 21]

[5 ,8, 13, 21]

[5, 8, 13, 21, 34]

0
Question 12

Τι επιστρέφει η παρακάτω συνάρτηση στην 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
Selected

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

1
Should have chosen

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

0

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

0
Question 13

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

'1000' < '2'

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

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

w='MONTY PYTHON'

print len(w)

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

Score: 0 of 1
Your answerScoreFeedbackCorrect answer
13012

len(w) δείχνει το μήκος της συμβολοσειράς, που είναι 12 μαζί με το κενό!

Question 15

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

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

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

Question 16

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

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

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

Question 17

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

"Py" in "Python"
 

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

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

"a" not in "Python"

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

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

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

Python

0

OLE

0
Selected

learning

1
Should have chosen

8

0
Question 20

Τι θα εμφανίσουν οι λίστες;

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

fib = fibonacci[:]

a = fib

a.pop()

print a, fib
 

Score: 0 of 1
Your answerChoiceScoreFeedbackCorrect answer

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

0

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

0

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

0
Should have chosen
Selected

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

0
Question 21

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

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

abbcccc

0

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

0

a2b4c6

0
Selected

aabbbbcccccc

1
Should have chosen
Question 22

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

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

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

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

ch = ' '

for i in alist:

        ch + = i

print ch

Score: 0 of 1
Your answerChoiceScoreFeedbackCorrect answer

4

0

abcd

0
Should have chosen
Selected

a1b2c3d4

0
Question 24

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 25

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

print range(10, 30, 5)

 

Score: 1 of 1
Your answerChoiceScoreFeedbackCorrect answer

[10, 15, 20, 25, 30]

0

[15, 20, 25, 30]

0
Selected

[10, 15, 20, 25]

1
Should have chosen