CPP Mid-Coding

CPP Mid-Coding

University

12 Qs

quiz-placeholder

Similar activities

HTML & CSS

HTML & CSS

6th Grade - Professional Development

16 Qs

HTML

HTML

University

10 Qs

HTML forms

HTML forms

11th Grade - University

10 Qs

JSP

JSP

University

10 Qs

DS UNIT-2 TEST-1

DS UNIT-2 TEST-1

University

10 Qs

bootstrap let's play

bootstrap let's play

University

15 Qs

Intro to PHP

Intro to PHP

12th Grade - University

15 Qs

If else

If else

University

15 Qs

CPP Mid-Coding

CPP Mid-Coding

Assessment

Quiz

Computers

University

Hard

Created by

John Oli

Used 1+ times

FREE Resource

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:

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?