NEW
Font size
WorksheetsWeb Apps 02 - MeteorJS
Total questions: 12
Worksheet time: 6mins
Which programming language is used in the meteor environment?
PHP
Java
HTML5
JavaScript
What is the name of the feature that adds some desired functionality to a meteor app?
A package.
An addon.
An extension.
A feature.
What is the name of the structure where you write special MeteorJS commands in the HTML code?
A container.
A class.
A template.
A placeholder.
Which syntax correctly denotes a placeholder in a template?
(points)
((points))
{points}
{{points}}
What name is given to the instance when a user interacts with a HTML object?
An action.
a click.
An event.
A press.
What is the URL of the MeteorJS repository of addons for projects?
https://meteor.com
https://meteorjs.com
https://atmosphere.com
https://atmospherejs.com
What is the name of the MeteorJS object in the HMTL code that is replaced with data when the page is rendered?
A container.
A class.
A template.
A placeholder.
Which is the best command to run if the bootstrap feature is not working in your meteor app?
meteor add bootstrap
meteor list
meteor reset
meteor repair
Which is the correct syntax for uninstalling a package named stars?
meteor delete stars
meteor remove stars
meteor uninstall stars
meteor --stars
Which JavaScript object allows data to be sent to a template?
An event helper.
A database helper.
A template helper.
A variable helper.
Which folder should images meant for the user be stored?
public
private
Public
Private
Which syntax is correct for including a template named addListItem?
{{addListitem}}
{{addListItem}}
{{> addListitem}}
{{> addListItem}}
