Σύνθετη σε απλή

You got 4 of 6 possible points.
Your score: 67%
Question 1

Ποιος κώδικας βελτιώνει το παρακάτω :

if a<5 or a>22:

    print 'κάτω από 5 ή πάνω από 22'

if a>=5 and a<=22:

    print 'ανάμεσα στο 5 και στο 22'

Score: 1 of 1
Your answerChoiceScoreCorrect answer
Selected

if a>=5 and a<=22:

    print 'ανάμεσα στο 5 και στο 22'

else:

     print 'κάτω από 5 ή πάνω από 22'

    

1
Should have chosen

if a<5 or a>22:

    print 'ανάμεσα στο 5 και στο 22'

else:

     print 'κάτω από 5 ή πάνω από 22'

0

if a>=5 and a<=22:

    print 'κάτω από 5 ή πάνω από 22'

else:

    print 'ανάμεσα στο 5 και στο 22'

0
Question 2

Ποιος κώδικας είναι ισοδύναμος με τον παρακάτω κώδικα:

if a<=5:

    print 'από πέντε και κάτω'

else:

    print 'βρες τη λύση'

Score: 1 of 1
Your answerChoiceScoreCorrect answer

if a<=5:

    print 'από πέντε και κάτω'

if not(a>5):

    print 'βρες τη λύση'

0
Selected

if a<=5:

    print 'από πέντε και κάτω'

if a>5:

    print 'βρες τη λύση'

1
Should have chosen

if a<=5:

    print 'από πέντε και κάτω'

if a!=5:

    print 'βρες τη λύση'

0
Question 3

Να μετατραπεί η σύνθετη δομή επιλογής σε απλή:

if a>0:

    print 'Θετικός'

else:

    print ' Δεν είναι θετικός'

 

Score: 0 of 1
Your answerChoiceScoreCorrect answer

if a>0:

    print 'Θετικός'

if a<=0:

    print ' Δεν είναι θετικός'

0
Should have chosen

if a>0:

    print 'Θετικός'

if a<0:

    print ' Δεν είναι θετικός'

0
Selected

if a>0:

    print 'Θετικός'

if a=0:

    print ' Δεν είναι θετικός'

0
Question 4

Να μετατραπεί η σε ισοδύναμο κώδικα, ο παρακάτω:

if a<10:

    print 'κάτω από δέκα'

if a>=10:

    print ' δέκα και πάνω'

Score: 1 of 1
Your answerChoiceScoreCorrect answer

if a<10:

    print ' δέκα και πάνω'

 else:

    print 'κάτω από δέκα'

0

if a>=10:

    print 'κάτω από δέκα'

else:

    print ' δέκα και πάνω'

0
Selected

if a>=10:

    print ' δέκα και πάνω'

 else:

    print 'κάτω από δέκα'

1
Should have chosen
Question 5

Ποιος κώδικας είναι ισοδύναμος με τον παρακάτω κώδικα:

if a==3:

    print 'τρία'

else:

    print 'Δεν είναι τρία'

Score: 0 of 1
Your answerChoiceScoreCorrect answer

if a==3:

    print 'τρία'

if a<3 or a>3:

    print 'Δεν είναι τρία'

0
Should have chosen
Selected

if a==3:

    print 'τρία'

if a>3:

    print 'Δεν είναι τρία'

0

if a==3:

    print 'τρία'

if a<3 and a>3:

    print 'Δεν είναι τρία'

0
Question 6

Ποιος κώδικας είναι ισοδύναμος με τον παρακάτω κώδικα:

if p>5 and p<=10:

    print 'πάνω από 5 έως και 10'

else:

    print 'Δε σου λέω, να το βρεις :-)'

Score: 1 of 1
Your answerChoiceScoreCorrect answer

if not(p<=5) and not (p>10):

    print 'πάνω από 5 έως και 10'

if not(p>5) or p<10:

    print 'Δε σου λέω, να το βρεις :-)'

0
Selected

if p<=5 or p>10:

    prnt 'Δε σου λέω, να το βρεις :-)'

if p>5 and not(p>10):

    print 'πάνω από 5 έως και 10'

1
Should have chosen

if not(p<=5) or p<=10:

    print 'πάνω από 5 έως και 10'

else:

    print 'Δε σου λέω, να το βρεις :-)'

0