Raunak PracF Final1
Raunak PracF Final1
RAUNAK NATH
PRACTICAL FILE
CLASS 12 A
WEB APPLICATION(803)
Index
SL PG
Topic
No. No.
Section-A- Employability Skills
1 Self-Management Skills 4
3 ICT Skill 11
4 Entrepreneurship Skill 14
5 Green Skills 19
6 E-Raksha 22
7 Tribal Community 25
8 Digital Financial Security 34
Customizing and Embedding Multimedia
Components in Web Pages
9 Rabindranath Tagore (Audio) 30
13 Nested If 44
14 House Image 52
2
Section A
Employability Skills
4
Class: XII
a)
5
ANS- I must wash the plates and glasses and dry them with a towel.
Then, I must arrange them in the cupboard.
That doesn't sound too bad! I must get started!
b)
ANS-
Muhammed should go to the nearest store without wasting time and get
the missing ingredient. He can then begin baking.
6
ANSWERS
Q1) Components of self-management skills are-
ANS) Positive thinking- to think that one can get things
done and be happy.
Result in orientation: -to dream big and achieve the
desired or set results.
Self-awareness- to be aware of one’s personality
traits and make the best out of one’s strengths.
Q2) Steps to achieve our results-
ANS)
(i) Set clear goals: Setting clear and accurate goals is
the first step one needs to take to meet the targets.
(ii) Prepare an action plan: An action plan describes
the way a person or an organization will meet the set
objectives. It gives a detail of the steps to be taken
to achieve the target. Therefore, it consists of several
actions or steps that need to be taken and changes
that need to be made. Each action, step, or change
should include the following information.
• What changes will occur after the actions?
• Who will carry out the changes?
• When will the changes take place?
• How long will the changes stay?
• What resources are needed to carry out
the changes?
• Who should know and what should be
communicated?
(iii) Use the right resources and tools: One must
evaluate the resources and tools needed to
achieve those results and whether they are
available. For example, you may want to clear the
college entrance exam with 70 percent marks.
Do you have the books to study for the exam?
If not, from where and how can you get them?
(iv) Communicate with mentors and peers: One
must talk to teachers, seniors, and mentors for
help in setting realistic goals.
(v) Make a calendar: One must make a calendar to
monitor the progress at regular intervals.
(vi) Work hard: One must work hard and believe in
one’s dreams.
7
Session1-Active Listening
ANS B) Clear
ANS B) Communication
Session2- Parts of Speech
9
ANS D) Interjections
ANS C) 8
ANS C) Adverb
10
ANS C) Prepositions
ANS C) Exclamatory
11
6. Which function will allow you to display the number of items? With
reference to cell address, write the formula/function.
- To display the number of items, you can use the COUNTA function.
Assuming the Item Name column starts from cell B2, you can enter the
formula `=COUNTA(B2:B7)` in any desired cell to get the count of items.
This function counts all non-empty cells in the given range.
14
15
16
17
18
19
GREEN SKILLS
Earth Day Video
Video link- https://youtu.be/xJaHWqRg9RE
20
21
Section-B
Subject-specific
skills
22
E-Raksha
Important Guidelines:
Topic:-
Note:
▪ If you choose to write any text in the video, please make sure that it is
either in Hindi or English.
▪ Credits should be given wherever necessary.
▪ Individual can submit their self created entry.
▪ Team Entry with participation of maximum 5 individuals will also be
accepted in this category only.
▪ The entry should not feature any religious subject matter, national
flag, racial, defamatory or any specific person, group, or business
name.
▪ The reels/shorts should not be more than 30 seconds.
▪ The maximum duration of the short movies, awareness videos,
songs, podcasts, satires, parodies, and interviews should not exceed
8 minutes.
▪ The participants have to upload the entry on Youtube/ Instagram/
Twitter/ Facebook and share the link in the registration form.
▪ No documentaries will be accepted.
24
Registration:-
https://www.eraksha.net/register-now/
25
Tribal Community
26
27
File Extensions
29
30
Code:
<html>
<head><title>Rabindra Nath Tagore</title></head>
<body bgcolor='#ADD8E6'>
<center><h1 style="color:green;font-size:46px;"> Rabindranath Tagore
</h1>
<img src='portrait.jpg' alt='portrait.jpg'><br>
<audio src='rnsangeet.mp3' type='audio/mp3' controls loop
autoplay></audio>
<br>
<font size=3 face="Arial" color='grey'>
<b>Fact Sheet :<br>
Date of Birth: May 7, 1861<br>
Place of Birth: Calcutta, British India<br>
Date of Death: August 7, 1941<br>
Place of Death: Calcutta, British India<br>
Profession: Writer, song composer, playwright, essayist, painter<br>
Spouse: Mrinalini Devi<br>
Children: Renuka Tagore, Shamindranath Tagore, Meera Tagore,
Rathindranath Tagore and Madhurilata Tagore<br>
Father: Debendranath Tagore<br>
Mother: Sarada Devi<br>
Award: Nobel Prize in Literature (1913)</b>
</center>
<br><br>
</font>
<font size=5 face="Segoe UI" color='red'>
<b>Rabindranath Tagore (1861-1941)</b> was the youngest son of
Debendranath Tagore, a leader of the Brahmo Samaj, which was a new
religious sect in nineteenth-century Bengal and which attempted a revival of
the ultimate monistic basis of Hinduism as laid down in the Upanishads. He
32
Banking has migrated to digital and online platforms, like the majority of
other life admin activities. Nowadays, the majority of us access and manage
our finances via our smartphones and laptops, therefore it's critical to make
sure that our electronic data and information are secure and confidential.
Keeping such information secure is what digital financial security is all
about. This can involve safeguarding your pins and passwords as well as
defending yourself from abuse made possible by technology.
<br>
<b><u>Safety advice for online banking</b></u>
<br>
<i>Put a password on your computer, tablet, and phone.</i><br>
When not in use, password-protect your devices to prevent unauthorized
access and to safeguard yourself in case they are lost or stolen. For
instructions on how to set up password security, refer to your device's
documentation.
<br><br>
https://netfinance.wbresearch.com
</font>
</body>
</html>
37
Q2.
<!DOCTYPE html>
<html>
<head>
<title>Capitalise first letter</title>
<link href="style.css" rel="stylesheet" type="text/css" />
</head>
<body>
hello world
<script>
str="hello world"
strupper=str.charAt(0).toUpperCase() + str.slice(1);
38
document.write("<br>"+strupper);
</script>
</body>
</html>
Q3.
<!DOCTYPE html>
<html>
<head>
<title>String in Between</title>
</head>
<body>
Hello world
<script type="text/javascript">
let string = 'Hello World';
let specIndex = 6;
let ent_str = 'Boring '
let result = string.substring(0, specIndex) + ent_str +
string.substring(specIndex);
document.write("<br>The resultant string becomes: ", result); </script>
</script>
</body>
</html>
Q4.
<!DOCTYPE html>
<html>
<head>
<title>Empty Strong</title>
</head>
39
<body>
<script>
string = prompt('Enter a string')
if(string.length>0){document.write('The string is not empty')}
else{document.write('The string is empty')}
</script>
</body>
</html>
Do in a MS Word document.
Save word document as Name_JSCW
Upload in Teams
Theory questions:-
eBook - Pg 221 Q5, 6, 7, 8, 13 ( Do not type the questions)
<html>
<body>
<script type="text/javascript">
//Take a string in a variable and display the use of any four string functions
on it.
Switch Case
Q)Take a single character from the user and check if it's a vowel or not.
Display which vowel entered as well
<html>
<title>Vowels</title>
<body>
<script type="text/Javascript">
//Take single character from user and check if its vowel or not.Display which
vowel entered as well
var alpha=(prompt("Enter a letter"));
utxt= alpha.toUpperCase();
switch(utxt)
{
case "A": chr="Vowel";
break;
case "E": chr="Vowel";
break;
case "I": chr="Vowel";
break;
case "O": chr="Vowel";
break;
case "U": chr="Vowel";
break;
default:chr="Consonant";
}
document.write("The letter is "+utxt+" is a "+chr);
</script>
</body>
42
</html>
break;
case 3:
day = "Wednesday";
break;
case 4:
day = "Thursday";
break;
case 5:
day = "Friday";
break;
case 6:
day = "Saturday";
}
document.write("Today is " + day);
</script>
</body>
</html>
44
Nested If
ANS-
<HTML>
<TITLE>Amount1</TITLE>
<BODY>
<SCRIPT LANGUAGE="JavaScript">
if(num1>50)
if(num1>20&&num1<=50)
if(num1>=5&&num1<=20)
else
</SCRIPT>
</BODY>
</HTML>
46
//WAP to enter time in 24 hours format. If time is less than 10:00 display
good morning, if not but less than 20:00 display a good day greetings
otherwise a good evening greeting
var d = new Date();
var hr = d.getHours();
if (hr < 10) {
document.write("Good Morning! ");
}
else if(hr < 20) {
document.write("Good Day!");
}
else {
document.write("Good Evening!");
}
</script>
</BODY>
</HTML>