Question:Static vs Non static members?
Answer Static Member :The static member is callable on a class even when no instance of the class has been created. The static member is always accessed by the class name, not the instance nameNon-static Member :
+ Report
Static vs Non static members?