This is a question asked in one the written that I had given last week can anybody help me identify the difference
public class TestClass {
static final int a = 2;
static final int b = 3;
static int c = 2;
static int d = 3;
public static void main(String[ ] args) {
int product1 = a * b; //line A
int product2 = c * d; //line B
}
}