It Skills Manual
It Skills Manual
It Skills Manual
Design and create web page about advantages of Business process automation with
11 respect to your branch of engineering.
12 Create a workflow for education loan approval in bank/Diploma admission process(use
any tool)
13 Demonstrate ERP with ERPNext Demo for manufacturing, retail andservice sector
(Use any other ERP tools).
14 Create user account and demonstrate use of Google drive,Google docs,Google Co-
Lab(use Jupyter notebook)
15 15.1 Demonstrate Internet of Things using with examples
a. Smart home b. Smart city c. Smart farming
Step 1: Start
Step 2: Input a, b, c
Step 3: Let max=a
Step 4: is b> max? then max=b
Step 5: is c> max? then max=c
Step 6: Print max
Step 7: Stop
Step 1: Start
Step 2: Input n values
Step 3: i=1, sum=0
Step 4: if(i>n) then go to Step 8
end if
Step 5: sum=sum+i
Step 6: i=i+1
Step 7: Go to Step 4
Step 8: Print value of sum
Step 9: Stop
Page 3
IT SKILLS LAB MANUAL
Start
Input A, B
C= A+B
Print C
Stop
Start
Input A, B
C= A-B
Print C
Stop
Page 4
IT SKILLS LAB MANUAL
Page 5
IT SKILLS LAB MANUAL
Start
Input N values
i=0, sum=0
false
If
i <=N
true
Sum=sum+i
i=i+1
Print sum
Stop
Page 6
IT SKILLS LAB MANUAL
Keep Score
Go to chick panel and go to variable, select make variable and give score as variable and select
change score by 1 and place at the end of code and set score to 0 and place after go to x & y.
Once the Score becomes 5 then change the backdrop to WON and stop the game.
Page 7
IT SKILLS LAB MANUAL
CODE SECTION
1. CHICK
2. EGG
Page 8
IT SKILLS LAB MANUAL
OUTPUT:
Page 9
IT SKILLS LAB MANUAL
Page 10
IT SKILLS LAB MANUAL
5. Design and create webpage for displaying your poem (Title, header, paragraph, formatting
tags)
<html>
<head>
<title>poem</title>
</head>
<body>
<h1 align="center">TWINKLE TWINKLE LITTLE STAR </h1>
<h2> jane taylor 1806 </h2>
<p> Twinkle Twinkle little star!<br/> how i wonder what you are <br/>
up above the world so high! <br/> like a diamod in the sky </p>
<hr color="blue">
<image src="C:\ENV\star.png" width ="300" height="300" >
<br>
</body>
</html>
OUTPUT:
Page 11
IT SKILLS LAB MANUAL
6. Design and create webpage for your wish list (what you want to do). Also list the challenges and
opportunities along with the images to present your dreams (List ordered and unordered, Image,
Table)
<html>
<head>
<title>WISH LIST </title>
</head>
<body>
<h1 align="center"> MY WISH LIST </h1>
<br> <br> <br>
<table border="10">
<tr>
<th>wish list</th>
<th>Image </th>
<th>Brand name </th>
</tr>
<tr>
<td><ol><li>LAPTOP</li></td>
<td> <li> <image src="C:\ENV\laptop.jpeg" width="100" height="100"> </li></td>
<td> <ul> <li> LENEVO </li>
<li> Hp </li>
<li> DELL </li> </td> </ul>
</tr>
<tr>
<td><ol start="2"><li>SMART PHONE</li></td>
<td> <li> <image src="C:\ENV\phone.jfif" width="100" height="100"> </li></td>
<td> <ul> <li> SAMSUNG </li>
<li> OPPO </li>
<li> ONE PLUS </li>
<li> APPLE </li></td> </ul>
</tr>
</table>
<br>
</body>
</html>
OUTPUT:
Page 12
IT SKILLS LAB MANUAL
7. Design and create webpage using HTML and CSS about an awesome animal (Use necessary
CSS tags).
<html>
<head>
<title>AWESOME ANIMAL</title>
<style type="text/css">
.c1{background-color:yellow}
.c2{color:red}
.c3{font:30pt 'calibri'}
.c4{color:green}
</style>
</head>
<body class="c1">
<center>
<h1>TIGER</h1>
<p><span class="c4"> <b>Tiger is the largest member of the cat family.</b> </span> <br/>
<span class="c2"><b>It is territorial and generally solitary.<br/>
Tiger cubs stay with their mother for 2 years before they become independent</span></b><br/>
Tiger population is decreasing due to <span class="c3">POACHING</span>, habitat destruction
and habitat fragmentation</p>
<image src="C:\ENV\image\tiger.jfif" width="200" height="200">
<br>
</center>
</body>
</html>
OUTPUT:
Page 13
IT SKILLS LAB MANUAL
8. Design and create to demonstrate the concept of Hyperlinking of 2 or more web pages
Since we have already created the html pages for poem.html, wishlist.html and
CSS.html pages so we will link these 3 webpages
Step1. Open notepad and write the below program and save as hyperlink.html
<html>
<head>
<title>HYPERLINK</title>
</head>
<body>
<h1> HYPERLINK DEMO </h1>
<br><br>
<a href="wish.html">WISH LIST LINK </a> <br> <br>
<a href="css.html">TIGER CSS LINK </a><br> <br>
<a href="poem.html">POEM LINK </a> <br> <br>
</body>
</html>
Step2. Open all 3 webpages poem.html, wishlist.html and CSS.html before the end of body tag add this
tag.
<a href="hyperlink.html">back</a>
Page 14
IT SKILLS LAB MANUAL
Page 15
IT SKILLS LAB MANUAL
9. Design and create web page with JavaScript to design a simple calculator to perform the
following operation: Sum, Product, Difference and Quotient.
<html>
<head>
<title>CALCULATOR</title>
<script type="text/javascript">
var a,b,r;
function add()
{
a=document.myform.n1.value;
b=document.myform.n2.value;
a=parseFloat(a);
b=parseFloat(b);
r=a+b;
document.myform.result.value=r;
}
function sub()
{
a=document.myform.n1.value;
b=document.myform.n2.value;
a=parseFloat(a);
b=parseFloat(b);
r=a-b;
document.myform.result.value=r;
}
function mul()
{
a=document.myform.n1.value;
b=document.myform.n2.value;
a=parseFloat(a);
b=parseFloat(b);
r=a*b;
document.myform.result.value=r;
}
function div()
{
a=document.myform.n1.value;
b=document.myform.n2.value;
a=parseFloat(a);
b=parseFloat(b);
r=a/b;
document.myform.result.value=r;
}
</script>
</head>
Page 16
IT SKILLS LAB MANUAL
<body>
<form name="myform">
<center>
<h1>ARITHMETIC OPERATIONS </h1>
<h2><u>Enter a number in each text box</u></h2><br/><br/>
NUMBER 1: <input type="text" name="n1" value=""><br/>
NUMBER 2: <input type="text" name="n2" value=""><br/><br/>
<input type="button" value= "ADDITION" onclick="add()">
<input type="button" value= "SUBTRACTION" onclick="sub()">
<input type="button" value= "MULTIPLICATION" onclick="mul()">
<input type="button" value= "DIVISION" onclick="div()">
<br><br>
<br><br>
<font color="red">RESULT</font>
<input type="text" name="result" value="">
</center>
</form>
</body>
</html>
OUTPUT:
Page 17
IT SKILLS LAB MANUAL
Personal web pages are world wide web pages created by an individual to contain content of
a personal nature rather than content pertaining to a company, organization, or institution.
Many personal pages only include information of interest to friends and family of the author.
“Blog is a journal or diary written for public viewing on a website and consisting typically
of personal reflections, commentary on current events, etc. arranged chronologically”
Dashboard – the “home base” of WordPress. This is what you seen when you log in, and it contains
whatever widgets you’ve chosen to show onit.
Posts – the heart and soul of WordPress. This is where you’ll go when you want to write a blog
post or edit an existing one.
Media – a central repository for any pictures, sound files, video, and other pieces of media that
you upload to your site. Here you can browse through and edit media you’ve uploaded to your
posts and upload even more.
Pages – here you can create Pages, which is what you’ll be using for the main content on your site.
Pages are different from Posts because they will show up in your site’s main navigation instead of
going on your list of blog posts. This makes Pages good for “timeless” content like your biography,
work history, and contactinfo.
Comments – here you can see the comments on your blog (if you decide to have one). Here we
When we click on https://www.Blogger.com,we see the image as shown below, then click on
create your blog by signing in via Gmail.
Page 18
IT SKILLS LAB MANUAL
Next after log in with your Gmail account, Create a new blog give the name of the blog
Then create the new post, give the name of the post and type the content of the post about personal
reflections, commentary on current events, etc. arranged chronologically
After writing the post now you can PUBLISH the post
At last, you can share the blog to your family and friends.
OUTPUT
Page 19
IT SKILLS LAB MANUAL
11. Design and create web page about advantages of business process automation with respect to
your branch of engineering.
<html>
<head>
<title> Advantages of business process automation </title>
<style>
h1
{
color: red;
}
h2
{
color: White;
}
p
{
color: green;
}
</style>
</head>
<body bgcolor="pink">
<h1> Advantages of business process automation with respect to Computer Science</h1>
<h2> Transportation</h2>
<p> Driver for ola and Uber as well as those who deliver for app like ola and Uber </p>
<h2> Healthcare</h2>
<p> Automation in Healthcare have helped to increase the quality of patient care</p>
<h2> Online Marketing</h2>
<p> Automation in Online Marketing helps to customer to purchase and sell goods or products
using online applications </p>
<h2>Telecommunication</h2>
<p> Automation in Telecommunication helps to automate office system, customer service, billing
system etc. </p>
</body>
</html>
OUTPUT:
Page 20
IT SKILLS LAB MANUAL
12. Create a Workflow for Diploma Admission Process (Use any tool).
Login to trello using Gmail account using the link www.trello.com.
A Homepage of trello will be displayed on page.
Click on create new board.
Give a board name as Diploma Admission Process and select visibility option as team.
Create a List by click on add list button. Here we have created four list as follows.
1. Admission Verification
2. Document verification
3. Verified by DTE.
4. Approved by DTE.
Click on add card for each list created and explain the steps involved in each process.
Click on labels to add labels for each list.
Green colour-> Completed.
Yellow colour->under process.
Red colour-> Rejected.
Go to menu and change background
Save workflow and Logout from trello.
OUTPUT:
Page 21
IT SKILLS LAB MANUAL
13. Demonstrate ERP with ERPNext Demo for manufacturing, retail andservice sector (Use any
other ERP tools).
1. Open up your web browser and go to the www.odoo.com website t, login with your email id. Then
Home page of odoo will display.
Odoo Manufacturing Flow:
1. Creating a manufacturing order click on Manufacturing->operation-> Manufacturing Order, click on
Create button.
2. Enter the details in the form
Product: Select product to manufacture in odoo manufacturing.
Quantity to Produce: Add the total quantity to produce.
Bill of material: add bill of material.
Deadline: Add deadline for production of the order.
Plan form: add planned date for production of the order.
Components: Raw material for production the product.
3. After adding all the details click on mark as to-do button for processing the order.
4. Click on Check availability->Produce.
Page 22
IT SKILLS LAB MANUAL
OUTPUT:
Page 23
IT SKILLS LAB MANUAL
Page 24
IT SKILLS LAB MANUAL
14. Create user account and demonstrate use of Google drive, Google docs, Google Co-lab(Usage
of Jupyter Notebook)
Google drive:
1. Go to drive.google.com on your computer, go to drive.google.com. You‟ll see "My Drive," which
has: Files and folders you upload or sync
2. Upload files and folders to Google Drive
Can upload files from your computer using File Upload option or create files in Google Drive.
3. Share and organize files
Can share files or folders, so other people can view, edit, or comment on them.
4. To see files that other people have shared with you, go to the "Shared with me" section
Page 25
IT SKILLS LAB MANUAL
Google Docs
1. Open the Docs home screen at docs.google.com.
2. Click on “Start a new document," click Blank New.
3. Formatting Text
Using Google Docs toolbar, you can change the text, the font style and even assign specific font style
for particular sections of the text. Along with this, Google Docs provides editing options like
paragraph spacing and alignment.
4. Creating table of contents
On your Google Docs click where you want the table of contents to be placed. Click Insert on the menu
bar and select Table of contents. You can choose with page numbers or with blue links. In case you
want to delete the table, right-click and select delete.
5. Inserting images and tables
Choose Image from the Insert tab and select the following option – Upload, Take a snapshot, By URL,
Your albums, Google Drive and Search. Make sure that the image you select must be less than 50 MB
and should be one of the following file formats – .gif, .jpg or .png.To undo or redo an action, at the top,
click Undo or Redo.
6. Share & work with others
Can share files and folders with people and choose whether they can view, edit, or comment.
Page 26
IT SKILLS LAB MANUAL
OUTPUT:
Page 27
IT SKILLS LAB MANUAL
Sending Mail:
Google Drive:
Google Docs:
Page 28
IT SKILLS LAB MANUAL
Google Co Labs:
Page 29
IT SKILLS LAB MANUAL
Page 30
IT SKILLS LAB MANUAL
B. Smart City:
Smart Parking: It makes the search for parking space easier and convenient for drivers. Smart
parking is powered by IOT system that detects the number of empty parking slot and sends
information over the internet. To smart application back ends.
Smart Roads: Smart Roads are equipped with the sensors can provide information on driving
condition, travel time estimating and alert in case of poor driving condition, traffic condition and
accidents.
Structural Health Monitoring: I use a network of sensors to monitor the vibration level in the
structures such as bridges and buildings.
Surveillance: This infrastructure helps in public transport and events in cites is required to ensure
safety and security.
C. Smart Farming:
Smart Irrigation: It helps to determine moisture amount in soil.
Green house control: The use of IOT sensors enables them to get accurate real time information
on greenhouse condition such as lighting, temperature soil condition and humidity.
Monitoring of climate condition: Smart auricular gadgets, farming sensors are used to map
climate conditions, choose appropriate crops etc.
Crop Management: It helps to monitor crop growth and effectively prevent any diseases or
infestations that can harm your yield.
Page 31
IT SKILLS LAB MANUAL
There are many antivirus software are available in market like Avast, Mcfree, 360Total Security,
Kaspersky, AVG etc.
Here we are considering 360TotalSecurity antivirus for installation.
1. Open the web browser and download free 360TotalSecurity antivirus.
2. Locate your program under the “Products” tab on the 360 Total Security website. Click the
“Download” button to download the anti-virus software for free.
3. Once the program downloads, locate the installer file and double click to open.
360 Total Security: 360TS_Setup_Mini
4. Select your language option and click “Install” to continue the installation process.
5. After installation click on start to setup antivirus.
6. Using antivirus software can perform operation like virus scan, clean-up, speed up etc.
OUTPUT:
Page 32
IT SKILLS LAB MANUAL
Page 33
IT SKILLS LAB MANUAL
The different examples of web browser are Google chrome, Internet Explorer, Mozilla Firefox etc.
Here the following steps involves browser setting for Google chrome for secure browsing.
1. Setting the default browser: Go to Setting and click the make Google chrome My Default Browser
button.
2. Auto download updates: Google chrome automatically updates whenever it detects the latest new
version of browser is available.
3. Enable phishing and malware protection: Go to Advanced Settings-> Privacy-> enable phishing
and malware protection.
4. Don’t sync: Disconnect your email account from your browser under the “Personal Stuff” tab.
Syncing your email account with your Chrome browser means that personal information such as
passwords, auto fill data, preferences, and more is stored on Google’sservers.
5. Configure content settings: Click Content settings under the Privacy section and do the following.
Cookies: Select Keep local data only until I quit my browser and Block third-party cookies and site
data.”.
JavaScript: Select “Do not allow any site to run JavaScript.”
Pop-ups: Select “Do not allow any site to show pop-ups.
Location: Select “Do not allow any site to track my physical location.”
7. Do not Save Passwords: Go to setting-> Passwords and turnoff offer to save passwords.
8. Camera Access: Got o Setting-> Advanced-> content setting->camera and turn on Ask before
accessing (recommended).
9. Microphone Access: Got o Setting-> Advanced-> content setting->Microphone and turn on Ask
before accessing (recommended).
10. Automatic Downloads: Go to Setting-> Advanced-> content setting->Automatic downloads and
turn on Ask when a site tries to download files after the first file (recommended).
Page 34
IT SKILLS LAB MANUAL
1. Password Protect for Everything: The entire digital device like computer, tablets, smart phones
or any other gadget with personal data on them should be password protected for increased
security.
2. Keep the Computer Virus free: The operating system is up to date with latest security patches,
run an antivirus program to watch for virus.
3. Secure you’re Browser: Browser is the one to interact with digital world, so it is necessary to do
all security setting to keep browser safe.
4. Use only trusted software: Make sure that new software to install in system or mobile device
should be licensed.
5. Use only secure Wi-Fi Connection: Make sure to use secured internet connection so that data
should be safe.
1. Phishing:
Phishing is a type of social engineering attack used to steal user data including login details and credit card
details. It occurs when an attacker as a trusted entity, dupes a victim into opening an email, instant message
or text message. The recipient is then tricked into clicking a malicious link or the revealing of sensitive
information.
Page 35
IT SKILLS LAB MANUAL
4. Eavesdropping:
Eavesdropping is a theft of information as it is transmitted over a network by a computer,
Smartphone or another connected device.
This attack takes advantages of unsecured network communications to access data as it‟s is being
sent or received by its user.
5. Spamming:
Spamming is the use of messaging system to send a spam to large number of recipients. Sending
an unwanted email or message to another spam includes adverting, instant messaging etc. A person
who creates spam is called a spammer.
6. Virus:
A computer virus is a type of malicious code or program written to alter the way a computer
operators and is designed to spread from one computer to another computer.
A virus cause unexpected or damaging effects such as harming the system software by
corrupting data.
Page 36