what is static?
Answers were Sorted based on User's Feedback
Answer / azaad
static is keyword which is used for a variable and also for
a method.
static variable is initialized only once (i.e)one time memory.
static method of a class should not called with an objecy it
should be called with class name...
syntax: class-name.static method()
| Is This Answer Correct ? | 3 Yes | 0 No |
Answer / suresh reddy
1. Static limits the scope of an object(variable) or a
function to the file in which it being compiled.
2. A static variable retains its value between function
calls, even though its a local variable.
3. Lifetime of a static variable is the entire program.
4. We can't use extern keyword for a static object.
| Is This Answer Correct ? | 4 Yes | 2 No |
Answer / tanaji
if we use static method ,first static method will execute then other.
| Is This Answer Correct ? | 1 Yes | 0 No |
what is virtual function?
what is polymorpsim? what are its types?
What is abstract class in oops?
what type of questions
What are objects in oop?
Why static functions always uses static variables?
what is oppes
Can we create object of class with private constructor?
to find out the minimum of two integer number of two different classes using friend function
What is abstraction?
what is the difference between ERROR and EXCEPTION?
4. What do you mean by a prototype? Define analysis prototype