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 |
how does a main() in C++ is different from main() in C?
Hi All, I am new to programming and want to know how can i write a code to take input of 2 numbers from user and swap it without using a temp variable?
#include <iostream> using namespace std; struct wow { int x; }; int main() { wow a; a.x = 22; int c = a.x; int *b = new int; cout << c; return 0; } option: No output 0 22 -(11) Will not compile
sir i want to know which posting to apply since i am BE CSE.. also want to know what are the rounds there for my interview...Expecting for ur valuable answer....
How oops is better than procedural?
create a class complex having real and imaginary part of a complex no. as a data member. overload the binary operators(+,- and *) to perform the operations on complex no. objects. overload binary operator using friend function.
2 Answers CTS, Delhi University,
What is function overloading?,describe it with the example.
What is static in oop?
how do u initialize the constant variables
How to Increment the value of the empid E001 for each and every employee by using the programe?
Why do we use polymorphism in oops?
Is following functions are said to be overloaded? int add(int a,int b) char *add(int a,int b)