Quiz de Python: Decisão e Repetição

Quiz de Python: Decisão e Repetição

Professional Development

30 Qs

quiz-placeholder

Similar activities

24th July

24th July

Professional Development

30 Qs

Python Basico

Python Basico

Professional Development

30 Qs

ms word

ms word

Professional Development

30 Qs

Python Coding Specialist Exam

Python Coding Specialist Exam

9th Grade - Professional Development

31 Qs

Python Programming Essentials Assessment Day 1

Python Programming Essentials Assessment Day 1

Professional Development

30 Qs

C Questions for BCA & BSc

C Questions for BCA & BSc

University - Professional Development

30 Qs

TUGAS SIMDIG DARING KLS X-TB1

TUGAS SIMDIG DARING KLS X-TB1

Professional Development

25 Qs

Google Sheets Toolbar Quiz

Google Sheets Toolbar Quiz

7th Grade - Professional Development

30 Qs

Quiz de Python: Decisão e Repetição

Quiz de Python: Decisão e Repetição

Assessment

Quiz

Computers

Professional Development

Hard

Created by

Felipe Porcino

Used 1+ times

FREE Resource

30 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Qual das alternativas abaixo representa corretamente uma estrutura condicional em Python?

if x == 10 then print("Dez")

if x == 10: print("Dez")

if (x == 10) { print("Dez") }

if x = 10: print("Dez")

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Qual é a saída do seguinte código? ```python x = 5 if x > 3: print("Maior que 3") else: print("Menor ou igual a 3") ```

Menor ou igual a 3

Maior que 3

5

Nenhuma saída

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Qual das opções abaixo representa corretamente um laço de repetição usando while em Python?

while (x < 10) { x += 1 }

while x < 10: x += 1

while x < 10 then x += 1

while x < 10 do x += 1

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

O que acontece se a condição do while nunca for falsa?

O laço executa apenas uma vez

O laço nunca executa

O laço executa infinitamente

O programa é encerrado imediatamente

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

0

2

3

4

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Qual das alternativas abaixo é usada para validar a entrada do usuário em Python?

if input == int

input("Digite um número: ")

int(input("Digite um número: "))

validate(input)

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

O que o seguinte código imprime? ```python contador = 1 while contador <= 3: print(contador) contador += 1 ```

1 2 3

0 1 2

1 2 3 4

2 3 4

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?