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

Can abstract class have normal methods?

783


Why do we use oops?

749


Are polymorphisms mutations?

884


Whats is abstraction in oops?

824


What is the renewal class?

2404


What is difference between oop and pop?

861


explain sub-type and sub class? atleast u have differ it into 4 points?

2037


What is polymorphism used for?

764


What is solid in oops?

801


Can we define a class within the interface?

782


What is byval and byref? What are differences between them?

1940


#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

2314


What is difference between data abstraction and encapsulation?

826


What is inheritance in oop?

793


What makes a language oop?

814