What is OOPS and How it is different from Procedural
Programming ?
Answer Posted / swati
A major factor in the invention of Object-Oriented approach
is to remove some of the flaws encountered with the
procedural approach.
Object Orientation Languages (OOL) is concerned to develop
an application based on real time while Procedural
Programing Languages (PPL) are more concerned with the
processing of procedures and functions.
In OOL, more emphasis is given on data rather than
procedures, while the programs are divided into Objects and
the data is encapsulated (Hidden) from the external
environment, providing more security to data which is not
applicable or rather possible in PPL. In PPL, its possible
to expose Data and/or variables to the external entities
which is STRICTLY restricted IN OOL.
| Is This Answer Correct ? | 2 Yes | 8 No |
Post New Answer View All Answers
can inline function declare in private part of class?
What is the example of polymorphism?
Why is polymorphism needed?
How long to learn object oriented programming?
What is abstraction in oop with example?
What is abstraction oop?
Question: Implement a base class Appointment and derived classes Onetime, Daily, Weekly, and Monthly. An appointment has a description (for example, “see the dentist”) and a date and time. Write a virtual function occurs_on(int year, int month, int day) that checks whether the appointment occurs on that date. For example, for a monthly appointment, you must check whether the day of the month matches. Then fill a vector of Appointment* with a mixture of appointments. Have the user enter a date and print out all appointments that happen on that date.
write a program to find 2 power of a 5digit number with out using big int and exponent ?
What exactly is polymorphism?
What is debug class?what is trace class? What differences are between them? With examples.
What is overriding vs overloading?
write a programe to calculate the simple intrest and compund intrest using by function overlading
What are the advantages of polymorphism?
Why is oop useful?
What is polymorphism and its types?