What is static variable and static method?
Answers were Sorted based on User's Feedback
Answer / aravind
a variable declared inside a method is local to that method.
it can't be accessed outside the method. if a variable
declared in a class means its a global variable.if we
declare a variable with static keyword in a class means it
can be accessed by all the class.
| Is This Answer Correct ? | 18 Yes | 22 No |
Answer / ravikiran(aptech mumbai)
static variable is a class variable which value remains
constant for the entire class
static method is the one which can be called with the class
itself and can hold only the staic variables
| Is This Answer Correct ? | 43 Yes | 63 No |
What is the Scope of Static Variable?
What is time complexity java?
What does regex mean?
What is garbage collection? Can it be forced to run?
What is the difference between the size and capacity of a vector?
How do you write a conditional statement?
what invokes a threads run() method? : Java thread
How do you create immutable object in java?
Can sleep() method causes another thread to sleep?
Does a function need a return?
Under what conditions is an object’s finalize() method invoked by the garbage collector?
What is method in java ?