What are access specifiers in C++?
Answers were Sorted based on User's Feedback
Answer / nashiinformaticssolutions
• Private: Members are accessible only within the class.
• Protected: Accessible within the class and derived classes.
• Public: Accessible from outside the class.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / glibwaresoftsolutions
• Private: Members are accessible only within the class.
• Protected: Accessible within the class and derived classes.
• Public: Accessible from outside the class.
| Is This Answer Correct ? | 0 Yes | 0 No |
• Private: Members are accessible only within the class.
• Protected: Accessible within the class and derived classes.
• Public: Accessible from outside the class.
| Is This Answer Correct ? | 0 Yes | 0 No |
What is difference between shallow copy and deep copy? Which is default?
Do you know about latest advancements in C++ ?
0 Answers Agilent, ZS Associates,
What is c++ in english?
catch(exception &e) { . . . } Referring to the sample code above, which one of the following lines of code produces a written description of the type of exception that "e" refers to? a) cout << e.type(); b) cout << e.name(); c) cout << typeid(e).name(); d) cout << e.what(); e) cout << e;
Can turbo c++ run c program?
How do you import payscale data from non SAP to SAP?is it through LSMW or any other way is there?
What is buffering in c++?
List the advantages of inheritance.
what is c++
what is a class? Explain with an example.
What are the uses of c++ in the real world?
What is an undefined behavior and sequence points