Advertisements
Advertisements
Question
Assertion (A): Static method can access static and instance variables.
Reason (R): Static variables can be accessed only by static method.
Options
Assertion and Reason both are correct.
Assertion is true and Reason is false.
Assertion is false and Reason is true.
Assertion and Reason both are false.
Solution
Assertion and Reason both are false.
Explanation:
The static method can only access itself, whereas an instance variable can be accessed through a class object. Thus, we can conclude that static methods cannot access instance variables without the assistance of an object.
In contrast, static variables can be immediately accessed by both static and instance methods.
APPEARS IN
RELATED QUESTIONS
What are the two ways of invoking functions?
Differentiate between formal parameter and actual parameter.
How are private members of a class different from public members?
Write a menu-driven program to display the pattern as per the user’s choice.
For an incorrect option, an appropriate error message should be displayed.
Method which is a part of a class rather than an instance of the class is termed as ______.
Invoking a method by passing the objects of a class is termed as ______.