Revature Interview Question

What does static mean?

Interview Answers

Anonymous

Aug 8, 2019

2 things come to mind. A static variable, in what the variable is predefined being either a string, boolean, or number. Or I think of Static Analysis, where your program is not live and when you're possibly debugging, but analyzed for it structure and meets your industries standards.

Anonymous

Oct 15, 2019

It is a kind of method that calls are made directly on the class and are not callable on instances of the class.Static methods are often used to create utility functions.

1