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...

What is a class?

Answer Posted / nayan patel

A class is USER DEFINE DATA TYPE.

Is This Answer Correct ?    7 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is destructor example?

1049


What is the significance of classes in oop?

1160


What is abstract class in oop?

1014


What is variable example?

1041


Plese get me a perfect C++ program for railway/airway reservation with all details.

3907


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

2627


What is a null tree?

1140


What is the fundamental idea of oop?

1141


What is methods in oop?

981


explain sub-type and sub class? atleast u have differ it into 4 points?

2317


What is polymorphism what is it for and how is it used?

1023


How does polymorphism work?

1143


to find out the minimum of two integer number of two different classes using friend function

2142


What is encapsulation process?

1052


What is the benefit of oop?

1058