Advertisements
Advertisements
प्रश्न
The access specifier that gives least accessibility is ______.
विकल्प
Package
Public
Protected
Private
उत्तर
The access specifier that gives least accessibility is private.
Explanation:
The private access specifier restricts access to the class solely, providing the least amount of accessibility.
APPEARS IN
संबंधित प्रश्न
Identify and name the following tokens:
(i) public
(ii) ‘a’
(iii) ==
(iv) {}
Name any two types of access specifiers.
Study the method and answer the given questions.
public void sampleMethod()
{ for (int i=0; i < 3; i++)
{ for (int j = 0; j<2; j++)
{int number = (int) (Math.random() * 10);
System.out.println(number); } } }
(i) How many times does the loop execute ?
(ii) What is the range of possible values stored in the variable number ?
Study the method and answer the given questions.
public void sampleMethod()
{ for (int i=0; i < 3; i++)
{ for (int j = 0; j<2; j++)
{int number = (int) (Math.random() * 10);
System.out.println(number); } } }
(i) How many times does the loop execute ?
(ii) What is the range of possible values stored in the variable number ?
The access modifier that gives the most accessibility is ______