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

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

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

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

print daysofweek[6]

Score: 0 of 1
Your answerChoiceScoreFeedbackCorrect answer

Σάββατο

0

Κυριακή

0
Should have chosen
Selected

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

0
Question 2

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

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 3

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

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

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

"a" not in "Python"

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

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

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 6

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

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

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

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, 34]

0
Should have chosen

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

0
Question 8

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

vowels='aeiou'

for letter in vowels:

    print letter

Score: 1 of 1
Your answerChoiceScoreFeedbackCorrect answer

u

o

i

e

a

0
Selected

a

e

i

o

u

1

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

Should have chosen

aeiou

0
Question 9

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

print range(1, 1, 100)

 

Score: 1 of 1
Your answerChoiceScoreFeedbackCorrect answer
Selected

[]

1
Should have chosen

[1]

0

[1, 101]

0
Question 10

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

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 11

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

list3 = []

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

        list3 = list3 + [i]
 

Score: 0 of 1
Your answerChoiceScoreFeedbackCorrect answer
Selected

range(0, 1000, 3)

0

range(3, 1000, 3)

0
Should have chosen

range(3, 999, 3)

0
Question 12

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

powers = [2, 4, 8, 16]

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

print fib + powers

 

Score: 0 of 1
Your answerChoiceScoreFeedbackCorrect answer

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

0

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

0
Should have chosen
Selected

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

0
Question 13

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

w='MONTY PYTHON'

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

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

Score: 0 of 1
Your answerScoreFeedbackCorrect answer
MNT0MONT

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

Question 14

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

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

mylist = []

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

while n >= 0:

        __________________________

        n = input(' Δώσε επόμενο αριθμό')

for number in mylist:

        print number

Score: 1 of 1
Your answerChoiceScoreFeedbackCorrect answer

mylist.append(n)

0
Selected

mylist = [n] + mylist

1
Should have chosen

mylist =  mylist +[n]

0
Question 15

100 not in range(1, 10)
 

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

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

def vowels(word):

        vowels = 'AEIOUaeiou'

        word_vowels=''

        for letter in word:

                if letter in vowels:

                       word_vowels + = letter

        return word_vowels

Score: 1 of 1
Your answerChoiceScoreFeedbackCorrect answer

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

0

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

0
Selected

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

1
Should have chosen

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

0
Question 17

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

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

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

Question 18

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

alphabet='ABCDEFGHIJKLMNOPQRSTUVWXYZ'

cipherAlphabet = alphabet[3: ] + alphabet[ :3]

print cipherAlphabet

Score: 1 of 1
Your answerChoiceScoreFeedbackCorrect answer
Selected

DEFGHIJKLMNOPQRSTUVWXYZΑΒC

1
Should have chosen

EFGHIJKLMNOPQRSTUVWXYZABCD

0

CDEFGHIJKLMNOPQRSTUVWXYZAB

0
Question 19

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

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

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

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
Selected

learning

1
Should have chosen

8

0

Python

0

OLE

0
Question 21

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

word = 'zanneio gymnasio'

print word[:]

Score: 1 of 1
Your answerChoiceScoreFeedbackCorrect answer
Selected

zanneio gymnasio

1
Should have chosen

κενό

0

zanneio

0
Question 22

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

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

fib = fibonacci[:]

a = fib

a.pop()

print a, fib
 

Score: 0 of 1
Your answerChoiceScoreFeedbackCorrect answer
Selected

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

0

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

0

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

0
Should have chosen

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

0
Question 23

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

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

print str(123)+'123'

Score: 1 of 1
Your answerScoreFeedbackCorrect answer
1231231123123

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

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

Question 24

Τι θα εμφανίσει το παρακάτω πρόγραμμα αν ο χρήστης δώσει την τιμή 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

10

0

21

0
Selected

15

1
Should have chosen
Question 25

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

word = 'zanneio gymnasio'

print word[0:len(word)]

Score: 1 of 1
Your answerChoiceScoreFeedbackCorrect answer
Selected

zanneio gymnasio

1
Should have chosen

zo

0

zanneio

0

gymnasio

0