what is oppes

Answers were Sorted based on User's Feedback



what is oppes ..

Answer / rajesh.suddpally

object procedural programming

Is This Answer Correct ?    4 Yes 1 No

what is oppes ..

Answer / aayush patwa

A type of programming in which programmers define not only
the data type of a data structure, but also the types of
operations (functions) that can be applied to the data
structure. In this way, the data structure becomes an
object that includes both data and functions. In addition,
programmers can create relationships between one object and
another. For example, objects can inherit characteristics
from other objects.
One of the principal advantages of object-oriented
programming techniques over procedural programming
techniques is that they enable programmers to create
modules that do not need to be changed when a new type of
object is added. A programmer can simply create a new
object that inherits many of its features from existing
objects. This makes object-oriented programs easier to
modify.

To perform object-oriented programming, one needs an object-
oriented programming language (OOPL). Java, C++ and
Smalltalk are three of the more popular languages, and
there are also object-oriented versions of Pascal.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More OOPS Interview Questions

What is oops in simple words?

0 Answers  


what is main difference between object oriented object base

2 Answers   Wipro,


assume the program must insert 4 elements from the key board and then do the following programs.sequential search(search one of the elements),using insertion sort(sort the element) and using selection sort(sort the element).

0 Answers  


In which cases you use override and new base?

2 Answers  


How to call a non virtual function in the derived class by using base class pointer

3 Answers   HCL,






What are the advantages of inheritance?

26 Answers   IBS, TCS,


How does polymorphism work?

0 Answers  


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.

0 Answers  


what is code for call by value and call by reference?

1 Answers  


Why polymorphism is used in oops?

0 Answers  


what is the new version of c++

1 Answers   Ignou, Pramata, Satyam,


What is difference between data abstraction and encapsulation?

0 Answers  


Categories