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

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

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

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

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

print daysofweek

Score: 1 of 1
Your answerChoiceScoreFeedbackCorrect answer

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

0
Selected

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

1
Should have chosen

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

0
Question 2

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

Score: 1 of 1
Your answerChoiceScoreFeedbackCorrect answer

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

0

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

0
Selected

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

1
Should have chosen

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

0
Question 3

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

False

0

radar

0

madam
 

0
Selected

True

1
Should have chosen
Question 4

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

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 5

Τι υπολογίζει η παρακάτω συνάρτηση;

def splitLetters():

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

        for letter in word:

                print letter

Score: 1 of 1
Your answerChoiceScoreFeedbackCorrect answer
Selected

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

1
Should have chosen

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

0

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

0
Question 6

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

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

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

0

a2b4c6

0
Selected

aabbbbcccccc

1
Should have chosen

abbcccc

0
Question 7

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

word = 'zanneio gymnasio'

print word[8:]

Score: 0 of 1
Your answerChoiceScoreFeedbackCorrect answer

gymnasio

0
Should have chosen

zanneio

0
Selected

ymnasio

0
Question 8

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

word = 'zanneio gymnasio'

print word[0:7]

Score: 1 of 1
Your answerChoiceScoreFeedbackCorrect answer
Selected

zanneio

1
Should have chosen

gymnasio

0

z
 

0
Question 9

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

w='MONTY PYTHON'

print len(w)

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

Score: 0 of 1
Your answerScoreFeedbackCorrect answer
11012

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

Question 10

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

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

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

'antonis' > 'antonia'

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

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

word = 'PYTHON'

print len(word)

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

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

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

2

0

10

0
Selected

33

1
Should have chosen
Question 14

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

'1000' < '2'

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

100 not in range(1, 10)
 

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

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

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

print daysofweek[0] + daysofweek[4]

Score: 1 of 1
Your answerChoiceScoreFeedbackCorrect answer

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

0
Selected

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

1
Should have chosen

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

0
Question 17

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

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

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 18

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

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

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

print fib

 

Score: 1 of 1
Your answerChoiceScoreFeedbackCorrect answer

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

0

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

0
Selected

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

1
Should have chosen
Question 19

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

print str(28) == '28'

Score: 1 of 1
Your answerChoiceScoreFeedbackCorrect answer

False

0

4

0

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

0
Selected

True
 

1
Should have chosen
Question 20

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

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

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

print daysofweek

Score: 1 of 1
Your answerChoiceScoreFeedbackCorrect answer
Selected

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

1
Should have chosen

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

0

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

0
Question 21

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

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

fib = fibonacci[:]

a = fib

a.pop()

print a, fib
 

Score: 1 of 1
Your answerChoiceScoreFeedbackCorrect answer

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

0

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

0

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

0
Selected

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

1
Should have chosen
Question 22

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

'babylon5' > 'babylon4'

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

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

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

fib = fib +[34]

fib = [0] + fib

print fib

Score: 1 of 1
Your answerChoiceScoreFeedbackCorrect answer

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

0
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
Question 24

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

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
Selected

3.0

1
Should have chosen

3

0
Question 25

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

"Py" in "Python"
 

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