How ember applications are structured?
1.Models
2.Controllers
3.Views
4.All of the above
What are the main components of Ember.js?
1.Models
2.The Router
3.Controllers
4.All of the above
What are the three parts built for an ember route?
1.An entry in the Ember router which maps between our route name and a specific URI
2.A route handler file, which sets up what should happen when that route is loaded
3. A route template, which is where we display the actual content for the page
4.All the above
What are basic models of Emberjs?
1.Routes
2.Models
3.Templates
4.All of the above mentioned
What are the different common functions of Ember.js packages?
1.Empty
2. Log Binding
3.isArray
4.All of the above
What are the features of Emberjs?
1.Creating reusable modules
2. Handlebars Templates
3.Automatic determines the route and controller during declaration of the route resources
4. All of the above
What are the uses of Ember.js services?
1.Logging
2. User/session authentication
3.Geolocation
4.All of the above
What controller does in Ember.js?
1.First it can decorate the model returned by the route
2. It can listen to actions performed by users
3.Both A and B
4. None of these
What is the command to start and stop development server in Ember.js?
1. Cd ember-quickstart
2.Ember serve
3.Both A and B
4. none of the mentioned
Which file is loaded first when an Ember application loads?
1.Application.js
2.App/app.js
3.App/application.js
4.Application/app.js