EMBERJS QUIZ DESCRIPTION

In combination with a request method, root paths define the endpoints at which requests can be made. Which of the following are valid forms of route path?

  • strings
     

  •  string patterns

  • regular expressions

  •  All of the above

Who is credited as the developer of Express.js?

  • Larry wall
     

  •  Rich Hickey

  • TJ Holowaychuk

  • Rob Pike

How can we generate a route in ember.js?

  • An entry in the Ember router which maps between our route name and a specific URI.
     

  • A route handler file, which sets up what should happen when that route is loaded.

  • A route template, which is where we display the actual content for the page.

  • All of the above

Which file is loaded first when an Ember application loads?

  • Application.js
     

  • App/app.js

  • App/application.js

  • Application/app.js

In which of the following year was Express.js initially released?

  • November 2010
     

  •  November 2011

  • December 2010

  • December 2011

Command to create a applications

  • create application.js
     

  • ember application

  • ember new application

  • None of the above

In which of the following year was Express.js initially released?

  • November 2010
     

  •  November 2011

  • December 2010

  • December 2011

Which command is used to install the Ember CLI

  • npm ember.js install
     

  • npm install -g ember-cli

  • install ember-cli

  • npm ember-cli

Ember JS is written in

  • JavaScript
     

  • HTML

  • C ++

  • None
     

Which command is used to check the ember in our system

  • ember check
     

  • ember -v

  • ember.js

  • ember/ember.check

Name the file loaded the ember application

  • application.js
     

  • application/application.js

  • App/app.js

  • None of the above

Tick the main component of Ember.js

  • Router
     

  • Controllers

  • Models

  • All of the above

Which of the following is the Scaffolding in Express.js?
 

  • Yeoman
     

  •  Express application generator

  •  Handler functions

  •  Both A & B

Which on of following statements is true?

  • At every level of nesting (including the top level), Ember.js automatically provides a route for the / path named index
     

  • At every level of nesting (including the top level), Ember.js does not automatically provide any default route

  • Both A and B

  • None

What controller does in Ember.js?

  • First it can decorate the model returned by the route
     

  • It can listen to actions performed by users

  • Both A and B

  • None of these

Who designed Ember.js framework?

  • James Gausling
     

  • Hakon Wium Lee

  • Yehuda katz

  • Tee Berners-lee

Which command is used to start and stop development server in Ember.js?

  • Ember serve
     

  • cd ember-quickstart

  • both a and b

  • None of the above

Who was the original author for the Ember JS?

  • Yehuda Katz
     

  • Goldberg

  • Alexander Schewzchan

  • None

Which of the following function arguments are available to Express.js Route handlers?

  • req - the request object
     

  •  res - the response object

  • next

  •  All of the above
     

What is the default templating language in Ember 1.2?

  • Mustache
     

  • Haml-js

  • Jade

  • Handlebars

What are basic models of Emberjs?

  • Routes
     

  • Models

  • Templates

  • All of the above mentioned

What are the features of Emberjs?

  • Creating reusable modules
     

  • Handlebars Templates

  • Automatic determines the route and controller during declaration of the route resources

  • All of the above

Ember.js is which type of framework?

  • server-side framework
     

  • client-side framework

  • both a and b

  • None of the above

How is it possible to create chainable route handlers for a route path in Express.js?

  • Using app.route()
     

  •  Using app.routes()

  •  Using app.router()

  •  Using app.routing()

Which file is loaded first when an Ember application loads?

  • Application.js
     

  • App/app.js

  • App/application.js

  • Application/app.js

What command used to run an Ember application?

  • Node server
     

  • Ember server

  • Ember start

  • Node start

What are the main components of Ember.js?

  • Models
     

  • The Router

  • Controllers

  • All of the above

Tick the recent version of ember.js

  • 2.1
     

  • 3.2

  • 3.9

  • 3.1

What are the uses of Ember.js services?

  • Logging
     

  • User/session authentication

  • Geolocation

  • All of the above

Three parts built for an ember route are:

  • A route handler file, which sets up what should happen when that route is loaded
     

  • An entry in the Ember router which maps between our route name and a specific URI

  • A route template, which is where we display the actual content for the page

  • All of the above