Leave a Reply 1

Your email address will not be published. Required fields are marked *


renko

renko

Answer: B

Code question:
public class Main {

public static void main(String[] args) {
float x = 22.00f % 3.00f;
int y = 22 % 3;
System.out.println(x + “, “+ y);
}

}
Output:
1.0, 1