A. Automatic synchronization of data between model and view components
B. Automatic synchronization of data between model and controller components
C. Technique to save HTML data in the database
D. Technique to bind database data to HTML control
Correct Answer is :
A. Automatic synchronization of data between model and view components
Explanation
Data binding in AngularJS is a feature that automatically synchronizes the data between the Model (application data) and the View (user interface).
- When the model changes, the view is updated automatically.
- When the user changes data in the view (such as typing in a textbox), the model is updated automatically.
This is known as two-way data binding, one of the key features of AngularJS.