+91-85006-22255
What will be the output of the following program?
public class Value { public static void main(String[] args) { int x = 15; int y = x % 4; int z = y * 24; System.out.println(z / 2); }}
Topic: Modulus Operator In Java
Read this topic Take test on this topic
Open In App