Definition of Object Oriented Programming in single line?
Answers were Sorted based on User's Feedback
Answer / bhuvana
OOP Provides a way of Modularizing Programs by creating
memory area for both data and function that can be used as
templetes for creating copies of such modules on demand.
| Is This Answer Correct ? | 0 Yes | 2 No |
Answer / jithin
Object Orieante Promming is working with the number of
objects to create a real world application.
| Is This Answer Correct ? | 3 Yes | 6 No |
Answer / gangarampal
OOPS as Object Oriented Programming language.This type
of programming allows the creation of an object which always
has the same functional use, but can have multiple definitions.
for Ex. my company creates a diagnostic product. This product
provides a set of "objects" to be used to represent
diagnostic knowledge.One object in the set, the symptom,
represents an observable problem that someone might call a
tech support center to report.
| Is This Answer Correct ? | 2 Yes | 6 No |
why overriding?
How to Increment the value of the empid E001 for each and every employee by using the programe?
write a c++ code to overload + and - for a stack class such that + provides push and - provides pop operation
1 Answers College School Exams Tests, HCL, IBM, TCS,
1.explicit call for destructor 2.calling function inside a constructor. 3.base *b-new derived delete b; 4.delete p what it will delete. 5.size of base class and derived class int i,in base class and int j in derived. 6.int i-20 int main() { int i =5; printf("%d".::i); { int i =10; printf("%d".::i); } } 7.object slicing 8.new 9.function overloading(return type). 10.class base() { virtuval fun() { ----- } } class derivied:public base() { fun() { ----- } } int main() { derived d; } 11.how static function will call in C++? 12.default structures are in C++? 13.constructors should be in public . 14.virtuval constructor not exist. 15.multilevel inhritence. destructor order.
How long to learn object oriented programming?
What are the 4 pillars of oop?
What is interface in oop?
create a c++ program that will ask 10 numbers and display their sum using array.
WAP find square root of any number (without using sqrt() )?
What is this interview room ? Is it a class or an object.
what is the diffrence between c# and c++
What do you mean by inheritance?