Given the code fragment: float x = 22.00f % 3.00f;
int y = 22 % 3;
System.out.print(x + ", "+ y);
What is the result?
What is the name of the Java concept that uses access modifiers to protect variables and hide them within a class?
Given the code fragment:
Which three lines fail to compile?