Pregunta de entrevista de Revature

What does static mean?

Respuestas de entrevistas

Anónimo

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.

Anónimo

15 de oct 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