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

Why many objects can working together? How objects working togetherM I want to see example code.

2 Answers  


What is property in oops?

0 Answers  


how do you handle yourself when you feel the wald is aganist you

2 Answers  


What is a class in oop?

0 Answers  


WHY FUCTION OVERLOADING DOSENOT RETURN A RETEN TYPE

2 Answers  






What is polymorphism and example?

0 Answers  


Explain virtual inheritance?

0 Answers  


Define a class to represent a bank account. Include the following members: Data Members: Name of the Depositor Account Number Type of Account Balance amount in the account Member Functions: To assign the initial values. To deposit an account. To withdraw an amount after checking the balance. Write a C++ main program to display account number, name and balance.

6 Answers  


What is pure oop?

0 Answers  


#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  


How to calculate the age from the date of birth by using the program?

2 Answers   Accenture,


what is the need of abstraction? what is abstraction?what is the abstraction for stack?

8 Answers   CTS, Verizon,


Categories