What is data binding?

Answer Posted / sathiya

data's are grouped together is called data binding which is
binding the data

Is This Answer Correct ?    4 Yes 20 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What does oop mean in snapchat?

658


Why is polymorphism important in oop?

613


Write a program to implement OOPS concepts such as inheritance, polymorphism, friend function, operator overloading?

4215


Explain the concepts involved in Object Oriented programming.

606


What is abstraction with example?

572






How to use CMutex, CSemaphore in VC++ MFC

4298


What does and I oop and sksksk mean?

630


Can abstract class have normal methods?

588


#include #include #include #include void insert(struct btreenode **, int); void inorder(struct btreenode *); struct btreenode { struct btreenode *leftchild; struct btreenode *rightchild; int data; }; main() { struct btreenode *bt; bt=(struct btreenode *)NULL; int req,i=1,num; clrscr(); printf("Enter number of nodes"); scanf("%d",&req); while(i<=req) { printf("Enter element"); scanf("%d",&num); insert(&bt,num); i++; } inorder(bt); } void insert(struct btreenode **sr, int num) { if(*sr==NULL) { *sr=(struct btreenode *)malloc (sizeof(struct btreenode)); (*sr)->leftchild=(struct btreenode *)NULL; (*sr)->rightchild=(struct btreenode *)NULL; (*sr)->data=num; return; } else { if(num < (*sr)->data) insert(&(*sr)->leftchild,num); else insert(&(*sr)->rightchild,num); } return; } void inorder(struct btreenode *sr) { if(sr!=(struct btreenode *)NULL) { inorder(sr->leftchild); printf("\n %d",sr->data); inorder(sr->rightchild); } else return; } please Modify the given program and add two methods for post order and pre order traversals.

3217


What is polymorphism and why is it important?

540


What is difference between multiple inheritance and multilevel inheritance?

578


They started with the brief introduction followed by few basic C++ questions on polumorphism, inheritance and then virtual functions. What is polymorphims? How you will access polymorphic functions in C? How virtual function mechanism works?

1359


Give an example where we have to specifically use C programming language and C++ programming language cannot be used?

1123


What do you mean by overloading?

558


What is interface in oop?

613