Hi Ranchers, i have a doubt regarding the initialization of class and instance variables. While we declare a variable as class variable(static variable) or an instance variable(member variable), it will be initialized to teh default initial value of the primitive type. For Eg: 0 for int. if we declare a variable, var as, int var; and display this in a method, ...