+91-85006-22255
What will be the output of the program?
public class Karbon { static int i = 5; public static void main(String[] args) { Karbon test = null; System.out.print("i = " + test.i + ", "); System.out.print("i = " + Karbon.i); }}
Topic: Static Keyword In Java
Read this topic Take test on this topic
Open In App