Services
Discover
Homeschooling
Ask a Question
Log in
Sign up
Filters
Done
Question type:
Essay
Multiple Choice
Short Answer
True False
Matching
Topic
Computing
Study Set
Angular-JS
Quiz 2: AngularJS: Functions, Directives, and Events
Path 4
Access For Free
Share
All types
Filters
Study Flashcards
Practice Exam
Learn
Question 1
Multiple Choice
Which angular function is used to wrap a raw DOM element or HTML string as a jQuery element?
Question 2
Multiple Choice
Can '$scope' be injected while creating service using 'factory' method?
Question 3
Multiple Choice
AngularJS needs data in JSON format to populate its model.
Question 4
Multiple Choice
Scope act as glue between controller and view.
Question 5
Multiple Choice
AngularJS 1.0 was released in 2013.
Question 6
Multiple Choice
AngularJS applications are a mix of . . . . . .
Question 7
Multiple Choice
We need to tell AngularJS what part of our HTML page contains the AngularJS app. You do so by adding the . . . . attribute to the root HTML element of the AngularJS app.
Question 8
Multiple Choice
There is a controller which takes single parameter. We call it . . . . . parameter.
Question 9
Multiple Choice
The . . . . . . directive is one of the most fundamental directives in AngujarJS. The . . . . . directive inserts the result of an expression into the HTML template.
Question 10
Multiple Choice
First the HTML document is loaded into the browser, and evaluated by the browser. At this time the AngularJS . . . . . . .
Question 11
Multiple Choice
You cannot use AngularJS directives to tell AnguluarJS how to mix the data into the HTML template.
Question 12
Multiple Choice
If the data obtained from the model contains HTML elements, these are escaped before being inserted into the HTML template. The escaping means that the HTML is displayed as text, and not as HTML. This is done to prevent . . . .
Question 13
Multiple Choice
AngularJS can show or hide HTML depending on the state of data in the model. You do so using a set of AngularJS directives such as . . . . . . which are created specifically for that purpose.
Question 14
Multiple Choice
The . . . . . directive is used if you want to add or remove HTML elements from the DOM based on data in the model.
Question 15
Multiple Choice
Event binding can be defined . . . . . . . . .
Question 16
Multiple Choice
EventEmitter class acts both as an observer and observable.
Question 17
Multiple Choice
Events in Angular 2 behave like normal DOM events. They can bubble up but cannot propagate down.
Question 18
Multiple Choice
EventEmitter class's simple interface, which basically encompass two methods . . . . . . . . . can therefore be used to trigger custom events and listen to events as well, both synchronously or asynchronously.