Prepare
Practice
Interview
Aptitude
Reasoning
English
GD
Placement papers
HR
Current affairs
Engineering
MCA
MBA
Online test
Login
Online Practice Test
>
CPP
« Previous
C++ provides a facility in which the compiler should match function calls with the correct definition at the run time. This process is called as
Options
- Static binding
- Dynamic Binding
CORRECT ANSWER : Dynamic Binding
Discussion Board
C++ - Static and Dynamic Binding
Dynamic Binding: Dynamic Binding refers to linking a procedure call to the code that will be executed only at run time. C++ provides facility to specify that the compiler should match function calls with the correct definition at the run time. This is called dynamic binding or late binding or run-time binding. Dynamic binding is achieved using virtual functions.
Static Binding: By default, matching of function call with the correct function definition happens at compile time. This is called static binding or early binding or compile-time binding. Static binding is achieved using function overloading and operator overloading.
Prajakta Pandit 01-24-2017 01:14 AM
question
Static binding at compile time
Dynamic binding at run time
Is that right?
tottop 01-9-2017 03:38 AM
Incorrect. Should be static.
Incorrect. Should be static.
jaws 03-26-2016 09:27 AM
need explanation for the answer
why is this not static binding if it is binding correct definations and not correct object type at runtime?
guest 11-30-2014 12:29 PM
C++ test
The test is very good, for it is providing me a lot of practices.
MiaoLiJi 10-2-2014 10:04 PM
« Previous
Write your comments
*
*
Email must be in the form someone@domain.com
*
*
Enter the code shown above:
Please enter the code shown above
(Note: If you cannot read the numbers in the above image, reload the page to generate a new one.)
Related Content
C test (42)
C (12)
C++ for beginners (10)
C++ (20)
C++ (24)
C++ (18)
C++ (14)
C++ (12)
C++ (15)
C++ (15)
Data structure (20)
Data structure (10)
Data structure (10)
Data structure (10)
PERL (25)
VC++ (11)
Oops (30)
Mainframe (41)
Mainframe (15)
Embedded systems (15)
OOAD (49)
Advertisement
▲