Select from following answers:- Static

- Instance
- Abstract class
- All of the above
- All Above
Static is used when its member or method is directly called using class name.
for example:-
public static class cls
{
public void display();
}
To use it:-
cls.display();
Show Correct Answer
Asked In: Many Interviews |
Alert Moderator