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


1. Define a class.

Answers were Sorted based on User's Feedback



1. Define a class...

Answer / mayank kumar

class is a user defined data type and it is the collection
of element. it contains two things
data member and member function.

Is This Answer Correct ?    14 Yes 0 No

1. Define a class...

Answer / christina

collection of object is known as class

Is This Answer Correct ?    3 Yes 0 No

1. Define a class...

Answer / nature

class is a user defined data type and it is the collection
of element

Is This Answer Correct ?    2 Yes 0 No

1. Define a class...

Answer / bijaya kumar jena

Class is a user defined data type. It is the collection of
data member and member function.

Ex:-
Class Add
{
private:
int n1,n2; //Data member
public:
res() //Member Function
{
cout<<"Result :";
}
}
}

Is This Answer Correct ?    1 Yes 0 No

1. Define a class...

Answer / dom wadegu

A class is an object of interest

Is This Answer Correct ?    0 Yes 0 No

1. Define a class...

Answer / mohamed

class is an object

Is This Answer Correct ?    0 Yes 1 No

Post New Answer

More OOPS Interview Questions

#include <string.h> #include <stdio.h> #include <stdlib.h> #include<conio.h> 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

0 Answers  


Can we create object of class with private constructor?

5 Answers  


Can an interface inherit a class?

0 Answers  


write a program to print * * * * * *

2 Answers  


write a program to find 2 power of a 5digit number with out using big int and exponent ?

0 Answers  


What is the difference between pass by reference and pass by value?

12 Answers   Pfizer, TCS,


is java purely oop Language?

49 Answers   HCL, Infosys, TCS,


different types of castings

3 Answers   Siemens,


What is cohesion in oop?

0 Answers  


What is a friend function & its advantage?

1 Answers   MIT,


Contrast OOP and SOA. What are tenets of each?

1 Answers   Siebel Systems, Wipro,


#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]; }

1 Answers  


Categories