72.4k views
2 votes
What is the output of the following? *

public class output1
{
public static void main(String str[])
{
int a=1,b=2, c=3;
boolean f1, f2;
f1=a<=b++;
f2=C+9>b++;
System.out.println(f1 + " " + f2);
}
}
a false true
b true false
c 8
d 6​

User Tracer
by
4.8k points

1 Answer

5 votes

Answer:

A

Step-by-step explanation:

well there are numbers and time

User Amakhrov
by
4.1k points