Home / CSE MCQs / Ember JS ::

CSE MCQs :: Ember JS

  1. What are the three parts built for an ember route?
  2. A.
    An entry in the Ember router which maps between our route name and a specific URI
    B.
    A route handler file, which sets up what should happen when that route is loaded
    C.
    A route template, which is where we display the actual content for the page
    D.
    All the above

  3. What are the main components of Ember.js?
  4. A.
    Models
    B.
    The Router
    C.
    Controllers
    D.
    All of the above

  5. How ember applications are structured?
  6. A.
    Models
    B.
    Controllers
    C.
    Views
    D.
    All of the above

  7. What are the uses of Ember.js services?
  8. A.
    Logging
    B.
    User/session authentication
    C.
    Geolocation
    D.
    All of the above

  9. What are the features of Emberjs?
  10. A.
    Creating reusable modules
    B.
    Handlebars Templates
    C.
    Automatic determines the route and controller during declaration of the route resources
    D.
    Used routes
    E.
    All of the above

  11. What are basic models of Emberjs?
  12. A.
    Routes
    B.
    Models
    C.
    Templates
    D.
    All of the above mentioned

  13. What are the different common functions of Ember.js packages?
  14. A.
    Empty
    B.
    Log Binding
    C.
    isArray
    D.
    All of the above

  15. Which file is loaded first when an Ember application loads?
  16. A.
    Application.js
    B.
    App/app.js
    C.
    App/application.js
    D.
    Application/app.js

  17. What controller does in Ember.js?
  18. A.
    First it can decorate the model returned by the route
    B.
    It can listen to actions performed by users
    C.
    Both A and B
    D.
    None of these

  19. What is the command to start and stop development server in Ember.js?
  20. A.
    Cd ember-quickstart
    B.
    Ember serve
    C.
    Both A and B
    D.
    None