a class that maintains a pointer to an object that is
programatically accessible through the public interface is
known as?
Answers were Sorted based on User's Feedback
Answer / venkataramakrishna. danduri
It is nothing but a Smart pointer.
| Is This Answer Correct ? | 1 Yes | 0 No |
Which uses less memory? a) struct astruct { int x; float y; int v; }; b) union aunion { int x; float v; }; c) char array[10];
Why would you use pointers in c++?
What is a set in c++?
How to get the current position of the file pointer?
What is the last index number in an array of 100 characters a) 100 b) 99 c) 101
How does class accomplish data hiding in c++?
When is the copy constructor called?
What is iterator c++?
What is a NULL Macro? What is the difference between a NULL Pointer and a NULL Macro?
Which of the Standard C++ casts can be used to perform a ?safe? downcast: a) reinterpret_cast b) dynamic_cast c) static_cast d) const_cast
What is the output of printf("%d")?
58 Answers CTS, HCL, Infosys, TCS, Winit, Wipro,
Define a nested class.