What does the following fragment display? (
) class MyClass
{
public static void main(String[] args) {
boolean b = true; int i = 2;
do
i++;
b = !b; } while (b);
System.out.println(i); }
}
output: 3
Need a fast expert's response?
and get a quick answer at the best price
for any assignment or question with DETAILED EXPLANATIONS!
Comments
Leave a comment