Definition of Object Oriented Programming in single line?
Answer Posted / 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 |
Post New Answer View All Answers
What is polymorphism explain?
write a code for this:trailer recordId contains a value other than 99, then the file must error with the reason ‘Invalid RECORD_ID’(User Defined Exception).
What is oops concept with example?
How many human genes are polymorphic?
What are different types of JVM's? for example we use dalvik jvm for android then what about the remaining operating systems?
Can we override main method?
Which is not an object oriented programming language?
What is solid in oops?
What are constructors in oop?
write a code for this. serial_number contained in the header of the file will be read , if this serial number is less than a previous serial number within a successfully processed file, or is the same as another serial number within a successfully processed file, or if the field contains anything other than 7 digits, then the file must error with the reason ‘Invalid SERIAL_NUMBER’.
What is pointer in oop?
#include
How does polymorphism work?
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
What is protected in oop?