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

You got 18 of 25 possible points.
Your score: 72%
Question 1

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

word = "PYTHON"

print word[5] + word[0]

Score: 0 of 1
Your answerChoiceScoreFeedbackCorrect answer

PN

0
Selected

OP

0

NP

0
Should have chosen
Question 2

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

'antonis' > 'antonia'

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

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

word = 'zanneio gymnasio'

print word[:]

Score: 1 of 1
Your answerChoiceScoreFeedbackCorrect answer

κενό

0
Selected

zanneio gymnasio

1
Should have chosen

zanneio

0
Question 4

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

vowels='aeiou'

for letter in vowels:

    print letter

Score: 1 of 1
Your answerChoiceScoreFeedbackCorrect answer
Selected

a

e

i

o

u

1

Σωστά, για κάθε γράμμα στα φωνήεντα εμφάνισε το κάθε γράμμα, άρα το κάθε φωνήεν

Should have chosen

u

o

i

e

a

0

aeiou

0
Question 5

Τι θα εμφανίσει το παρακάτω πρόγραμμα αν ο χρήστης δώσει την τιμή N=5

Ν = input('Δώσε αριθμό')

numberList = range(1, N + 1):

sum = 0

for number in numberList:

        sum + = number

print sum
 

Score: 1 of 1
Your answerChoiceScoreFeedbackCorrect answer

21

0
Selected

15

1
Should have chosen

10

0
Question 6

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

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 7

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

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

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

[20, 7, 8, 1]

 

0
Selected

[20, 7, 8, 1]

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

1
Should have chosen

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

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

0
Question 8

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

w='MONTY PYTHON'

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

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

Score: 0 of 1
Your answerScoreFeedbackCorrect answer
MONY0MONT

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

Question 9

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

print str(28) == '28'

Score: 1 of 1
Your answerChoiceScoreFeedbackCorrect answer

False

0
Selected

True
 

1
Should have chosen

4

0

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

0
Question 10

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

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

[55, 55, 13]

[5, 8, 13]

[5, 8, 13, 21, 34]

 

0
Selected

[55, 55, 13]

[55, 55, 13]

[5, 8, 13, 21, 34]

 

1
Should have chosen

[55, 55, 13, 21]

[5 ,8, 13, 21]

[5, 8, 13, 21, 34]

0
Question 11

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

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

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

print range(30, 10, -5)
 

Score: 1 of 1
Your answerChoiceScoreFeedbackCorrect answer

[25, 20, 15, 10]

0

[30, 20, 10, 0, -5]

0
Selected

[30, 25, 20, 15]

1
Should have chosen
Question 13

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

w='MONTY PYTHON'

print 'PYTHON' in w
 

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

w='MONTY PYTHON'

print 'PYTHON' in w  δηλαδή το κείμενο 'PYTHON'  υπάρχει στη μεταβλητή τύπου str, w ; Υπάρχει, άρα True
 

Question 14

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

def count_vowels(word):

        vowels = 'AEIOUaeiou'

        count = 0

        for letter in word:

                if letter in vowels:

                       count + = 1

        return count

Score: 0 of 1
Your answerChoiceScoreFeedbackCorrect answer

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

0

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

0
Should have chosen
Selected

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

0

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

0
Question 15

Η συνάρτηση len επιστρέφει την συμβολοσειρά με κεφαλαία γράμματα

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

H συνάρτηση len επιστρέφει το μήκος, δηλαδή το πλήθος των χαρακτήρων του αλφαρηθμιτικού

Question 16

Επιλέξτε τον ισοδύναμο κώδικα με τον παρακάτω:

L = [6, 28, 496, 8128]

for item in L:

        print item

 

Score: 1 of 1
Your answerChoiceScoreFeedbackCorrect answer

L = [6, 28, 496, 8128]

for index in [0, 1, 2, 3]:

        print index

0
Selected

L = [6, 28, 496, 8128]

for index in [0, 1, 2, 3]:

        print L[index]

1
Should have chosen

L = [6, 28, 496, 8128]

for index in [0, 1, 2, 3]:

        print L[i]

0
Question 17

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

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

fib = fib +[34]

fib = [0] + fib

print fib

Score: 1 of 1
Your answerChoiceScoreFeedbackCorrect answer

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

0

[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
Question 18

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

print range(1, 1, 100)

 

Score: 0 of 1
Your answerChoiceScoreFeedbackCorrect answer
Selected

[1, 101]

0

[1]

0

[]

0
Should have chosen
Question 19

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

print range(10, 30, 5)

 

Score: 1 of 1
Your answerChoiceScoreFeedbackCorrect answer
Selected

[10, 15, 20, 25]

1
Should have chosen

[15, 20, 25, 30]

0

[10, 15, 20, 25, 30]

0
Question 20

Επιλέξτε τη σωστή range, ώστε το παρακάτω πρόγραμμα να δημιουργεί μια λίστα με όλα τα θετικά πολλαπλάσια του 3 που είναι μικρότερα του 1000

list3 = []

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

        list3 = list3 + [i]
 

Score: 0 of 1
Your answerChoiceScoreFeedbackCorrect answer

range(3, 999, 3)

0
Selected

range(0, 1000, 3)

0

range(3, 1000, 3)

0
Should have chosen
Question 21

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

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

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

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, 34] [5, 8, 13, 21]

0

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

0
Selected

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

1
Should have chosen
Question 23

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

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

print len(mix)

Score: 1 of 1
Your answerChoiceScoreFeedbackCorrect answer
Selected

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

1
Should have chosen

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

0

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

0

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

0
Question 24

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

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

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

Question 25

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

word = 'zanneio gymnasio'

print word[8:len(word)]
 

Score: 0 of 1
Your answerChoiceScoreFeedbackCorrect answer
Selected

g

0

gymnasio

0
Should have chosen

zanneio gymnasio

0

zanneio

0