Accenture 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
Correct answer: class Test { [public] int value; }.