Is C++ case sensitive
a) False
b) Depends on implementation
c) True
No Answer is Posted For this Question
Be the First to Post Answer
What is the difference between a shallow copy and a deep copy?
What is a stack? How it can be implemented?
Refer to a name of class or function that is defined within a namespace?
Write a program using GUI concept for the scheduling algorithms in Operating system like SJF,FCFS etc..
What are smart pointers?
Reads in the size of a square from the screen; 2. Prints a hollow square of that size out of “-“, “|” and blanks on screen; 3. Prints the same hollow square onto a text file. Your program should work for squares of all side sizes between 1 and 20. --- │ │ │ │ │ │ ---
What is stack unwinding?
Explain rtti.
class basex { int x; public: void setx(int y) {x=y;} }; class derived : basex {}; What is the access level for the member function "setx" in the class "derived" above? a) private b) local c) global d) public e) protected
Can a constructor be private?
Write any small program that will compile in "C" but not in "C++"?
Can I learn c++ without learning c?