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
17 questions
HTML podstawy

Quiz
•
8th Grade - University
15 questions
BASIC C PROGRAMMING QUIZ

Quiz
•
University
15 questions
Java

Quiz
•
University
10 questions
Expression in C Programming

Quiz
•
University
15 questions
ANALYSIS OF ALGORITHMS

Quiz
•
University
12 questions
2024-1 프로그래밍

Quiz
•
11th Grade - University
10 questions
PHP

Quiz
•
University
12 questions
Operators in C

Quiz
•
University
Popular Resources on Wayground
10 questions
Lab Safety Procedures and Guidelines

Interactive video
•
6th - 10th Grade
10 questions
Nouns, nouns, nouns

Quiz
•
3rd Grade
10 questions
Appointment Passes Review

Quiz
•
6th - 8th Grade
25 questions
Multiplication Facts

Quiz
•
5th Grade
11 questions
All about me

Quiz
•
Professional Development
22 questions
Adding Integers

Quiz
•
6th Grade
15 questions
Subtracting Integers

Quiz
•
7th Grade
20 questions
Grammar Review

Quiz
•
6th - 9th Grade