What is the expansion of OOPS?

Answer Posted / naveen

OBJECT ORIENTED PROGRAMMING STRUCTURE

Is This Answer Correct ?    42 Yes 3 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Can we create object of interface?

613


Why do we need polymorphism in c#?

695


What is data binding in oops?

594


What is abstract class in oop?

540


Why is static class not inherited?

601






Why multiple inheritance is not allowed?

590


Can main method override?

591


Why is object oriented programming so hard?

618


what type of questions

1701


What is class encapsulation?

614


What is Difference Between Inheritance and creating object and getting data? means Class A extends B{ B.getMethod();} (OR) Class A{ b obj=new B(); obj.getMethod(); }

1995


What is polymorphism and example?

596


Why oops is important?

616


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

1706


program for insertion ,deletion,sorting in double link list

2285