Search Header Logo

CPP Mid-Coding

Authored by John Oli

Computers

University

Used 1+ times

CPP Mid-Coding
AI

AI Actions

Add similar questions

Adjust reading levels

Convert to real-world scenario

Translate activity

More...

    Content View

    Student View

12 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 5 pts

Media Image

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

Media Image

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

Media Image

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

Media Image

Explanation: The conditions exclude boundary values (e.g., score = 90 gets B instead of A). Use >=:

5.

MULTIPLE CHOICE QUESTION

30 sec • 5 pts

Media Image

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

Media Image

Explanation: A missing ; after fee = 10 causes a syntax error. Correct code:

6.

MULTIPLE CHOICE QUESTION

30 sec • 5 pts

Media Image

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

Media Image

Explanation: The condition order > 50 excludes $50. Use >=:

7.

MULTIPLE CHOICE QUESTION

1 min • 5 pts

Media Image

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

Media Image

Explanation: A missing ; after cout << "Warning: Overweight" << endl causes a syntax error. Correct code:

Access all questions and much more by creating a free account

Create resources

Host any resource

Get auto-graded reports

Google

Continue with Google

Email

Continue with Email

Classlink

Continue with Classlink

Clever

Continue with Clever

or continue with

Microsoft

Microsoft

Apple

Apple

Others

Others

Already have an account?

Discover more resources for Computers