+91-85006-22255
What will be the output of the following program?
public class Relation { public static void main(String args[]) { int a = 15; int b = a + 5; int c = a + 10; int d = c % a; System.out.println(d); }}
Topic: Assignment Operator In Java
Read this topic Take test on this topic
Open In App