Quiz sobre Estruturas Condicionais

Quiz sobre Estruturas Condicionais

10th Grade

30 Qs

quiz-placeholder

Similar activities

Python Quiz II

Python Quiz II

9th Grade - University

30 Qs

Beginner Python KS3 Revision

Beginner Python KS3 Revision

8th - 10th Grade

26 Qs

Understanding Input, Selection and Loops in Python

Understanding Input, Selection and Loops in Python

7th Grade - University

25 Qs

KIỂM TRA CUỐI KỲ I LỚP 10C4

KIỂM TRA CUỐI KỲ I LỚP 10C4

10th Grade

25 Qs

Python for Beginners

Python for Beginners

8th - 12th Grade

25 Qs

Intro to Python BBG

Intro to Python BBG

9th - 11th Grade

25 Qs

4 Python (циклы)

4 Python (циклы)

5th - 12th Grade

26 Qs

untitled

untitled

8th Grade - University

25 Qs

Quiz sobre Estruturas Condicionais

Quiz sobre Estruturas Condicionais

Assessment

Quiz

Computers

10th Grade

Medium

Used 1+ times

FREE Resource

30 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Qual é a estrutura básica de um comando condicional "if" em Python?

if condição: instrução

if (condição) { instrução }

if condição, então instrução

if condição; instrução

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

O que o seguinte código imprime? ```python x = 10 if x > 5: print("Maior que 5") else: print("Menor ou igual a 5") ```

Menor ou igual a 5

Maior que 5

10

Nada

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Qual palavra-chave é usada para adicionar uma condição extra entre o "if" e o "else" em Python?

elseif

elif

else if

elseif:

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Qual operador lógico representa "e" em Python?

&&

and

&

ou

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

O que será impresso pelo código abaixo? ```python a = 3 b = 7 if a > 2 and b < 10: print("Verdadeiro") else: print("Falso") ```

Verdadeiro

Falso

3

7

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

True

False

5

2

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Qual operador lógico representa "ou" em Python?

or

||

ou

|

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?