Question: Given the following segment of code, what will be the output? int x = 5; if (x == 2) Write(Brown, brown, run aground. ); else
Given the following segment of code, what will be the output?
int x = 5;
if (x == 2)
Write("Brown, brown, run aground. ");
else Write("Blue, blue, sail on through. ");
Write("Green, green, nice and clean.");
a. Brown, brown, run aground.
b. Blue, blue, sail on through.
c. Brown, brown, run aground. Blue, blue, sail on through.
d. Blue, blue, sail on through. Green, green, nice and clean.
e. none of the above
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
