803_WEB_APPLICATION_SQP
803_WEB_APPLICATION_SQP
803_WEB_APPLICATION_SQP
1 Chapter1: Basics of 7 1 - 1 9
Networking
2 Chapter 2: Website Building 9 1 1 2 13
Using HTML and CSS
3 Chapter 3: Multimedia Design 7 1 1 1 10
Using GIMP
4 Chapter 4: JavaScript Part 1 9 2 1 1 13
TOTAL QUESTIONS 32 5 3 5 45
NO. OF QUESTIONS TO BE Any 26 Any 3 Any 2 Any 3 34
ANSWERED
TOTAL MARKS 1x26=26 2x3=6 3x2=6 4x3=12 50 MARKS
Page 1 of 10
CBSE | DEPARTMENT OF SKILL EDUCATION
WEB APPLICATION (SUBJECT CODE -803)
Sample Question Paper for Class XI (Session 2024-2025)
General Instructions:
Page 2 of 10
SECTION A: OBJECTIVE TYPE QUESTIONS
Page 3 of 10
Q. 2 Answer any 5 out of the given 7 questions (1 x 5 = 5 marks)
Page 4 of 10
disclosing personal data like banking details, passwords, Aadhaar card
numbers, etc.
a. Both assertion and reason are true, and the reason is the correct
explanation of the assertion.
b. Both assertion and reason are true, but the reason is NOT the correct
explanation of the assertion.
c. Assertion is true, but the reason is false.
d. Assertion is false, but the reason is true.
Page 5 of 10
vii. You are designing an online registration form for a school event and need to 1
include a field where users can enter their name. Which HTML tag would you
use to create a text input field for this purpose?
a.<text_input>
b. <input type="text">
c. <data_entry>
d. <field>
Q. 4 Answer any 5 out of the given 6 questions (1 x 5 = 5 marks)
Page 6 of 10
Q. 5 Answer any 5 out of the given 6 questions (1 x 5 = 5 marks)
i. What is the correct syntax for using the conditional (ternary) operator? 1
a. Condition : First statement ? Second statement
b. Condition ? First statement : Second statement
c. First statement : Condition ? Second statement
d. Condition ? Second statement : First statement
ii. What will be the output of the following JavaScript code? 1
var s= “Class”;
var x=11;
alert(s+x);
a. Class 11
b. Class11
c. Class
d. 11
iii. Which method is used to take input from the user in JavaScript? 1
a. input()
b. prompt()
c. ask()
d. getInput()
iv. In the following JavaScript code, what does the iteration part do? 1
for (var i = 0; i < 10; i += 2) {
document.write(i + "<br>");
}
Page 7 of 10
ii. Where is a local variable accessible? 1
a) Anywhere in the code.
b) Only within the function where it is defined.
c) Only in the global scope.
d) In the entire program after the function executes.
iii. Rajesh, a web developer, is discussing different types of websites with his 1
team during a project meeting. He explains the difference between static
and dynamic websites to ensure everyone understands their respective
functionalities. Which type of website delivers web pages exactly as they
are stored, without real-time content changes?
a. Interactive website
b. Dynamic website
c. Static website
d. Personalized website
iv. Shreya, a novice web developer, is learning about HTML tags and their 1
uses. She wants to ensure she understands how comments work within
HTML documents.
Tell her the use of comment tag in HTML.
a. To style text content within the webpage.
b. To insert explanatory notes or annotations within the HTML source code.
c. To create clickable links to other webpages.
d. To define interactive forms and buttons on the webpage.
v. Is the correct key combination to select the Rotate Tool _____? 1
a. Shift + R
b. Ctrl + R
c. Alt + R
d. Shift + Ctrl + D
vi. What will be the output of following code snippet? 1
var a = 25, b = 15;
a++;
a *= 2;
b += a;
b--;
document.write(b);
a. 29
b. 39
c. 64
d. 5
Page 8 of 10
SECTION B: SUBJECTIVE TYPE QUESTIONS
Answer any 3 out of the given 5 questions on Employability Skills (2 x 3 = 6
marks) Answer each question in 20 – 30 words.
Q.7 Analyze the importance of communication in your daily life. Discuss at least 2
one specific scenario where effective communication plays a crucial role in
achieving positive outcomes.
Q.8 Imagine you have a brilliant idea for a new eco-friendly phone case company. 2
You're passionate about sustainability and see a gap in the market for stylish
phone cases made from recycled materials. However, you have no prior
experience in business or product development. What qualities do you think
are essential for a self-motivated person like yourself to turn an idea into a
reality?
Q.9 Raj and Priya are working together on a project report using LibreOffice Writer. They 2
need to review each other's edits and suggestions before submitting the final
document. However, Raj is unfamiliar with how to utilize the "Track Changes"
feature in LibreOffice Writer to manage their collaborative editing process smoothly.
Q.10 Mention any two key values that contribute to the success of an entrepreneur. 2
Q.11 Rahul, an environmental consultant, is advising a company on transitioning to a 2
green economy. He needs to identify the critical sectors that are vital for promoting
sustainability and reducing environmental impact. Based on your knowledge, which
sectors play a crucial role in promoting an environmentally friendly economy?
Answer any 2 out of the given 3 questions in 30– 50 words each (3 x 2 = 6 marks)
Q.17 Identify the following tools of GIMP: 3
a. Magnifies a selected part of an image
b. To select a color on an image
c. Create complex shapes, such as Bezier curves, geometrical figures, and
different polygonal shapes
d. To copy from an image or pattern
e. Resize the image
f. Select shapes using intelligent edge fitting
Page 9 of 10
Q.18 In how many categories tags can be divided? Briefly explain about them. 3
Q.19 JavaScript is an interpreted language, there are some common mistakes that won’t 3
display the code correctly on your browser. Mention three such cases.
Answer any 3 out of the given 5 questions in 50– 80 words each (4 x 3 = 12 marks)
Q.20 Alok, a small business owner, is considering setting up a network for his office to 4
improve communication and efficiency among his employees. He seeks advice on
the advantages and disadvantages of networking to make an informed decision.
List two advantages and two disadvantages of setting up a network in your office.
Q.21 Imagine you are tasked with styling a table on a webpage to improve its readability 4
and visual appeal. List four CSS properties you would use and explain briefly how
each property would enhance the table's presentation.
Q.22 Imagine you're a musician and you want to build a website to showcase your music. 4
You want to include both songs and music videos for your fans. How can you use
HTML tags to add your music and videos to your website? Describe the attributes
autoplay and muted of those tags.
Q.23 Define Filters. Give two examples of each of the following filters: 4
a. Light and Shadow Filters
b. Décor Filters
c. Artistic Filters
Q.24 Give the output of following programs 4
a. <script>
var num = 7;
if (num % 2 === 0) {
document.write(num + " is even.");
} else {
document.write(num + " is odd.");
}
</script>
b. <script>
var sum = 0;
for (var i = 1; i <= 10; i++) {
sum += i;
}
document.write("The sum of numbers from 1 to 10 is: " + sum);
</script>
c. parseInt("31.14")
d. <html>
<body>
<script>
for (i = 0; i < 5; i++) {
document.write("Life is Beautiful" +"<br>"); }
</script>
</body>
</html>
Page 10 of 10