Ask Question
24 August, 16:20

What is the value of the cost variable after the following code snippet is executed? int cost = 82; if (cost 50) { cost = cost * 2; } if (cost < 100) { cost = cost - 20; }

+5
Answers (1)
  1. 24 August, 18:21
    0
    184

    Explanation:

    Given the codes

    int cost = 82; if (cost <100) { + 10; }if (cost> 50) { cost = cost * 2; } if (cost < 100) { cost = cost - 20; }

    The initial value of cost is 82.

    The if condition in Line 3 will pass and therefore cost = 82 + 10 = 92

    The if condition in Line 8 will pass and therefore cost = 92 * 2 = 184

    The if condition in Line 13 will fail l and therefore the if block will be skipped.

    At last, the we get cost = 184.
Know the Answer?
Not Sure About the Answer?
Get an answer to your question ✅ “What is the value of the cost variable after the following code snippet is executed? int cost = 82; if (cost 50) { cost = cost * 2; } if ...” in 📙 Computers & Technology if there is no answer or all answers are wrong, use a search bar and try to find the answer among similar questions.
Search for Other Answers