Angular 2 Mock Test



This section presents you various set of Mock Tests related to Angular 2. You can download these sample mock tests at your local machine and solve offline at your convenience. Every mock test is supplied with a mock test key to let you verify the final score and grade yourself.

Questions and Answers

Angular 2 Mock Test III

Answer : C

Explanation

There are two types of dependencies, first is the dependencies and then there are dev dependencies. The dev ones are required during the development process and the others are needed to run the application.

Answer : C

Explanation

systemjs.config.json contains the system files required for Angular JS application. This loads all the necessary script files without the need to add a script tag to the html pages.

Answer : C

Explanation

'npm:': 'node_modules/' tells the location in our project where all the npm modules are located. The mapping of app: 'app' tells the folder where all our applications files are loaded.

Q 4 - Which of the following filter is used to convert input to all lowercase?

A - lowercase

B - lower

C - Both of the above.

D - None of the above.

Answer : A

Explanation

lowercase filter is used to convert the input to all lowercase.

Q 5 - Which of the following is the correct way to apply a filter?

A - Property-value || filter

B - Property-value && filter

C - Property-value | filter

D - None of the above.

Answer : C

Explanation

filter are applied using pipe character.

Q 6 - Which of the following filter is used to convert input to all uppercase?

A - uppercase

B - upper

C - Both of the above.

D - None of the above.

Answer : A

Explanation

uppercase filter is used to convert the input to all uppercase.

Q 7 - Which of the following filter is used to slice a piece of data from the input string.

A - slice

B - substring

C - Both of the above.

D - None of the above.

Answer : A

Explanation

slice filter is used to slice a piece of data from the input string.

Q 8 - Which of the following filter is used to convert an input string to date format.

A - dateformat

B - date

C - Both of the above.

D - None of the above.

Answer : B

Explanation

date filter is used to convert an input string to date format.

Q 9 - Which of the following filter is used to convert an input string to currency format.

A - currency

B - amount

C - Both of the above.

D - None of the above.

Answer : A

Explanation

currency filter is used to convert an input string to currency format.

Answer Sheet

Question Number Answer Key
1 C
2 C
3 C
4 A
5 C
6 A
7 A
8 B
9 A
angular2_questions_answers.htm
Advertisements