CPP Mid-Coding

Quiz
•
Computers
•
University
•
Hard
John Oli
Used 1+ times
FREE Resource
12 questions
Show all answers
1.
MULTIPLE CHOICE QUESTION
30 sec • 5 pts
Movie Ticket Pricing
Problem: A cinema charges $12 for adults (age >= 18), $8 for teens (13–17), and $5 for kids (< 13). The code crashes for some inputs.
Question: What’s wrong with the code?
The variable price is not initialized and may be undefined.
The condition age > 18 should be age >= 18
The else if statements are in the wrong order
The cout statement is outside the if block.
Answer explanation
If none of the conditions match (e.g., invalid age), price remains uninitialized, leading to undefined behavior. Add an else or initialize price:
2.
MULTIPLE CHOICE QUESTION
30 sec • 5 pts
Weather App Alert
Problem: A weather app alerts based on temperature: "Freezing" (< 0°C), "Cold" (0–10°C), "Mild" (> 10°C). The code has a syntax error.
Question: What’s wrong with the code?
Nothing; the code is correct.
The condition temp <= 10 should be temp < 10.
Missing ; after cout statements.
The temp variable should be a float.
Answer explanation
Explanation: The code is syntactically correct and logically sound. For temp = 5, it outputs "Cold" as expected.
3.
MULTIPLE CHOICE QUESTION
1 min • 5 pts
Vending Machine Change
Problem: A vending machine returns change if payment > $5, dispenses the item if payment == $5, or requests more money otherwise. The logic fails.
Question: What’s the issue?
The condition payment = 5 should use ==.
The payment variable should be an int.
The else if is unnecessary.
The cout statements are incorrect.
Answer explanation
Explanation: The else if condition uses = (assignment) instead of == (comparison). Correct code:
4.
MULTIPLE CHOICE QUESTION
1 min • 5 pts
Student Grade Calculator
Problem: A grading system assigns: A (>= 90), B (80–89), C (70–79), F (< 70). The code assigns incorrect grades.
Question: What’s wrong?
The conditions should use >= instead of >.
The grade variable is not initialized.
The conditions are in the wrong order.
The code is correct.
Answer explanation
Explanation: The conditions exclude boundary values (e.g., score = 90 gets B instead of A). Use >=:
5.
MULTIPLE CHOICE QUESTION
30 sec • 5 pts
Parking Fee Calculator
Problem: A parking lot charges $5 for <= 2 hours, $10 for 3–5 hours, $15 for > 5 hours. The code has a syntax error.
Question: What’s the issue?
Missing semicolon ; after fee = 10.
The fee variable is not initialized.
The condition hours <= 5 is incorrect.
The else if should be elif.
Answer explanation
Explanation: A missing ; after fee = 10 causes a syntax error. Correct code:
6.
MULTIPLE CHOICE QUESTION
30 sec • 5 pts
Online Shopping Discount
Problem: An online store offers 20% off for orders > $100, 10% for $50–100, and no discount for < $50. The discount is incorrect.
Question: What’s wrong?
The condition order > 50 should be order >= 50.
The discount variable should be an int.
The cout statement is incorrect.
The code is correct.
Answer explanation
Explanation: The condition order > 50 excludes $50. Use >=:
7.
MULTIPLE CHOICE QUESTION
1 min • 5 pts
Elevator Weight Limit
Problem: An elevator allows entry if weight <= 1000 lbs, warns if 1000–1200 lbs, and blocks if > 1200 lbs. The code has a syntax error.
Question: What’s the issue?
Missing semicolon ; after cout << "Warning: Overweight" << endl.
The condition weight <= 1200 is incorrect.
The weight variable should be a double.
The else if is invalid.
Answer explanation
Explanation: A missing ; after cout << "Warning: Overweight" << endl causes a syntax error. Correct code:
Create a free account and access millions of resources
Similar Resources on Wayground
16 questions
HTML Tags

Quiz
•
University
10 questions
Excel If function WSC 4.2.3

Quiz
•
7th Grade - University
15 questions
JavaScript Basics

Quiz
•
12th Grade - University
13 questions
Intro to IF statements

Quiz
•
KG - University
15 questions
Ms. Exel dan Fungsi Logika IF

Quiz
•
10th Grade - University
7 questions
CSS Rules Quiz-unit 4 CodeHS

Quiz
•
7th Grade - University
10 questions
Lec04 - Quiz02: Object and Embed

Quiz
•
University
10 questions
Estructuras Secuenciales y Condicionales

Quiz
•
University
Popular Resources on Wayground
20 questions
Brand Labels

Quiz
•
5th - 12th Grade
10 questions
Ice Breaker Trivia: Food from Around the World

Quiz
•
3rd - 12th Grade
25 questions
Multiplication Facts

Quiz
•
5th Grade
20 questions
ELA Advisory Review

Quiz
•
7th Grade
15 questions
Subtracting Integers

Quiz
•
7th Grade
22 questions
Adding Integers

Quiz
•
6th Grade
10 questions
Multiplication and Division Unknowns

Quiz
•
3rd Grade
10 questions
Exploring Digital Citizenship Essentials

Interactive video
•
6th - 10th Grade
Discover more resources for Computers
11 questions
NFL Football logos

Quiz
•
KG - Professional Dev...
20 questions
Definite and Indefinite Articles in Spanish (Avancemos)

Quiz
•
8th Grade - University
7 questions
Force and Motion

Interactive video
•
4th Grade - University
36 questions
Unit 5 Key Terms

Quiz
•
11th Grade - University
38 questions
Unit 6 Key Terms

Quiz
•
11th Grade - University
20 questions
La Hora

Quiz
•
9th Grade - University
7 questions
Cell Transport

Interactive video
•
11th Grade - University
7 questions
What Is Narrative Writing?

Interactive video
•
4th Grade - University