Explain the properties and principles of oop.
No Answer is Posted For this Question
Be the First to Post Answer
How would you represent an error detected during constructor of an object?
What is #include ctype h in c++?
class X { private: int a; protected: X(){cout<<"X constructor was called"<<endl;} ~X(){cout<<"X destructor was called"<<endl} }; Referring to the code above, which one of the following statements regarding "X" is TRUE? a) X is an abstract class. b) Only subclasses of X may create X objects. c) Instances of X cannot be created. d) X objects can only be created using the default copy constructor. e) Only friends can create instances of X objects.
What is object file? How can you access object file?
Am studying basic c++ programming, have been given the following assignment. Design a linear program to calculate the maximum stress a material can withstand given a force and a diameter of a circle. To find the required area pi should be defined. Have most of the program sorted out but am at a loss as to how to show the calculations required. Can anyone help?
What is the history of c++?
How many different levels of pointers are there?
What is decltype c++?
Discussion on error handling of C++ .
Can notepad ++ run c++?
a class that maintains a pointer to an object that is programatically accessible through the public interface is known as?
What is a unnitialised pointer?