Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


define oops with class and object

Answers were Sorted based on User's Feedback



define oops with class and object..

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

define oops with class and object..

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

define oops with class and object..

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

define oops with class and object..

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

define oops with class and object..

Answer / rajganesh

oops is new approch to hantel complex program.oops mean's
object oriented programming

Is This Answer Correct ?    2 Yes 10 No

Post New Answer

More OOPS Interview Questions

Write a C++ program to conduct an election of a mayor.Declare a class ELECTION With the following specification: Data member: Name 25 character Age Integer symbol 1 character Member functions: To accept data for 20 contestant To accept symbol as voting from 100 voters. To declare the winner and the loser.

1 Answers   Global Academy, Infotech,


#include <string.h> #include <stdio.h> #include <stdlib.h> #include <conio.h> void select(char *items, int count); int main(void) { char s[255]; printf("Enter a string:"); gets(s); select(s, strlen(s)); printf("The sorted string is: %s.\n", s); getch(); return 0; } void select(char *items, int count) { register int a, b, c; int exchange; char t; for(a = 0; a < count-1; ++a) { exchange = 0; c = a; t = items[ a ]; for(b = a + 1; b < count; ++b) { if(items[ b ] < t) { c = b; t = items[ b ]; exchange = 1; } } if(exchange) { items[ c ] = items[ a ]; items[ a ] = t; } } } design an algorithm for Selection Sort

0 Answers  


Iam doing my project on instant messaging , if you any new ideas regarding this project ,please suggest it?

2 Answers  


What do you mean by pure virtual functions?

8 Answers  


define oops with class and object

5 Answers   HCL, Tech Mahindra,


Petrol pump mgt. system: To design a program that display an interface for the sale of the Petrol and then make the entries at the backend in the database.

1 Answers   Wipro,


What is oops and why we use oops?

0 Answers  


The type of variable a pointer points to must be the part of pointer's definition so that:

1 Answers   Infosys,


What does and I oop mean?

0 Answers  


What is multiple inheritance?

9 Answers   TCS,


What is Difference Between Inheritance and creating object and getting data? means Class A extends B{ B.getMethod();} (OR) Class A{ b obj=new B(); obj.getMethod(); }

0 Answers   SRA,


What is a friend function & its advantage?

2 Answers   TCS,


Categories