What do you mean by binding of data and functions?

Answer Posted / 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



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is the full form of oops?

607


What are the three main types of variables?

600


What is encapsulation in oops?

534


write a program that takes input in digits and display the result in words from 1 to 1000

1987


given a set based questions and 5 questions based on it next data sufficiciency questions 2 and 2/3 english sentence completion with options very easy and 2 synononmys paragraph with 10 questions 10 minutes replace =,-,*,% with -,%,+,* type questions 5 3 questions lik following itssickhere itssickthere itssickhere istsickhere which is nt alike the others very easy

2145






What are two types of polymorphism?

610


How do you achieve polymorphism?

614


How to improve object oriented design skills?

569


What is object in oops?

612


Why is encapsulation used?

577


What are the 5 oop principles?

601


Write a c++ program to display pass and fail for three student using static member function

2814


#include #include #include #include void select(char *items, int count); int main(void) { char s[255]; printf("Enter a string:"); gets(s); select(s, strlen(s)); printf("The sorted string is: %s.\n", s); getch(); return 0; } void select(char *items, int count) { register int a, b, c; int exchange; char t; for(a = 0; a < count-1; ++a) { exchange = 0; c = a; t = items[ a ]; for(b = a + 1; b < count; ++b) { if(items[ b ] < t) { c = b; t = items[ b ]; exchange = 1; } } if(exchange) { items[ c ] = items[ a ]; items[ a ] = t; } } } design an algorithm for Selection Sort

2066


What is constructor in oop?

587


Is data hiding and abstraction same?

567