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

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

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

if a==3:

    print 'τρία'

else:

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

Score: 1 of 1
Your answerChoiceScoreCorrect answer
Selected

if a==3:

    print 'τρία'

if a<3 or a>3:

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

1
Should have chosen

if a==3:

    print 'τρία'

if a>3:

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

0

if a==3:

    print 'τρία'

if a<3 and a>3:

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

0
Question 2

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

if a<10:

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

if a>=10:

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

Score: 1 of 1
Your answerChoiceScoreCorrect answer

if a>=10:

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

else:

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

0
Selected

if a>=10:

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

 else:

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

1
Should have chosen

if a<10:

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

 else:

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

0
Question 3

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

if a>=10:

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

if a<10:

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

Score: 1 of 1
Your answerChoiceScoreCorrect answer
Selected

if a<10:

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

else:

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

1
Should have chosen

if a<=10:

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

else:

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

0

if a>10:

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

else:

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

0
Question 4

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

if p>5 and p<=10:

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

else:

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

Score: 1 of 1
Your answerChoiceScoreCorrect answer

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

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

else:

    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) and not (p>10):

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

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

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

0
Question 5

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

if vath>=1 and vath <=20:

    print 'δεκτή βαθμολογία'

else:

    print 'Δεν είναι δεκτός ο βαθμός'

Score: 1 of 1
Your answerChoiceScoreCorrect answer

if vath>=1 and vath <=20:

    print 'δεκτή βαθμολογία'

if vath<1 or not( vath>20):

    print 'Δεν είναι δεκτός ο βαθμός'

0
Selected

if vath>=1 and vath <=20:

    print 'δεκτή βαθμολογία'

if vath<1 or vath>20:

    print 'Δεν είναι δεκτός ο βαθμός'

1
Should have chosen

if vath>=1 and vath <=20:

    print 'δεκτή βαθμολογία'

if vath<1 and vath>20:

    print 'Δεν είναι δεκτός ο βαθμός'

0
Question 6

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

if a<=5:

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

else:

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

Score: 1 of 1
Your answerChoiceScoreCorrect answer
Selected

if a<=5:

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

if a>5:

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

1
Should have chosen

if a<=5:

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

if not(a>5):

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

0

if a<=5:

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

if a!=5:

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

0