C Essentials Part 1 Module 3 Test «Essential - 2027»
But the final test question was trickier: "What is the output of this code?" int x = 5; int y = 2; float z = x / y; printf("%f", z); She almost answered 2.5 , but caught herself. Integer division truncates. x / y = 2 , then stored as 2.000000 . The correct output: 2.000000 .
She hit . Input: 75 30 → Sum = 105. Output: HIGH . Good. Input: 20 40 → Sum = 60. Output: MEDIUMLOW — Error!
The terminal glowed green: .
She corrected it:
Then she remembered — Module 3’s hidden trap: 50 <= sum <= 100 is parsed as (50 <= sum) <= 100 . (50 <= 60) is 1 , then 1 <= 100 is always true. So the second if always runs, and if the first if fails, the else prints too. c essentials part 1 module 3 test
Elena stared at the blinking cursor on her vintage terminal. She was one step away from passing Module 3 of her C programming certification. The test simulation presented a problem: "Write a program that reads two integers. If their sum is greater than 100, print 'HIGH'. If the sum is between 50 and 100 inclusive, print 'MEDIUM'. Otherwise, print 'LOW'." She smirked. Simple. She quickly typed:
She stared. Why both "MEDIUM" and "LOW"? But the final test question was trickier: "What
if (sum > 100) printf("HIGH"); else if (sum >= 50 && sum <= 100) printf("MEDIUM"); else printf("LOW"); Run again. 20 40 → LOW . 45 30 → MEDIUM . 80 30 → HIGH . Perfect.
#include <stdio.h> int main() { int a, b, sum; scanf("%d %d", &a, &b); sum = a + b; if (sum > 100) printf("HIGH"); if (50 <= sum <= 100) printf("MEDIUM"); else printf("LOW"); return 0; } The correct output: 2