Evaluation Python 2

Evaluation Python 2

12th Grade

14 Qs

quiz-placeholder

Similar activities

QCM 1 SMDSI

QCM 1 SMDSI

12th Grade

10 Qs

Quiz sur les notions de programmation et d'algorithme

Quiz sur les notions de programmation et d'algorithme

9th - 12th Grade

16 Qs

Réseaux 1

Réseaux 1

10th - 12th Grade

15 Qs

Excel

Excel

KG - Professional Development

9 Qs

STI2D_2I2D_I_Algorithmique_aollier

STI2D_2I2D_I_Algorithmique_aollier

9th - 12th Grade

10 Qs

The Internet: IP, DNS, Routing & DNS (English/French)

The Internet: IP, DNS, Routing & DNS (English/French)

9th - 12th Grade

10 Qs

Excel Tableau croisé dynamique ( niveau 8 )

Excel Tableau croisé dynamique ( niveau 8 )

1st - 12th Grade

11 Qs

It essential - chapitre 12

It essential - chapitre 12

12th Grade

13 Qs

Evaluation Python 2

Evaluation Python 2

Assessment

Quiz

Computers

12th Grade

Medium

Created by

Housem Boulmezaoud

Used 104+ times

FREE Resource

14 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Pour déclarer une variable α de type entier, on utiliser l'instruction

a == 4

a = 4

a = 4.0

a = '4'

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

L'instruction range(5) renvoie la liste

[0,1,2,3,4,5]

[0,1,2,3,4]

[1,2,3,4,5]

[1,2,3,4]

3.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

La suite d'instruction

mot = 'Baccalaureat'

for i in mot:

.....print(i)

Affiche une liste d'éléments de type int

Affiche une liste de mot

Affiche une liste de lettre

N'affiche rien

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Le mot réservé while, permet de définir

une variable

une boucle

un test

une fonction

5.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

La suite d'instruction:

n = 3

while n>4:

.....n = n +2

print(n)

affiche 0

ne affiche rien

affiche 3

affiche 5

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

n = -1

if n > 0:

.....print(False)

else:

.....print(True)

False

True

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Cette suite d'instructions est elle correctement écrite:

n = 3

if n > 2:

print('oui')

else :

......print('non')

Oui

Non

Create a free account and access millions of resources

Create resources
Host any resource
Get auto-graded reports
or continue with
Microsoft
Apple
Others
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?