Συμβολοσειρές παραδείγματα

You got 9 of 13 possible points.
Your score: 69%
Question 1

a='Καλή'
b='μέρα' 
c=a+b
print 'Καλημέρα' in c
Score: 1 of 1
Your answerChoiceScoreCorrect answer
True0
Selected
False1
Should have chosen

c='Καλήμέρα' και όχι 'Καλημέρα'

Question 2

Να γράψετε ένα πρόγραμμα το οποίο θα διαβάζει λέξεις από το πληκτρολόγιο, θα μετράει και θα εμφανίζει πόσες λέξεις ξεκινούν από το γράμμα Α (κεφαλαίο ή μικρό). Όταν δοθεί λέξη που να τελειώνει σε «Ω» ή «ω», τότε το πρόγραμμα θα τερματίζει
count = 0
word = raw_input( 'δώσε μια λέξη: ' ) 
while _______________________:
    if word[0] == 'Α' or word[0] == 'α' :
        count+=1
    word = raw_input('δώσε μια λέξη: ')
print count
Score: 0 of 1
Your answerChoiceScoreCorrect answer
Selected

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

0

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

0
Should have chosen

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

0
Question 3

site=raw_input('Δώσε μια ελληνική ιστοσελίδα')
while site[ _ ]+site[ _ ]+site[ _ ] != '.gr'
    site=raw_input('Λάθος ξαναδώσε την ιστοσελίδα') 
Γράψτε μόνο τους αριθμούς που θα συμπληρώσετε στις αγκύλες, χωρίς να αφήσετε κενά ανάμεσά τους
Score: 0 of 1
Your answerScoreCorrect answer
-3,-2,-10-3-2-1
Question 4

a='ΕΠΑΛ'
b=a[0]+a[3]+a[2]+a[1]
if a==b:
    print 'True' 
else:
    print 'False'
Score: 1 of 1
Your answerChoiceScoreCorrect answer
True0
Selected
False1
Should have chosen
Question 5

day='Monday' 
month='January'
date=day+month
print 'yy' in date
Score: 1 of 1
Your answerChoiceScoreCorrect answer
True0
Selected
False1
Should have chosen
Question 6

Τι θα εμφανίσει το παρακάτω τμήμα κώδικα;
a='Καλημέρα'
for i in range(len(a)): 
    if  'η' == a[i]:
        print i
Score: 1 of 1
Your answerChoiceScoreCorrect answer

'η'

0
Selected

3

1
Should have chosen

4

0

True

0
Question 7

Τι θα εμφανίσει;
a='Hello kids'
print ('H' in a) and ('KIDS' not in a) 
Score: 1 of 1
Your answerChoiceScoreCorrect answer
Selected
True1
Should have chosen
False0

print ('H' in a) and ('KIDS' not in a)

άρα True and not(False) = True and True = True

ή πιο απλά: το 'H' υπάρχει στο a ΚΑΙ(and) το 'KIDS' δεν υπάρχει στο a, άρα ισχύουν KAI (and) τα δύο άρα True

Question 8

email=raw_input('Δώσε το email σου')
katalixi= ___________
if katalixi=='.gr':
    print 'Ελληνικό email' 
Ti πρέπει να συμπληρωθεί στο κενό, για να εμφανιστεί 'Ελληνικό email'
Score: 0 of 1
Your answerChoiceScoreCorrect answer

email[0:3]

0
Selected

email[-1]+email[-2]+email[-3]

0

email[len(email)-3:]

0
Should have chosen
Question 9

a='error'
print len(a)*a
Τι θα εμφανίσει;
Score: 1 of 1
Your answerChoiceScoreCorrect answer

5

0
Selected

errorerrorerrorerrorerror

1
Should have chosen

error
 

0
Question 10

a='Καλή μελέτη' 
b=''
for i in range(4):
    b=b+a[i]
print b
Τι θα εμφανιστεί;
Score: 1 of 1
Your answerChoiceScoreCorrect answer

'καλ'

0
Selected

'καλή'
 

1
Should have chosen

'ηλάκ'

0

'μελέτη'

0
Question 11

a=5 
b=7
c=str(a)+str(b)
if c>'6':
    print 'True'
else:
    print 'False'
Score: 0 of 1
Your answerChoiceScoreCorrect answer
Selected
True0
False0
Should have chosen
Question 12

a='Python'
print a[4]+a[5]
τι θα εμφανίσει η εντολή
Score: 1 of 1
Your answerChoiceScoreCorrect answer

'off'

0

'ho'

0
Selected

'on'

1
Should have chosen
Question 13

Τι θα εμφανίσει το b και τι το c;
a='ΗΣΗΘΑΜ'
b=''
c=''
for i in a:
    b=b+i
    c=i+c
print b,c
Score: 1 of 1
Your answerChoiceScoreCorrect answer

το b θα εμφανίσει:ΜΑΘΗΣΗ

και το a: ΗΣΗΘΑΜ

0

και τα δύο θα εμφανίσουν ΜΑΘΗΣΗ

0
Selected

το b θα εμφανίσει: ΗΣΗΘΑΜ

και το c: ΜΑΘΗΣΗ

1
Should have chosen