difference between static and non-static variables?
Answer Posted / sujitha.r
Static:
*No instance is required.
*Automatic Invocation.
Non-Static:
*Instance is required.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is advantage of inheritance?
What are properties in oop?
What is difference between oop and pop?
What is byval and byref? What are differences between them?
Why do we need polymorphism in c#?
State what is encapsulation and friend function?
• What are the desirable attributes for memory managment?
class CTest { public: void someMethod() { int nCount = 0; cout << "This is some method --> " << nCount; } }; int main() { CTest *pctest; pctest->someMethod(); return 0; } It will executes the someMethod() and displays the value too. how is it possible with our creating memory for the class . i think iam not creating object for the class. Thanks in Advance... Prakash
Write A Program to find the ambiguities in Multiple Inheritance? How are they resolved.(Virtual Functions)
What is polymorphism used for?
just right the logic of it 1--> If few people are electing then every time ur candidate should win 2--> arrange books in box, if box carry weight == books weight then take another box..... find the no of box required.
What is encapsulation c#?
What does <> mean pseudocode?
What is a superclass in oop?
Explain virtual inheritance?