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

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

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

print list('Python')
 

Score: 1 of 1
Your answerChoiceScoreFeedbackCorrect answer

['Python']

0
Selected

['P', 'y', 't', 'h', 'o', 'n']

1
Should have chosen

6

0
Question 2

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

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

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

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

print daysofweek[0] + daysofweek[4]

Score: 1 of 1
Your answerChoiceScoreFeedbackCorrect answer

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

0
Selected

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

1
Should have chosen

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

0
Question 4

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

numbers = [20, -4, 7, 8, -2, -6, 1, -10]

positives = []

negatives = []

for number in numbers:

        if number > 0:

                positive.append(number)

        else:

               negatives.append(number)

print positives

print negatives

Score: 1 of 1
Your answerChoiceScoreFeedbackCorrect answer
Selected

[20, 7, 8, 1]

[-4, -2, -6, -10]

1
Should have chosen

[-4, -2, -6, -10]

[20, 7, 8, 1]

 

0

[20, -4, 7, 8, -2, -6, 1, -10]

[20, -4, 7, 8, -2, -6, 1, -10]

0
Question 5

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

False

0

radar

0

madam
 

0

True

0
Should have chosen
Question 6

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

w='MONTY PYTHON'

print len(w)

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

Score: 1 of 1
Your answerScoreFeedbackCorrect answer
12112

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

Question 7

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

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

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

mix = [6, 3.14, True, 'Hi']

print len(mix)

Score: 1 of 1
Your answerChoiceScoreFeedbackCorrect answer
Selected

4 το σύνολο των στοιχείων

1
Should have chosen

2, το σύνολο όλων των αριθμών

0

Μήνυμα λάθους, αφού δε μπορεί να υπάρξει λίστα με αριθμούς, συμβολοσειρές, λογικές τιμές

0

11, το σύνολο όλων των  χαρακτήρων

0
Question 9

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

word = 'zanneio gymnasio'

print word[3:11]

Score: 0 of 1
Your answerChoiceScoreFeedbackCorrect answer
Selected

neio gymn

0

nneio gym

0

neio gym

0
Should have chosen
Question 10

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

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

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

Question 11

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

x = [21, 23, 25,27]

y = [5, 6, 7, 8]

a = [x, y]

print a[1][2]

Score: 1 of 1
Your answerChoiceScoreFeedbackCorrect answer

6

0

23

0
Selected

7

1
Should have chosen

25

0
Question 12

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

def splitLetters():

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

        for letter in word:

                print letter

Score: 1 of 1
Your answerChoiceScoreFeedbackCorrect answer

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

0

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

0
Selected

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

1
Should have chosen
Question 13

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

word = 'zanneio gymnasio'

print word[8:]

Score: 1 of 1
Your answerChoiceScoreFeedbackCorrect answer

ymnasio

0

zanneio

0
Selected

gymnasio

1
Should have chosen
Question 14

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

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

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

Question 15

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

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

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

print fib

 

Score: 0 of 1
Your answerChoiceScoreFeedbackCorrect answer
Selected

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

0

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

0

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

0
Should have chosen
Question 16

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

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: 0 of 1
Your answerChoiceScoreFeedbackCorrect answer
Selected

[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

[55, 55, 13]

[55, 55, 13]

[5, 8, 13, 21, 34]

 

0
Should have chosen
Question 17

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

'antonis' > 'antonia'

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

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

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

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

'babylon5' > 'babylon4'

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

100 not in range(1, 10)
 

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

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

w='MONTY PYTHON'

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

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

Score: 0 of 1
Your answerScoreFeedbackCorrect answer
MONY0MONT

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

Question 22

Με τη συνάρτηση int μπορούμε να μετατρέψουμε ένα αλφαριθμητικό στον ακέραιο αριθμό που αναπαριστά
 

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

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

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

print 123+'123'

Score: 1 of 1
Your answerChoiceScoreFeedbackCorrect answer

246

0
Selected

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

1

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

Should have chosen

123123

0
Question 24

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

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

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 25

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

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]

0

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

0

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

0