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 difference between objects and function

3 Answers  


Which is the parameter that is added to every non-static member function when it is called?

3 Answers   Accenture,


What is overloading in oops?

0 Answers  


Can java compiler skips any statement during compilation time?

0 Answers  


WAP find square root of any number (without using sqrt() )?

3 Answers  






Write a program to accept a number and to print numbers in pyramid format? for eg:for a no. 5 1 212 32123 4321234 543212345

7 Answers  


//what is wrong with the programme?? #include<iostream.h> template <class first> class dd { first i; public: void set(); void print(); }; void dd< first>:: set() { cin>>i; } void dd< first>::print() { cout<<"\n"<<i; } void main() { dd <char>g; g.set(); g.print(); }

1 Answers  


What is the default size allocated for array in the statement if size not specified " int a[] "

4 Answers   CTS,


WRITE A SIMPLE C++ PROGRAM TO SWAP TWO NOS WITHOUT USING TEMP

2 Answers  


What does oop mean in snapchat?

0 Answers  


hi, this is raju,iam studying b.tech 2nd year,iam want know about group1 and group2 details, and we can studying without going to any instutions? please help me.

0 Answers  


What is abstraction?

9 Answers  


Categories