C-16-Q118mediumsingle_mcq
To check whether a student passes when the passing score is 40, the appropriate condition uses:
To check whether a student passes when the passing score is 40, the appropriate condition uses:
- a
mark < 40 - b
mark != 40 - c
mark >= 40 - d
mark == 0
ব্যাখ্যা
With a pass mark of 40, a student passes by scoring 40 or above, which is captured by mark >= 40. Using mark < 40 would test for failing, and the other conditions do not reflect the pass rule.