define oops with class and object
Answers were Sorted based on User's Feedback
Answer / guest
object is the things with their own properties.agroup of
objects are called class
object oriented programming
Is This Answer Correct ? | 16 Yes | 4 No |
Answer / sunil kumar yadav
Object is a run time instant of a class. it is a real word
things.but class is collection of objects.
Is This Answer Correct ? | 11 Yes | 0 No |
Answer / ananth kumar
object is a real world entity while classes are collection
of classes.
The oops means object oriented programming.It is a
Programming techniques which include features such as data
abstraction, encapsulation, modularity, polymorphism, and
inheritance
Is This Answer Correct ? | 4 Yes | 2 No |
Answer / varun
oops is nothing but a small or huge collectings of objects
and classes and known as object oriented programming
Is This Answer Correct ? | 2 Yes | 1 No |
Answer / rajganesh
oops is new approch to hantel complex program.oops mean's
object oriented programming
Is This Answer Correct ? | 2 Yes | 10 No |
What are virtual classes?
what i oops concept, how many languages supports oops concept?
What causes polymorphism?
There are 2 classes defined as below public class A { class B b; } public class B { class A a; } compiler gives error. How to fix it?
They started with the brief introduction followed by few basic C++ questions on polumorphism, inheritance and then virtual functions. What is polymorphims? How you will access polymorphic functions in C? How virtual function mechanism works?
What is virtual class and friend class?
What is difference between inheritance and polymorphism?
What is inheritance write a program to show use of inheritance?
given a set based questions and 5 questions based on it next data sufficiciency questions 2 and 2/3 english sentence completion with options very easy and 2 synononmys paragraph with 10 questions 10 minutes replace =,-,*,% with -,%,+,* type questions 5 3 questions lik following itssickhere itssickthere itssickhere istsickhere which is nt alike the others very easy
Why is destructor used?
what is function over loading?
#include <iostream> using namespace std; int main() { int a = 3; 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][2]; }