what i oops concept, how many languages supports oops concept?
Answers were Sorted based on User's Feedback
Answer / brunda r
oops is object oriented programmimg language the provides a
way of modularizing programs by creating partitioned memory
area for both data and functions . The languages like C++,JAVA
use oops.
| Is This Answer Correct ? | 16 Yes | 5 No |
Answer / parth rastogi
oops is object oriented programmimg language which provides the facility to run programs on any platefrom if it is compiled and provides a way of modularizing programs by creating partitioned memory area for both data and functions . The languages like C++,JAVA use oops concept.
| Is This Answer Correct ? | 9 Yes | 2 No |
Answer / prince ranjith reddy
oops is a concept used to write the computer programs by using classes and objects.
| Is This Answer Correct ? | 1 Yes | 0 No |
What is polymorphism and why is it important?
What is the renewal class?
IN PROGRAMING LANGAUGE A C++ IS PURELY OBJECT ORIENTED OR NOT?
i had specified the access specifier for abstarct class member like (pure virtual function) as private.But it can be accessed by the derived class.How the private member of one class is accessed by other class.if any body face this problem and found the solution plz reply to me.
#include <iostream> using namespace std; int main() { int a = 2; int c[5][5]; for (int x=0;x<5;x++) { for (int y=0;y<5;y++) { c[x][y] = x*y; } } cout << c[a][c[1][4]]; }
write string class as your own class in java without using any built-in function
Contrast OOP and SOA. What are tenets of each?
1 Answers Siebel Systems, Wipro,
Which is not an object oriented programming language?
What is constructor in oop?
WHEN A COPY CONSTER IS CALL ?
What is DeadlyDiamondDeathProblem ?
How to hide the base class functionality in Inheritance?