Can I learn c++ as my first language?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C++ General Interview Questions

Which is not a valid keyword a) public b) protected c) guarded

0 Answers  


Why namespace is used in c++?

0 Answers  


If a header file is included twice by mistake in the program, will it give any error?

0 Answers  


Why is c++ difficult?

0 Answers  


Explain friend class?

0 Answers  






What is command line arguments in C++? What are its uses? Where we have to use this?

0 Answers   HCL,


Define upcasting.

0 Answers  


Can member functions be private?

0 Answers  


A mXn matrix is given and rows and column are sorted as shown below.Write a function that search a desired entered no in the matrix .with minimum complexity 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16

0 Answers  


What is algorithm in c++ programming?

0 Answers  


In the derived class, which data member of the base class are visible?

0 Answers  


class A { public: void f(); protected: A() {} A(const A&){} }; Examine the class declaration shown above. Why are the default and copy constructors declared as protected? 1. To ensure that A cannot be created via new by a more derived class 2. To ensure that A cannot be copied 3. To ensure that A cannot be used as a base class except when public inheritance has been used 4. To ensure that A cannot be created/copied outside the inheritance chain 5. To ensure that A cannot be instantiated as a static variable

1 Answers  


Categories