wayground logo

Free Printable Worksheets

NEW

Font size

S
M
L
XL
Worksheets

Web Application Frameworks

Total questions: 25

Worksheet time: 19mins

Name
Class
Date
1.

What is Angular CLI?

a)

Acronym for Angular Command Line Integration

b)

Acronym for Angular Command Line Interface

c)

Acronym for Angular Code Login interface

d)

Acronym for Angular Command Login Interface

2.

What is the syntax of decorator in Angular?

a)

#() with optional parameters

b)

$() with optional parameters

c)

@() with optional parameters

d)

None of the above

3.

How does code written in Typescript can be converted to Javascript?

a)

Through Compiler

b)

Through Interpreter

c)

Through transpilation

d)

All of the above

4.

What is a web framework?

a)

A framework used for designing web application.

b)

A framework used for designing mobile application

c)

A framework used for designing Java application

d)

All of the above

5.

The various types of web frameworks are

a)

Single Page vs Multi Page

b)

Server centric vs Client centric

c)

Action based vs component based

d)

All of the above

6.

Which versions of Angular are referred as AngularJS

a)

Angular versions less than 1.x

b)

Angular versions greater than 2.x

c)

Angular versions prior to 2

d)

All of the above

7.

Components rely on ________________ for rendering data

a)

Directives

b)

Modules

c)

Templates

d)

All of the above

8.

The extension .ts indicates

a)

Its a target source file

b)

Its a Typescript file

c)

Its a transpiler file

d)

None of the above

9.

How many files are created when components are created?

a)

2

b)

3

c)

4

d)

None of the above

10.

<div style="text-align:center">

<h1>

Welcome to {{ title }}!

</h1>

</div>

What type of feature is implemented in this code?

a)

title printing

b)

data mapping

c)

Interpolation or substitution

d)

None of the above

11.

What type of framework Bootstrap is?

a)

Angular framework

b)

Node framework

c)

CSS framework

d)

All of the above

12.

<meta> tag in Bootstrap is used because of

a)

Execution of the styles

b)

Proper rendering and touch zooming

c)

Creation of styles in document

d)

All of the above

13.

What is the importance of viewport tag in Bootstrap?

a)

To execute the layout in browsers

b)

To control layout in mobile browsers

c)

To decrease size in bootstrap

d)

None of the abovee

14.

Which of the following is correct about Bootstrap jumbotron?

a)

This component can optionally increase the size of headings and add a lot of margin for landing page content.

b)

To use the Jumbotron: Create a container <div> with the class of .jumbotron.

c)

Both of the above

d)

None of the above

15.

A standard navigation tab is created with:

a)

<ul class=”navigation-tab”>

b)

<ul class=”nav-tab”>

c)

<ul class=”nav-nav-tab”>

d)

None of the above

16.

Which plugin is used to create a modal window?

a)

Modal

b)

Template

c)

Directive

d)

Carousel

17.

Which of the following class in bootstrap is used to create a big box for calling extra attention?

a)

box

b)

container

c)

container-fluid

d)

Jumbotron

18.

Which of the following is correct method to add a success button?

a)

<button class = "btn btn-success"> success </button>

b)

<button class = "btn button-success"> success </button>

c)

<button class = "button btn-success"> success </button>

d)

<button class = "button btn-primary"> success </button>

19.

The class in Bootstrap which is used to specify the collapsible elements is

a)

Collapse

b)

Page

c)

Carousel

d)

None of the above

20.

Which of the following class in Bootstrap is used to create a large button?

a)

btn-xl

b)

btn-sm

c)

btn-lg

d)

None of the above

21.

Responsive web design allows web developers to create a single design that works on

a)

Mobiles

b)

Smart TVs and PCs

c)

Tablets

d)

All of the above

22.

<div class="container">

<div class="row">

<div class="col-xs-6">

<h4>Column 1 </h4>

What does col-xs-6 represent?

a)

Class that span across six columns in a extra small devices

b)

Class that span across six columns in medium devices

c)

Class that span across six rows in large devices

d)

None of the above

23.

Contextual classes add _______________ to the components

a)

Colors

b)

Dimensions

c)

Layouts

d)

All of the above

24.

<span class="glyphicon glyphicon-heart"></span>

What will be the output?

a)

This code displays a mail icon

b)

This code displays a heart icon

c)

This code does not display anything

d)

None of the above

25.

Another type of pagination is created by

a)

a page header

b)

breadcrumbs

c)

progress bar

d)

None of the above