Java Programming Practice Question
Choose the appropriate access specifier for the attribute value so that it can be accessed from anywhere. class Test { public int value; }Answer options
A
class Test { public int value; }
B
class Test { [public] int value; }
Correct answer: class Test { [public] int value; }
Explanation
Quick AnswerThe correct answer is class Test { [public] int value; } because it directly addresses the core logic of Java Programming.
This question has been retained as-is due to its unique context.