Pergunta de entrevista da empresa Revature

What does static mean?

Respostas da entrevista

Sigiloso

8 de ago. de 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.

Sigiloso

15 de out. de 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