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

Quiz
•
Computers
•
Professional Development
•
Hard
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
Similar Resources on Wayground
32 questions
Quiz 1.2

Quiz
•
Professional Development
30 questions
Garuda_Round-2_Quiz

Quiz
•
Professional Development
30 questions
Sistema operacional Aula 1

Quiz
•
Professional Development
25 questions
Python Programming Quiz

Quiz
•
Professional Development
35 questions
Python Knowledge Check

Quiz
•
Professional Development
30 questions
Quiz - Functions in C

Quiz
•
Professional Development
29 questions
Praxis 5652 Computer Science Prep Mod 3 Output and Print Stateme

Quiz
•
Professional Development
26 questions
Quiz 2.2

Quiz
•
Professional Development
Popular Resources on Wayground
10 questions
Video Games

Quiz
•
6th - 12th Grade
20 questions
Brand Labels

Quiz
•
5th - 12th Grade
15 questions
Core 4 of Customer Service - Student Edition

Quiz
•
6th - 8th Grade
15 questions
What is Bullying?- Bullying Lesson Series 6-12

Lesson
•
11th Grade
25 questions
Multiplication Facts

Quiz
•
5th Grade
15 questions
Subtracting Integers

Quiz
•
7th Grade
22 questions
Adding Integers

Quiz
•
6th Grade
10 questions
Exploring Digital Citizenship Essentials

Interactive video
•
6th - 10th Grade