List different attributes in C++?



List different attributes in C++?..

Answer / Amritanshu Kumar Singh

```
1. Classes
2. Objects (Instances of classes)
3. Member functions (Methods)
4. Data members (Variables within a class)
5. Access specifiers (public, private, protected)
6. Inheritance
7. Polymorphism
8. Operator Overloading
9. Exception Handlingn10. Namespacesn11. Templates

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More C++ General Interview Questions

What does it mean to declare a member function as static?

1 Answers  


write a C++ programming :if the no is between 32 to 50 it will be odd.

3 Answers   NIIT,


Can we declare a base-class destructor as virtual?

1 Answers  


sir i want to study the c++ course but ino what is the qualification and the study methode please reply more details in c++

1 Answers   NIIT,


Implement stack operations with pointers with appropriate exception checks.

1 Answers   Huawei,


Are there interfaces in c++?

1 Answers  


What are pointers used for c++?

1 Answers  


What do you mean by pure virtual functions in C++? Give an example?

1 Answers  


What is std namespace in c++?

1 Answers  


Should you pass exceptions by value or by reference?

1 Answers  


Write some differences between an external iterator and an internal iterator? Describe the advantage of an external iterator.

1 Answers  


string somestring ; Which of the following choices will convert a standard C++ string object "somestring" to a C string? a) Copy.somestring () ; b) somestring.c_str () c) &somestring [1] d) std::cstring (somestring) e) (char *) somestring

1 Answers   Quark,


Categories