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 Hashing and how is it done? Pictorial form?
why oops need in programming
What is destructor in oop?
define oops concept with example
Can enum be null?
ambiguity regulation of multiple inheritance with example.
What is polymorphism? Explain with an example.
what is the sylabus for priliminaries?
explain sub-type and sub class? atleast u have differ it into 4 points?
which structured data type is not used in c++? 1.union 2.structure 3.string 4.boolean
Why do we need polymorphism in c#?
What is difference between abstraction and encapsulation?