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​