Multiple choice Which of the following statements is correct? Class variables have static keyword. Instance variables are declared within any method. Local variable is initialised outside the method. Instance variable can be accessed outside any method. Local variable is declared outside any method. Reveal answer Fill a bubble to check yourself A Correct answer Explanation Local variables are defined and initialised inside a method. Instance variables may be declared outside a method and can be accessed only inside that method. Class variables are declared within a class and with static keyword.