Posts

Showing posts with the label Backbone.js Multiple Choice Questions

Backbone.js Multiple Choice Questions

Backbone.js Multiple Choice Questions 1) Which of the following are the main components of Backbone.js? Model View Collection All of the above  Answer: D is the correct option. All of the above are the main components of Backbone.js. 2) What are the key points of Backbone.js? js has a hard dependency with underscore.js to make it more functional and supporting. With jQuery, Backbone.js has a soft dependency. When the model changes, it can update the HTML of your application automatically. All of the above.  Answer: D is the correct option. All of the above are the key points of Backbone.js. 3) What is the usage of ModelBinder in Backbone.js? The ModelBinder class is used to make a synchronization process of views and models together. The ModelBinder class is used to handle routers. The ModelBinder class is used to hide the models and views. None of the above.  Answer: A is the correct option. The ModelBinder class is used to make a synchronization process of views and mod...