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

You got 7 of 25 possible points.
Your score: 28%
Question 1

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

list3 = []

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

        list3 = list3 + [i]
 

Score: 1 of 1
Your answerChoiceScoreFeedbackCorrect answer

range(3, 999, 3)

0
Selected

range(3, 1000, 3)

1
Should have chosen

range(0, 1000, 3)

0
Question 2

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

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

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

Question 3

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

fruits = ['apple', 'juice']

print fruits[0]

Score: 0 of 1
Your answerChoiceScoreFeedbackCorrect answer

apple

0
Should have chosen

5

0
Selected

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

0

juice

0
Question 4

Tι θα εμφανιστεί αν εκτελεστεί το παρακάτω πρόγραμμα με τις συναρτήσεις (σε Python);

def num_of_Vowels(word):

        word = 'ΑΕΗΙΟΥΩαεηιουω'

        count = 0

        for letter in word:

                count + = 1

        return count

def maxVowels(wordList):

        maxV = 0

        maxWord = ''

        for word in wordList:

                if num_of_Vowels(word) > maxV:

                        maxV = num_of_Vowels(word)

                       maxWord = word

        return maxWord

L = ['Θέλει', 'αρετή',' και', 'τόλμη', 'η', 'ελευθερία']

print maxVowels(L)

Score: 0 of 1
Your answerChoiceScoreFeedbackCorrect answer

9

0

τόλμη

0
Selected

αρετή

0

ελευθερία

0
Should have chosen
Question 5

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

alphabet='ABCDEFGHIJKLMNOPQRSTUVWXYZ'

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

print cipherAlphabet

Score: 0 of 1
Your answerChoiceScoreFeedbackCorrect answer
Selected

EFGHIJKLMNOPQRSTUVWXYZABCD

0

DEFGHIJKLMNOPQRSTUVWXYZΑΒC

0
Should have chosen

CDEFGHIJKLMNOPQRSTUVWXYZAB

0
Question 6

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

def vowels(word):

        vowels = 'AEIOUaeiou'

        word_vowels=''

        for letter in word:

                if letter in vowels:

                       word_vowels + = letter

        return word_vowels

Score: 0 of 1
Your answerChoiceScoreFeedbackCorrect answer

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

0
Should have chosen

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

0
Selected

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

0

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

0
Question 7

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

x = [21, 23, 25, 27]

y = [5, 6, 7, 8]

z = x + y

print z

Score: 0 of 1
Your answerChoiceScoreFeedbackCorrect answer

[21, 23, 25, 27], 5, 6, 7, 8]]

0

[21, 23, 25, 27, 5, 6, 7, 8]

0
Should have chosen
Selected

[21, 23, 25, 27,[5, 6, 7, 8]]

0
Question 8

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

Score: 1 of 1
Your answerChoiceScoreFeedbackCorrect answer

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

0

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

0

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

0
Selected

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

1
Should have chosen
Question 9

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

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

print daysofweek[6]

Score: 1 of 1
Your answerChoiceScoreFeedbackCorrect answer

Σάββατο

0

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

0
Selected

Κυριακή

1
Should have chosen
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: 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 11

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

w='MONTY PYTHON'

print len(w)

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

Score: 0 of 1
Your answerScoreFeedbackCorrect answer
monty python012

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

Question 12

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

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

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

Question 13

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

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

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

print fib

 

Score: 0 of 1
Your answerChoiceScoreFeedbackCorrect answer

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

0
Should have chosen

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

0
Selected

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

0
Question 14

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

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

Τι θα επιστρέψει η παρακάτω συνάρτηση αν της στείλουμε δύο ταξινομημένες λίστες την Α=[3, 7, 9] και την Β=[1, 6, 11] ;

def merge(A,B):

        L = []

        while A != [] and B != []:

                if A[0] < B[0]:

                        L.append(A.pop(0))

                else:

                        L.append(B.pop(0))

        return L + A + B

Score: 0 of 1
Your answerChoiceScoreFeedbackCorrect answer

[1, 3, 6, 7, 9, 11]

0
Should have chosen
Selected

[3, 7, 9, 1, 6, 11]

0

[1, 3, 7, 9, 6, 11]

0
Question 16

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

"Py" in "Python"
 

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

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

print range(10, 30, 5)

 

Score: 0 of 1
Your answerChoiceScoreFeedbackCorrect answer

[10, 15, 20, 25, 30]

0

[10, 15, 20, 25]

0
Should have chosen
Selected

[15, 20, 25, 30]

0
Question 18

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

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

numberList = range(1, N + 1):

sum = 0

for number in numberList:

        sum + = number

print sum
 

Score: 0 of 1
Your answerChoiceScoreFeedbackCorrect answer

15

0
Should have chosen
Selected

21

0

10

0
Question 19

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

print range(1, 5, -1)

Score: 0 of 1
Your answerChoiceScoreFeedbackCorrect answer

[1]

0

[5, 4, 3, 2]

0
Selected

[1, 0, -1, -2, -3]

0

[]

0
Should have chosen
Question 20

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

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

[20, 7, 8, 1]

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

0
Should have chosen

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

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

0
Selected

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

[20, 7, 8, 1]

 

0
Question 21

Τι θα εμφανίσει ο παρακάτω κώδικας σε Python;

de trimSpaces(sentence):

        result = ''

        for char in sentence:

                if char != '':

                       result + = char

phrase = 'Καλή επιτυχία στις εξετάσεις'

print trimSpaces(phrase)

Score: 1 of 1
Your answerChoiceScoreFeedbackCorrect answer

Καλή Επιτυχία Στις Εξετάσεις

0

ΚΑΛΗ ΕΠΙΤΥΧΙΑ ΣΤΙΣ ΕΞΕΤΑΣΕΙΣ

0

'   ' τίποτα, δηλαδή τρία κενά

0
Selected

Καλήεπιτυχίαστιςεξετάσεις

1
Should have chosen
Question 22

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

word = 'zanneio gymnasio'

print word[:7]
 

Score: 1 of 1
Your answerChoiceScoreFeedbackCorrect answer

zanneio g

0

gymnasio

0
Selected

zanneio

1
Should have chosen
Question 23

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

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

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

Question 24

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

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

8

0

Python

0

learning

0
Should have chosen
Selected

OLE

0
Question 25

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

word = 'zanneio gymnasio'

print word[0:7]

Score: 0 of 1
Your answerChoiceScoreFeedbackCorrect answer
Selected

gymnasio

0

zanneio

0
Should have chosen

z
 

0