what is the application of oops?

Answer Posted / ravinder bhatti

Object-oriented programming (OOP) is a programming paradigm
that uses "objects" – data structures consisting of
datafields and methods – and their interactions to design
applications and computer programs. Programming techniques
may include features such as information hiding, data
abstraction, encapsulation, modularity, polymorphism, and
inheritance. It was not commonly used in mainstream software
application development until the early 1990s. Many modern
programming languages now support OOP.
Oops! is an HTTP-1.1/FTP proxy server. It
features high performance, low latency
, and a low memory footprint. It caches on large (up to 16G)
files or raw disk slices, and has squid-like ACLs and
bandwidth control. It also has reliable operation and a
smooth reconfigure routine.

Is This Answer Correct ?    68 Yes 40 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What are different oops concepts?

574


What is object in oops?

612


What is oops in simple words?

577


What is overriding vs overloading?

580


Is enum a class?

604






Can you explain polymorphism?

583


Explain the advantages of inheritance.

672


What is polymorphism oop?

619


if i have same function with same number of argument but defined in different files. Now i am adding these two files in a third file and calling this function . which will get called and wht decide the precedence?

2753


What is the example of polymorphism?

555


Why we use classes in oop?

578


What are classes oop?

596


What is basic concept of oop?

699


Why is encapsulation used?

577


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

1696