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

You got 7 of 13 possible points.
Your score: 54%
Question 1

a='Python'
print 'nohtyP' not in a 
Score: 0 of 1
Your answerChoiceScoreCorrect answer
True0
Should have chosen
Selected
False0
Question 2

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

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

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

0
Should have chosen
Selected

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

0

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

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

0
Question 3

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

error
 

0

5

0
Selected

errorerrorerrorerrorerror

1
Should have chosen
Question 4

protasi='ΝΙΨΟΝ ΑΝΟΜΗΜΑΤΑ ΜΗ ΜΟΝΑΝ ΟΨΙΝ' 
protasi_no_space=''
for kathe_gramma in protasi:
    if kathe_gramma!=' ':
        protasi_no_space+=kathe_gramma
x=''
for kathe_gramma in protasi_no_space:
    x=kathe_gramma+x
if x==protasi_no_space:
    print 'καρκινική επιγραφή'
else:
    print 'δεν είναι καρκινική επιγραφή'
Τι θα εμφανίσει το παραπάνω πρόγραμμα;
Score: 1 of 1
Your answerChoiceScoreCorrect answer

τίπoτα
 

0

'δεν είναι καρκινική επιγραφή'

0

'ΝΙΨΟΝ ΑΝΟΜΗΜΑΤΑ ΜΗ ΜΟΝΑΝ ΟΨΙΝ'

0
Selected

'καρκινική επιγραφή'

1
Should have chosen
Question 5

Να γράψετε ένα πρόγραμμα το οποίο θα διαβάζει μια λέξη και θα ελέγχει αν είναι παλινδρομική (καρκινική), δηλαδή αν διαβάζεται το ίδιο και αντίστροφα, για παράδειγμα radar, madam. Συμπληρώστε την if word = raw_input('δώσε μια λέξη: ') palindrome = True
N = len(word)
i = 0
while i<N/2 and palindrome :
    if ______________ :
        palindrome = False
    i += 1
print palindrome
Score: 0 of 1
Your answerChoiceScoreCorrect answer

word[i] != word[N-i-1]

0
Should have chosen

word[i] != word[N + i +1]

0
Selected

word[i] == word[N-i-1]

0
Question 6

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

email[len(email)-3:]

1
Should have chosen

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

0

email[0:3]

0
Question 7

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

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

Question 8

pinakida='XYZ1234' 
print 'xyz' in pinakida
Score: 1 of 1
Your answerChoiceScoreCorrect answer
True0
Selected
False1
Should have chosen
Question 9

a='Συμβολοσειρές' 
print 'σειρές' in a
Score: 1 of 1
Your answerChoiceScoreCorrect answer
Selected
True1
Should have chosen
False0
Question 10

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 11

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

True

0
Selected

3

1
Should have chosen

'η'

0

4

0
Question 12

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

Να γράψετε ένα πρόγραμμα το οποίο θα διαβάζει λέξεις από το πληκτρολόγιο, θα μετράει και θα εμφανίζει πόσες λέξεις ξεκινούν από το γράμμα Α (κεφαλαίο ή μικρό). Όταν δοθεί λέξη που να τελειώνει σε «Ω» ή «ω», τότε το πρόγραμμα θα τερματίζει
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

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

0
Should have chosen
Selected

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

0

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

0