What do you mean by binding of data and functions?

Answers were Sorted based on User's Feedback



What do you mean by binding of data and functions?..

Answer / nk

Encapsulation

Is This Answer Correct ?    20 Yes 1 No

What do you mean by binding of data and functions?..

Answer / selvi

binding is to manipulate to access a data in various forms.
it is nothing but encapsulation.

Is This Answer Correct ?    4 Yes 1 No

What do you mean by binding of data and functions?..

Answer / zoya

Binding is the process of connecting the function call to the function body. I.E. When we call the function, the parameters and the function name are passed to a internal function of the system. The system then locates the memory chunk where the function is defined(i.e. provides the address).<br><br>There are 2 types of binding:<br>1. Early binding: When the binding happens during the compilation.(Before the run time). Example: Normal functions<br><br>2. Late Binding: Also known as dynamic binding, Run Time binding etc. Here the binding happens during the runtime. <br>Example: Virtual functions.<br><br>

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More OOPS Interview Questions

What is abstraction with example?

0 Answers  


what is object slicing?

9 Answers   L&T, Wipro,


Question: Implement a base class Appointment and derived classes Onetime, Daily, Weekly, and Monthly. An appointment has a description (for example, “see the dentist”) and a date and time. Write a virtual function occurs_on(int year, int month, int day) that checks whether the appointment occurs on that date. For example, for a monthly appointment, you must check whether the day of the month matches. Then fill a vector of Appointment* with a mixture of appointments. Have the user enter a date and print out all appointments that happen on that date.

0 Answers  


What Is a Polymorphism? How many types of polymorphism and whats that use in application?

2 Answers  


What is class and object in oops?

0 Answers  


what uses of c++ language?

3 Answers  


What is the full form of oops?

0 Answers  


JAVA is FULLY OBJECT ORIENTED PROGRAMING LANGUAGE?

3 Answers  


Can we have a private virtual method ?

8 Answers   Ness Technologies,


explain dynamic binding by drowing

2 Answers   Cognizant,


What is a class oop?

0 Answers  


What is new keyword in oops?

0 Answers  


Categories