Chapter 1
Chapter 1
Security:
POP: Data is less Secure.
OOP: Data is More Secure and hidden.
Memory/storage space :
POP: its memory requirement is less.
OOP: its memory requirement is high.
Applications of OOPs.
Real time systems
Simulation and modeling
Object oriented database
Hypertext,Hypermedia and expertext
AI and Expert system.
Neural networks and parallel programming
CIM/CAD/CAM systems.
Standard Template Library (STL): C++ includes a powerful STL that provides a
collection of
template classes and functions, offering generic algorithms, containers, and
iterators .
Rich Library:C++ provides a lot of inbuilt functions that make the development
fast.
Following are the libraries used in C++ programming are:<iostream>,
<cmath> ,<cstdlib>
,<fstream>.
// Function Body:
cout << "Hello, World!" << endl;
return 0; // Return 0 to indicate successful execution
}
Output:
Hello, World!