what is data binding? give the example



what is data binding? give the example..

Answer / priya

Data binding is general technique that binds two data/information sources together and maintains synchronization of data. This is usually done with two data/information sources with different languages as in XML data binding. In UI data binding data and information objects of the same language but different logic function are bound together (e.g. Java UI elements to Java objects).

Is This Answer Correct ?    2 Yes 0 No

Post New Answer

More Core Java Interview Questions

What environment variables are required to be set on a machine in order to run Java programs?

0 Answers   Tech Mahindra,


what is the purpose of class "Object" which is base class for all classes?

3 Answers  


Can you extend singleton class?

0 Answers  


Why to use nested classes in java? (Or) what is the purpose of nested class in java?

0 Answers  


Features of Java?

4 Answers  






Can a main method be overloaded?

0 Answers  


hi to all,i have a question on static block. i saved below as test.java class test extends a { static { System.out.println("test static"); } public static void main(String []dfs) { } } class a { static { System.out.println("a static"); } public static void main(String []asdf) { } } o/p as static test static but if i change base class as test class then class test { static { System.out.println("test static"); } public static void main(String []dfs) { } } class a extends test { static { System.out.println("a static"); } public static void main(String []asdf) { } } o/p test static explain me why "a static" wasn't print in second code when it is in derived class

1 Answers  


What variables are stored in stack?

0 Answers  


Which oo concept is achieved by using overloading and overriding?

0 Answers  


difference between jsp and java script?

3 Answers  


What is a short in java?

0 Answers  


what is default layout of JFrame class?

6 Answers  


Categories