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 |
Which package has light weight components?
Why enumeration is faster than iterator?
What is fundamental datatype?
how can i cal servlet from jsp page?how can i pass variablesfrom the jsp that servlet can access?
What’s the difference between unit, integration and functional testing?
Why there is no call by reference in java?
what is difference between signed & unsigned char?
Can we increase size of array?
Can array grow dynamically in java?
What is primitive array?
What is JVM ?
4 Answers Phantom Technologies, TCS,
Is 0 a prime number?