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

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

2 Answers  


Write a program to compute for numeric grades for a course. The course records are in a file that will serve as the input file. The input file is in exactly the following format: Each line contains a student's first name, then one space, then ten quiz scores all on one line. The quiz scores are in whole number and are separated by one space. Your program will take it input from this file and sends it output to a second file. The data in the output file will be exactly the same as the data in the input file except that there will be one additional number (of type double) at the end of each line. This number will be the average of the student's ten quiz scores. Use at least one function that has file streams as all or some of its arguments.

0 Answers  


What is polymorphism and its types?

0 Answers  


What is the point of polymorphism?

0 Answers  


what is the use of template classes in c++

1 Answers  






explain dynamic binding by drowing

2 Answers   Cognizant,


What is a class?

32 Answers   Infosys, TCS, Thylak,


can you give real time example for polymarphism

5 Answers   TCS,


What type of loop is a for loop?

0 Answers  


JAVA is FULLY OBJECT ORIENTED PROGRAMING LANGUAGE?

3 Answers  


What does enum stand for?

0 Answers  


What is an interface in oop?

0 Answers  


Categories