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

Post New Answer

More C++ General Interview Questions

How many types of modularization are there in c++?

0 Answers  


Explain the benefits of proper inheritance.

0 Answers  


How can you link a c++ program to c functions?

0 Answers  


Write a program which is required to process the time of a clock in hours and minutes, entered from the keyboard. With this program, there are two requirements for any data entered by a user: 1. The data must be of the correct type (in this case, two ints). 2. The data must be in the correct range: this means that, for the minutes, negative numbers and any number above 59 must be rejected; for the hours, negative numbers and any number above 23 must be rejected. Output error message for invalid data input. Output the time one and a half hour after the time input. i.e. Hour: 22 Min: 32 One and a half hour after 22:32 is 00:02

0 Answers  


What is the difference between the indirection operator and the address of oper-ator?

0 Answers  


Can we get the value of ios format flags?

0 Answers  


Can you explain the term "resource acquisition is initialization?"

1 Answers   Amazon,


Evaluate: int fn(int v) { if(v==1 || v==0) return 1; if(v%2==0) return fn(v/2)+2; else return fn(v-1)+3; } for fn(7); a) 10 b) 11 c) 1

4 Answers   Quark,


What is constructor and destructor in c++?

0 Answers  


write a corrected statement in c++ so that the statement will work properly. x = y = z + 3a;

0 Answers  


What is the role of copy constructor in copying of thrown objects?

0 Answers  


What is a lambda function c++?

0 Answers  


Categories