Given the statements issued below what output would be produ
Given the statements issued below, what output would be produced if the user enters a value of 7 for input? int Code; cin >> Code; if (Code 8) cout
Solution
Answer: No
If user enters 7 then it will display \"No\".
Here is the explanation for that
when user enters 7 then Code int variable will have 7.
if (Code < 12) condition will return true so it will inside that if block\'
if(Code > 8) will return false so else block will execute so it will print \"No\"
