Can you please explain the difference between static and dynamic binding of functions?


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

Post New Answer

More C++ General Interview Questions

Mention the ways in which parameterized can be invoked.

0 Answers  


What is a hashmap c++?

0 Answers  


What is the most powerful coding language?

0 Answers  


Show the declaration for a pointer to function returning long and taking an integer parameter.

0 Answers  


I want to write a C++ language program that: 1. 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. The program should work for squares of all side sizes between 1 and 20.

0 Answers  






What is an explicit constructor?

1 Answers  


When there is a global variable and local variable with the same name, how will you access the global variable?

0 Answers  


What is a storage class in C++

1 Answers  


What are the types of container classes?

0 Answers  


class X { public: int x; static void f(int z); }; void X::f(int y) {x=y;} What is the error in the sample code above? a) The class X does not have any protected members. b) The static member function f() accesses the non-static z. c) The static member function f() accesses the non-static x. d) The member function f() must return a value. e) The class X does not have any private members.

2 Answers   Quark,


When is dynamic checking necessary?

0 Answers  


What is the best ide for c++?

0 Answers  


Categories