Explain the scope resolution operator?

Answers were Sorted based on User's Feedback



Explain the scope resolution operator?..

Answer / nikhil upadhyay

It permits a program to reference an identifier in the global scope that has been hidden by another identifier with the same name in the local scope.
The answer can get complicated. However, it should start with "::". If the programmer is well into the design or use of classes that employ inheritance you might hear a lot about overriding member function overrides to explicitly call a function higher in the hierarchy. That's good to know, but ask specifically about global scope resolution. You're looking for a description of C++'s ability to override the particular C behavior where identifiers in the global scope are always hidden by like identifiers in a local scope.

Is This Answer Correct ?    0 Yes 0 No

Explain the scope resolution operator?..

Answer / neelam saini

It permits a program to reference an identifier in the global scope that has been hidden by another identifier with the same name in the local scope.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More C++ General Interview Questions

What is searching?

0 Answers  


What is a type library?

0 Answers  


Explain overriding.

0 Answers  


What is the best way to declare and define global variables?

0 Answers  


What is endl?

0 Answers  






Are vectors passed by reference c++?

0 Answers  


Is it possible to use a new for the reallocation of pointers ?

0 Answers  


How important is c++?

0 Answers  


How do you show the declaration of a virtual constructor?

0 Answers  


Profiler in projects?

2 Answers   Symphony,


What are the basics of local (auto) objects?

0 Answers  


You want to link a c++ program to c functions. How would you do it?

0 Answers  


Categories