You are on page 1of 3

SANSKRITI SCHOOL

Dr. S. Radhakrishnan Marg,


New Delhi

Academic Session: 2021-22


Pre Board II Examination
Subject: Web Applications (803)
Class- XII

Max. Time Allowed: 90 Minutes (1½ Hrs.) Max Marks: 30

General Instructions:

1. Please read the instructions carefully


2. This Question Paper is divided into 03 sections, viz., Section A, Section B and Section C.
3. Section A is of 05 marks and has 06 questions on Employability Skills.
a) Questions numbers 1 to 4 are one mark questions. Attempt any three questions.
b) Questions numbers 05 and 06 are two marks questions. Attempt any one question.
4. Section B is of 17 marks and has 16 questions on Subject specific Skills.
a) Questions numbers 7 to 13 are one mark questions. Attempt any five questions.
b) Questions numbers 14 to 18 are two marks questions. Attempt any three questions.
c) Questions numbers 19 to 22 are three marks questions. Attempt any two questions.
5. Section C is of 08 marks and has 03 competency-based questions.
a) Questions numbers 23 to 25 are four marks questions. Attempt any two questions.

6. Do as per the instructions given in the respective sections.


7. Marks allotted are mentioned against each section/question.

SECTION A (3 + 2 = 5 marks)

Answer any 03 questions out of the given 04 questions 1x3=3


Q.1 Who is a green collar worker? 1
Q.2 To address the skilled workforce issues associated with sustainable 1
development, the Ministry of Skill Development and Entrepreneurship has set
up the ______________________.

Q.3 How do sociologists define an entrepreneur? 1

Q.4 Who are business entrepreneurs? 1

Answer any 01 question out of the given 02 questions 1x2=2


Q.5 Write any 2 benefits of Green Jobs. 2

Q.6 Write 2 characteristics of entrepreneurship 2

1
SECTION B (5 + 6 + 6 = 17 marks)
Answer any 05 questions out of the given 07 questions 1x5=5
Q.7 Write the output of the following code:

var str="Friends in need are best to have around"; 1


document.write(str.match("Need")+"<br>");

Q.8 Choose the right option: 1

JavaScript objects are simply collections of:

a. value-name pairs
b. name-value pairs
c. name-name pairs
d. value-value pairs

Q.9 What are functions in JavaScript? 1

Q.10 The _________ object provides methods and properties for string manipulation 1
and formatting.

Q.11 ____________ is a feature that automatically provides you a list of codes and 1
attributes as a popup when you work in the code view mode.

Q.12 One can apply special effects to web pages in the MEW software just as we do in 1
presentation software. This helps present special effects to visitors. These special
effects are called as _______________________

Q.13 Snippets can be accessed from _______________ menu. 1

Answer any 03 questions out of the given 05 questions 2x3=6

Q.14 Define an Array “city” and assign 3 cities to the Array. 2

Q.15 What are “Events” in JavaScript? Explain any 2 commonly used events. 2

Q.16 Naman has written following code to accept a name from the user and display it 2
on the browser. His code is not running properly. Identify and underline the
syntax errors in the following code and write the corrected code:

function myFunction
{
var x;
var person;
person=prompt("please enter your name"," ");
If(person!=null)
{
x=("hello" +person+ "!how are u today?");
}

Myfunction();

2
Q.17 Explain the purpose of Site Summary 2

Q.18 What is Add-ins? How can we install Add-ins in MEW? 2

Answer any 02 questions out of the given 04 questions 3x2=6


Q.19 Explain the concat () method in JavaScript? Give an example of using the 3
concat () method.

Q.20 What are Objects? Explain the Built-in objects available in JavaScript. 3

Q.21 Write a function in JavaScript which accepts a number from the user and
displays if it’s an even or an odd number.
3
Q.22 What is Dynamic Web Template? Write any 2 features of DWT. 3

SECTION C (2 x 4 = 8 marks)
(COMPETENCY BASED QUESTIONS)

Answer any 02 questions out of the given 03 questions


Q.23 Write a program in JavaScript to: 4

- Accept the firstname of a Student


- Accept marks in 3 subjects (English, Hindi & Maths)
- Display the current date.
- Using built in Math functions, display the Maximum and Minimum
marks.

Q.24 A JavaScript array is initialized as follows: 4

var icecreams = [“Mango”,”Vanilla”,”Strawberry”]

Consider following code to manipulate the array:

a. icecreams.push(“Butterscotch”)

b. icecreams.sort()

c. icecreams.reverse()

d. icecreams.pop()

You need to determine the contents of the array. After every method, write the
output that will be displayed on the browser.

Q.25 Rekha created a website. Before she publishes the website, she needs to verify if 4
there are any pending issues. This will help her save time and unnecessary
problems that may arise post publishing the website. Give her necessary steps to
cleanup your web page for any unnecessary code, if any.

You might also like