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

You got 12 of 25 possible points.
Your score: 48%
Question 1

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

print int('496') + 4

Score: 1 of 1
Your answerChoiceScoreFeedbackCorrect answer

4964

0

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

0
Selected

500

1
Should have chosen
Question 2

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

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

fib = fibonacci[:]

a = fib

a.pop()

print a, fib
 

Score: 1 of 1
Your answerChoiceScoreFeedbackCorrect answer
Selected

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

1
Should have chosen

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

0

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

0

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

0
Question 3

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

w='MONTY PYTHON'

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

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

Score: 0 of 1
Your answerScoreFeedbackCorrect answer
MONH0MONT

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

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

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

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

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

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

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

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

[8, 89, 13, 21, 34]

0

[5, 13, 89, 21, 55]

0
Selected

[5, 13, 89, 21, 34]

1
Should have chosen
Question 8

Επιλέξτε τη σωστή while ώστε ο κώδικας ο οποίος διαβάζει λέξεις, να σταματά  να τις διαβάζει μόλις δοθεί μια λέξη που τελειώνει σε μικρό η κεφαλαίο ωμέγα

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

while _____________________________:

        word = raw_input('Δώσε επόμενη λέξη')

Score: 0 of 1
Your answerChoiceScoreFeedbackCorrect answer

while word[-1] != 'ω' and word[-1] != 'Ω':

0
Should have chosen
Selected

while word[-1] != 'ω' or word[-1] != 'Ω':

0

while word[-1] == 'ω' and word[-1] == 'Ω':

0
Question 9

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

word = 'zanneio gymnasio'

print word[:]

Score: 0 of 1
Your answerChoiceScoreFeedbackCorrect answer
Selected

zanneio

0

κενό

0

zanneio gymnasio

0
Should have chosen
Question 10

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

fruits = ['apple', 'juice']

print fruits[0]

Score: 1 of 1
Your answerChoiceScoreFeedbackCorrect answer

5

0

juice

0
Selected

apple

1
Should have chosen

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

0
Question 11

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

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 == enCapSet:
 

0

if letter not in enCapSet:
 

0
Question 12

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

powers = [2, 4, 8, 16]

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

print fib + powers

 

Score: 0 of 1
Your answerChoiceScoreFeedbackCorrect answer

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

0
Selected

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

0

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

0
Should have chosen
Question 13

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

'1000' < '2'

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

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

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

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

Question 15

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

print range(1, 1, 100)

 

Score: 1 of 1
Your answerChoiceScoreFeedbackCorrect answer

[1]

0
Selected

[]

1
Should have chosen

[1, 101]

0
Question 16

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

N = len(L)

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

        print L[i]
 

Score: 0 of 1
Your answerChoiceScoreFeedbackCorrect answer

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

0

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

0
Selected

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

0

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

0
Should have chosen
Question 17

Αν δώσουμε τη λέξη 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: 0 of 1
Your answerChoiceScoreFeedbackCorrect answer

True

0
Should have chosen

radar

0

madam
 

0
Selected

False

0
Question 18

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

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

print daysofweek[0] + daysofweek[4]

Score: 1 of 1
Your answerChoiceScoreFeedbackCorrect answer
Selected

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

1
Should have chosen

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

0

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

0
Question 19

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

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

ch = ' '

for i in alist:

        ch + = i

print ch

Score: 0 of 1
Your answerChoiceScoreFeedbackCorrect answer

4

0
Selected

a1b2c3d4

0

abcd

0
Should have chosen
Question 20

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

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

7

0
Should have chosen
Selected

23

0

25

0
Question 21

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

"Py" in "Python"
 

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

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

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

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

0
Selected

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

1
Should have chosen
Question 23

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

'antonis' > 'antonia'

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

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

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

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

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