IT Skill Lab Manual 20CS01P
IT Skill Lab Manual 20CS01P
Branch: …………………………………………….
Praperd by: Mr Thanmay J.S, H.O.D Mechanical Engineering VVETP, Mysore Page 1 of 28
Vidya Vikas Educational Trust (R),
Vidya Vikas Polytechnic
27-128, Mysore - Bannur Road Alanahally,Alanahally Post, Mysuru, Karnataka 570028
Government of Karnataka
Department of Collegiate and Technical Education
Board of Technical Examinations, Bangalore
Course Code 20CS01P Semester I/II
Course Title IT SKILLS Course Group ES/CS
No. of Credits 4 Type of Course Lecture + Practice
6Hrs Per Week
Course Category ES Total Contact Hours
78Hrs Per Semester
Prerequisites Basic Computer Skills Teaching Scheme (L:T:P)= 1:0:2
CIE Marks 60 SEE Marks 40
COURSE OBJECTIVES
1. Demonstrate the basics of coding.
2. Design and develop web pages that include static and dynamic content.
3. Describe the basic concepts of Cloud and IoT.
4. Express the workflow and business automation
5. Recognize the best practices of Cyber Safety and security.
Praperd by: Mr Thanmay J.S, H.O.D Mechanical Engineering VVETP, Mysore Page 2 of 28
Vidya Vikas Educational Trust (R),
Vidya Vikas Polytechnic
27-128, Mysore - Bannur Road Alanahally,Alanahally Post, Mysuru, Karnataka 570028
SUGGESTED PRACTICAL SKILL EXERCISES
Section A: Using Raptor
1) Write an algorithm for programmable problems Design a flowchart for programmable problems
Add/subtract two numbers Add/subtract two numbers
Find the largest/smallest of 3 numbers Find the largest/smallest of 3 numbers
Calculate and print sum of 'N' numbers Calculate and print sum of 'N' numbers
Praperd by: Mr Thanmay J.S, H.O.D Mechanical Engineering VVETP, Mysore Page 3 of 28
Vidya Vikas Educational Trust (R),
Vidya Vikas Polytechnic
27-128, Mysore - Bannur Road Alanahally,Alanahally Post, Mysuru, Karnataka 570028
Section A: Using Raptor
Raptor Overview [Download Link: https://raptor.martincarlisle.com/]
Raptor is a simple-to-use problem solving tool that enables the user to generate executable flowcharts. Raptor
was written for students being introduced to the computing discipline in order to develop problem solving
skills and improve algorithmic thinking. The primary window consists of four main areas:
The Symbols area in the upper left presents the 6 primary graphical symbols that can be used in Raptor:
• The assignment symbol is used to give a variable a numeric or string value.
• The call symbol is used to make calls to outside procedures, such as graphics routines.
• The input symbol is used for getting input from the user.
• The output symbol is used to display text to the Master Console.
• The selection structure is used for decision making.
• The loop structure is used for iteration and repetition.
The area immediately below the Symbols area is the Watch Window. This area allows the user to view the
current contents of any ’variables and arrays as the flowchart is executing. The large, white area to the right
is the primary Workspace. Users can build their flowcharts in this area and watch them update as they execute.
The workspace is tabbed. Most flowcharts have a single tab named "main”, but programmer-defined sub charts
appear as tabs in the workspace. The final area is the menu and toolbar. This area allows the user to change
settings and control the view' and execution of individual flowcharts.
Adding Symbols to a Flowchart
To build a flowchart, left click on a symbol in the Symbol Window. Move the mouse to the place in the
flowchart where the symbol belongs. You may need to move the cursor slightly to find an insertion point.
When the cursor is at an insertion point, the cursor will change to . When the left mouse button is
clicked at an insertion point, the selected symbol is added to the existing flowchart at the specified location.
Praperd by: Mr Thanmay J.S, H.O.D Mechanical Engineering VVETP, Mysore Page 4 of 28
Vidya Vikas Educational Trust (R),
Vidya Vikas Polytechnic
27-128, Mysore - Bannur Road Alanahally,Alanahally Post, Mysuru, Karnataka 570028
If symbols are incorrectly placed, select undo. Delete, or Cut from the Edit or Right Mouse Button menu.
Symbols may also be copied and pasted in another area of a flowchart. Once a symbol has been correctly
placed, you can double click the symbol to edit its contents.
Raptor Symbols
The six symbols used in Raptor are displayed in the Symbol Window in the upper left comer of the main
window.
a) Assignment
The assignment symbol is used to change the value of a variable. The right hand side of the assignment is
evaluated, and the resulting value is placed in the variable on the left hand side. For example, consider the
case where the value of x is currently 5, and the assignment "x <- x - 1" is executed. First "x+l" is evaluated,
yielding the result 6. Then the value of x is changed to be 6. Note that assignment is very different from
mathematical equality. The statement should be read "Set x to x+l" instead of "x equals x+l". The assignment
symbol can also be used to assign a string expression to a string variable
b) Call
The call symbol is used to invoke procedures such as graphics routines and other
instructor-provided procedures. The call symbol is also used to run sub charts
included in a Raptor program
c) Input
The input symbol is used to ask the user for a number or string while the flowchart is
executing. When an input symbol is executed, the user will be prompted with a dialog
to enter a value that can be interpreted as either a number or string, depending on what
the user. The user can also override the source for input by specifying a text file to be
used in place of the keyboard.
d) Output
The output symbol is used to either write a number or text to the Master Console window. The user can also
override the destination for output by specifying a text file to be used instead of the Master Console.
e) Selection
The selection structure is used for decision making. The programmer enters in the diamond an expression that
evaluates to Yes (True) or No (False). Such expressions are formally referred to as Boolean expressions. Based
on the result of the expression in the diamond, control of the program will branch either left (Yes. or Tine) or
right (No. or False).
f) Loop Control
The loop structure is used to repeat a sequence of symbols until a certain condition is met. When execution
reaches the bottom of the loop, it stalls over again at the top. The loop is excited when the diamond symbol is
executed and the Boolean expression in the diamond evaluates to Yes (True).
Praperd by: Mr Thanmay J.S, H.O.D Mechanical Engineering VVETP, Mysore Page 5 of 28
Vidya Vikas Educational Trust (R),
Vidya Vikas Polytechnic
27-128, Mysore - Bannur Road Alanahally,Alanahally Post, Mysuru, Karnataka 570028
Raptor Symbol Dialogs:
Symbol Assignment Call Input Output Selection Loop control
Dialogs
Appearance
Praperd by: Mr Thanmay J.S, H.O.D Mechanical Engineering VVETP, Mysore Page 6 of 28
Vidya Vikas Educational Trust (R),
Vidya Vikas Polytechnic
27-128, Mysore - Bannur Road Alanahally,Alanahally Post, Mysuru, Karnataka 570028
1) Write an algorithm for programmable problems Design a flowchart for programmable problems
Add/subtract two numbers Add/subtract two numbers
Find the largest/smallest of 3 numbers Find the largest/smallest of 3 numbers
Calculate and print sum of 'N' numbers Calculate and print sum of 'N' numbers
Section A: Experiment 01:
Step 1: Start.
Step 2: Read two numbers A and B.
Step 3: Answer = A + B.
Step 4: Display Answer.
Step 5: Stop.
Flow Chart
Step 1: Start.
Step 2: Read two numbers A and B.
Step 3: Answer = A - B.
Step 4: Display Answer.
Step 5: Stop.
Flow Chart
Praperd by: Mr Thanmay J.S, H.O.D Mechanical Engineering VVETP, Mysore Page 7 of 28
Vidya Vikas Educational Trust (R),
Vidya Vikas Polytechnic
27-128, Mysore - Bannur Road Alanahally,Alanahally Post, Mysuru, Karnataka 570028
Section A: Experiment 02:
Algorithm to find the largest of 3 numbers
Step 1:Star
Step 8:end
Flow Chart
Step 3:
Step 4: Stop
Flow Chart
Praperd by: Mr Thanmay J.S, H.O.D Mechanical Engineering VVETP, Mysore Page 8 of 28
Vidya Vikas Educational Trust (R),
Vidya Vikas Polytechnic
27-128, Mysore - Bannur Road Alanahally,Alanahally Post, Mysuru, Karnataka 570028
Section A: Experiment 03:
Step 8 : Stop
Flow Chart
Praperd by: Mr Thanmay J.S, H.O.D Mechanical Engineering VVETP, Mysore Page 9 of 28
Vidya Vikas Educational Trust (R),
Vidya Vikas Polytechnic
27-128, Mysore - Bannur Road Alanahally,Alanahally Post, Mysuru, Karnataka 570028
Section B: Using Scratch
Scratch Overview: [Download Link: https://scratch.mit.edu/download]
Scratch is a block based programming language that is perfect for making games, animations, interactive
stories and other visually rich programs. Scratch provided a friendly introduction to the kind of creative
problem solving that programmers do all the time. Scratch is easier to use than most other programming
languages for a number of reasons:
• You don’t have to remember or type any commands: they’re all on screen, so you can just drag and drop
them.
• Commands fit together like jigsaw pieces, so there are strong visual hints about how you can combine them.
• Error messages are rare. Because Scratch commands lock together, programs always make some kind of
sense. It is possible to still write programs with logical errors in, if they don’t do what you expected, but
Scratch guides you to write things that work, rather than nagging you when they don’t.
• The commands are color-coded and categorized, so you can easily find a command when you need it.
• The commands in Scratch simplify common activities in games, such as testing whether a missile has hit an
alien (collision detection), or rotating a character on screen.
Praperd by: Mr Thanmay J.S, H.O.D Mechanical Engineering VVETP, Mysore Page 10 of 28
Vidya Vikas Educational Trust (R),
Vidya Vikas Polytechnic
27-128, Mysore - Bannur Road Alanahally,Alanahally Post, Mysuru, Karnataka 570028
Blocks Palette: In Scratch, you give the computer commands by using blocks, which are instructions that fit
together like jigsaw pieces. The Blocks Palette presents you with all the blocks you can use. When you start
Scratch, you can see the Motion blocks, which are color-coded in dark blue, and are used for moving sprites
around the Stage. You can browse a different set of blocks in the Blocks Palette by clicking one of the buttons
above it, such as the Looks button or the Sound button.
Scripts Area: The Scripts Area is where you make your programs in Scratch, by assembling blocks there.
This area expands to fill the screen space available, so if you use a larger monitor, the Scripts Area will be
bigger.
Backpack: The Backpack is a new feature in Scratch 2.0, which you can find underneath the Blocks Palette
and Scripts Area. Click it to open it. It works a bit like a clipboard. You can copy scripts or sprites to it by
dragging them there and dropping them. If you want to use them, just drag them from the Backpack back into
your project. Your Backpack works across all your projects, so it’s a great way to copy sprites or bits of
program between different projects.
Types of Scratch games
a) Clicker game: In a clicker game, players click on-screen Sprites to earn points on each successful action.
b) Chase game: Control a sprite and move it around to score points.
c) Pong game: This can create a game using the mouse to guide the paddle and knock the ball back to the
opponent’s side.
Scratch interface
a) File menu: This is where games can be saved (to the Scratch account or computer) and project files can
be loaded.
b) Code Tab: This is where all the code blocks are kept. Creators can add code blocks to Sprites and
backdrops to animate their scenes.
c) Costumes Tab: This is where Scratch sprites and their costumes can be created and edited.
d) Sounds Tab: This is where Sprite sound files can be added and deleted.
e) Project Name: This is where projects are named.
f) Coding Area: This is where code blocks are placed in order to create Sprite animations.
g) Green Flag (Start): The green flag button, or the start button, is used to run code.
h) Game Preview: This window displays the scene - or game - where creators can preview their code and
quickly see how changes to code will affect the game.
i) Sprite: Sprites are kept in the Sprite panel. Clicking on each Sprite allows you to edit the code blocks
attached to it.
j) Backdrop: The Backdrop is the background art for the scene.
k) Choose a Sprite: With this button in the bottom right corner, new Sprites can be added to scenes.
Praperd by: Mr Thanmay J.S, H.O.D Mechanical Engineering VVETP, Mysore Page 11 of 28
Vidya Vikas Educational Trust (R),
Vidya Vikas Polytechnic
27-128, Mysore - Bannur Road Alanahally,Alanahally Post, Mysuru, Karnataka 570028
Section B: Experiment 01: Design and create simple game using scratch [Jumping Game / Pong Game]
Praperd by: Mr Thanmay J.S, H.O.D Mechanical Engineering VVETP, Mysore Page 12 of 28
Vidya Vikas Educational Trust (R),
Vidya Vikas Polytechnic
27-128, Mysore - Bannur Road Alanahally,Alanahally Post, Mysuru, Karnataka 570028
Step 06: Make more obstacles
Praperd by: Mr Thanmay J.S, H.O.D Mechanical Engineering VVETP, Mysore Page 13 of 28
Vidya Vikas Educational Trust (R),
Vidya Vikas Polytechnic
27-128, Mysore - Bannur Road Alanahally,Alanahally Post, Mysuru, Karnataka 570028
Section C: Webpage Designing
[Hyper Text Markup Language] HTML overview
HTML stands for Hyper Text Markup Language
HTML is the standard markup language for creating Web pages
HTML describes the structure of a Web page
HTML consists of a series of elements
HTML elements tell the browser how to display the content
HTML elements label pieces of content such as "this is a heading", "this is a paragraph", "this is a link",etc.
Structure of HTML
Praperd by: Mr Thanmay J.S, H.O.D Mechanical Engineering VVETP, Mysore Page 14 of 28
Vidya Vikas Educational Trust (R),
Vidya Vikas Polytechnic
27-128, Mysore - Bannur Road Alanahally,Alanahally Post, Mysuru, Karnataka 570028
Step 3: Save the HTML Page
Save the file on your computer. Select File > Save as in the
Notepad menu. Name the file "index.htm" and set the
encoding to UTF-8 (which is the preferred encoding for
HTML files).
HTML Headings
HTML headings are defined with the <h1> to <h6> tags.
<h1> defines the most important heading. <h6> defines the least important heading:
Example:
HTML Paragraphs
HTML paragraphs are defined with the <p> tag:
Praperd by: Mr Thanmay J.S, H.O.D Mechanical Engineering VVETP, Mysore Page 15 of 28
Vidya Vikas Educational Trust (R),
Vidya Vikas Polytechnic
27-128, Mysore - Bannur Road Alanahally,Alanahally Post, Mysuru, Karnataka 570028
HTML Images
HTML images are defined with the <img> tag.
The source file (src), alternative text (alt), width, and height are provided as attributes:
Example:
HTML Elements
The HTML element is everything from the start tag to the end tag:
<tagname>Content goes here...</tagname>
Examples of some HTML elements:
<h1>My First Heading</h1>
<p>My first paragraph.</p>
Praperd by: Mr Thanmay J.S, H.O.D Mechanical Engineering VVETP, Mysore Page 16 of 28
Vidya Vikas Educational Trust (R),
Vidya Vikas Polytechnic
27-128, Mysore - Bannur Road Alanahally,Alanahally Post, Mysuru, Karnataka 570028
<mark> - Marked text
<small> - Smaller text
<del> - Deleted text
<ins> - Inserted text
<sub> - Subscript text
<sup> - Superscript text
Example
<b>This text is bold</b>
Example
<strong>This text is important!</strong>
Praperd by: Mr Thanmay J.S, H.O.D Mechanical Engineering VVETP, Mysore Page 17 of 28
Vidya Vikas Educational Trust (R),
Vidya Vikas Polytechnic
27-128, Mysore - Bannur Road Alanahally,Alanahally Post, Mysuru, Karnataka 570028
Section C: Experiment 01: Design and create webpage for displaying your poem (Title, header, paragraph,
formatting tags)
Program in Note Pad
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>All about rabbits!</title>
</head>
<body>
<h2>Basic info</h2>
<p>
Johny, Johny,<br>
Yes papa?<br>
Eating sugar?<br>
No papa.<br>
Telling lies?<br>
No papa.<br>
Open your mouth<br>
Ha ha ha! <br>
</p>
</body>
</html>
Output in HTML
Praperd by: Mr Thanmay J.S, H.O.D Mechanical Engineering VVETP, Mysore Page 18 of 28
Vidya Vikas Educational Trust (R),
Vidya Vikas Polytechnic
27-128, Mysore - Bannur Road Alanahally,Alanahally Post, Mysuru, Karnataka 570028
Section C: Experiment 02: Design and create webpage for your wish list (What you want to do). Also list
challenges and opportunities along with images to present your dreams (List ordered and unordered, Image,
table)
Program in Note Pad [Ordered List] Output in HTML
<!DOCTYPE html>
<html lang="en">
<head>
<title>HTML Ordered List</title>
</head>
<body>
<h2>HTML Ordered List</h2>
<ol>
<li>Fasten your seatbelt</li>
<li>Starts the car's engine</li>
<li>Look around and go</li>
</ol>
<hr>
</body>
</html>
Program in Note Pad [Unordered List] Output in HTML
<!DOCTYPE html>
<html lang="en">
<head>
<title>HTML Unordered List</title>
</head>
<body>
<h2>HTML Unordered List</h2>
<ul>
<li>Chocolate Cake</li>
<li>Black Forest Cake</li>
<li>Pineapple Cake</li>
</ul>
<hr>
</body>
</html>
Program in Note Pad [Inserting Images] Output in HTML
<!DOCTYPE html>
<html>
<body>
<h2>HTML Monkey Image</h2>
<img src="Monkey.jpg" alt="Trulli" width="600"
height="333">
</body>
</html>
Praperd by: Mr Thanmay J.S, H.O.D Mechanical Engineering VVETP, Mysore Page 19 of 28
Vidya Vikas Educational Trust (R),
Vidya Vikas Polytechnic
27-128, Mysore - Bannur Road Alanahally,Alanahally Post, Mysuru, Karnataka 570028
Program in Note Pad [Inserting Table] Output in HTML
<!DOCTYPE html>
<html lang="en">
<head>
<title>HTML Table with Collapsed
Borders</title>
<style>
table {
border-collapse: collapse;
}
table, th, td {
border: 1px solid black;
}
th, td {
padding: 10px;
}
th {
text-align: left;
}
</style>
</head>
<body>
<h2>Table with Collapsed Borders</h2>
<table>
<tr>
<th>No.</th>
<th>Name</th>
<th>Register Number</th>
</tr>
<tr>
<td>1</td>
<td>Rahul B M</td>
<td>456ME21001</td>
</tr>
<tr>
<td>2</td>
<td>Ravikumar M</td>
<td>456ME21002</td>
</tr>
<tr>
<td>3</td>
<td>Vikas Gowda</td>
<td>456ME21004</td>
</tr>
</table>
</body>
</html
Praperd by: Mr Thanmay J.S, H.O.D Mechanical Engineering VVETP, Mysore Page 20 of 28
Vidya Vikas Educational Trust (R),
Vidya Vikas Polytechnic
27-128, Mysore - Bannur Road Alanahally,Alanahally Post, Mysuru, Karnataka 570028
Section C: Experiment 03: Design and create webpage using HTML and CSS [Cascading Style Sheets] about
an awesome animal (Use necessary CSS tags)
Flyingsquirrel.jpg Girdledlizard.jpg platypus.jpg Seaswallow.jpg
Output Folder
Praperd by: Mr Thanmay J.S, H.O.D Mechanical Engineering VVETP, Mysore Page 22 of 28
Vidya Vikas Educational Trust (R),
Vidya Vikas Polytechnic
27-128, Mysore - Bannur Road Alanahally,Alanahally Post, Mysuru, Karnataka 570028
Section C: Experiment 04: Design and create web page for a travel book/recipe book with more than 1 pages,
Main Recipe Book HTML[recipe.html] Output
<!DOCTYPE html>
<html lang="en">
<head>
<title>Recipe Book</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-
width, initial-scale=1">
<link rel="stylesheet"
href="https://www.w3schools.com/w3css/4/w3.css">
</head>
<body class="w3-content">
<div class="w3-container">
<h1>Recipe</h1>
<p>Table of Contents</p>
<p><a href="Book1.htm">1. Chicken Fry</a></p>
<p>2. Fish Fry</p>
<p>3. Chicken Kabab</p>
<p>4. Biryani</p>
<p>5. Chicken Chilly Chops</p>
</div>
</body>
</html>
Page 01 extension [Book1.htm] Output
<!DOCTYPE html>
<html lang="en">
<head>
<body class="w3-content">
<div class="w3-container">
<h1>1. Chicken Fry</h1>
<h3>Items Required.</h3>
<ul>
<li>Chicken 1 kg</li>
<li>Chicken Fry Masala</li>
<li>Onion</li>
<li>Ginger garlic paste</li>
<li>Cooking oil</li>
<li>Pan</li>
</ul>
<p>Cooking Method:</p>
<ul>
<li>Ask the Chicken which Masala it needs?</li>
<li>Dont cry while cutting Onion</li>
<li>Dont eat Too much</li>
<li>check your weight after eating</li>
<li>See Doctor if there is any stomach upset</li>
</ul>
</div>
</body>
</html>
Praperd by: Mr Thanmay J.S, H.O.D Mechanical Engineering VVETP, Mysore Page 23 of 28
Vidya Vikas Educational Trust (R),
Vidya Vikas Polytechnic
27-128, Mysore - Bannur Road Alanahally,Alanahally Post, Mysuru, Karnataka 570028
Section C: Experiment 05: Design and create web page with HTML to design a simple calculator to perform
the following operations: sum, product and difference
HTML Code for Calculator
<html>
<head>
<title>HTML Calculator</title>
</head>
<body bgcolor= "#000000" text= "gold">
<form name="calculator" >
<input type="button" value="1" onClick="document.calculator.ans.value+='1'">
<input type="button" value="2" onClick="document.calculator.ans.value+='2'">
<input type="button" value="3" onClick="document.calculator.ans.value+='3'"><br>
<input type="button" value="4" onClick="document.calculator.ans.value+='4'">
<input type="button" value="5" onClick="document.calculator.ans.value+='5'">
<input type="button" value="6" onClick="document.calculator.ans.value+='6'">
<input type="button" value="7" onClick="document.calculator.ans.value+='7'"><br>
<input type="button" value="8" onClick="document.calculator.ans.value+='8'">
<input type="button" value="9" onClick="document.calculator.ans.value+='9'">
<input type="button" value="-" onClick="document.calculator.ans.value+='-'">
<input type="button" value="+" onClick="document.calculator.ans.value+='+'"><br>
<input type="button" value="*" onClick="document.calculator.ans.value+='*'">
<input type="button" value="/" onClick="document.calculator.ans.value+='/'">
<input type="button" value="0" onClick="document.calculator.ans.value+='0'">
<input type="reset" value="Reset">
<input type="button" value="="
onClick="document.calculator.ans.value=eval(document.calculator.ans.value)">
<br>Solution is <input type="textfield" name="ans" value="">
</form>
</body>
</html>
Output window
Praperd by: Mr Thanmay J.S, H.O.D Mechanical Engineering VVETP, Mysore Page 24 of 28
Vidya Vikas Educational Trust (R),
Vidya Vikas Polytechnic
27-128, Mysore - Bannur Road Alanahally,Alanahally Post, Mysuru, Karnataka 570028
Section C: Experiment 06: Design and create a personal webpage with dashboard
HTML Code Output
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="style.css">
<meta name="viewport" content="width=device-
width, initial-scale=1.0">
</head>
<body>
<div class="sidebar">
<div class="logo-details">
<i class='bx bxl-c-plus-plus'></i>
<span class="logo_name">Vidya Vikas
Polytechnic,Mysore </span>
</div>
<ul class="nav-links">
<li>
<a href="#" class="active">
<i class='bx bx-grid-alt' ></i>
<span class="links_name">Dashboard</span>
</a>
</li>
<li>
<a href="#">
<i class='bx bx-box' ></i>
<span class="links_name">Product</span>
</a>
</li>
<li class="log_out">
<a href="#">
<i class='bx bx-log-out'></i>
<span class="links_name">Log out</span>
</a>
</li>
</ul>
</div>
<section class="home-section">
<nav>
<div class="sidebar-button">
<i class='bx bx-menu sidebarBtn'></i>
<span class="dashboard">Dashboard</span>
</div>
<div class="search-box">
<input type="text" placeholder="Search...">
<i class='bx bx-search' ></i>
</div>
</body>
</html>
Praperd by: Mr Thanmay J.S, H.O.D Mechanical Engineering VVETP, Mysore Page 25 of 28
Vidya Vikas Educational Trust (R),
Vidya Vikas Polytechnic
27-128, Mysore - Bannur Road Alanahally,Alanahally Post, Mysuru, Karnataka 570028
Section C: Experiment 07: Design and create web page about advantages of business process automation
with respect to your branch of engineering
HTML Program Code
<html>
<head>
<center>Vidya Vikas Educational Trust(R)</center>
</title>
<link rel="stylesheet" href="xyz.css" type="text/css">
<style type="text/css">
font{font-family:georgia;color:blue;font-size:20}
ul{list-style-type:circle}
</style>
</head>
<body>
<ol style="list-style-type:lower-alpha">
<b>GROUP OF COLLEGES</b><br>
<li>Vidya Vikas Polytechnic
<li>Vidya Vikas Institution of Engineering & Technology
<li>Vidya Vikas Degree College
<li>Vidya Vikas Arts and Science
</ol>
<p style="font-size:20pt;color:purple">Vidya Vikas Polytechnic & ITI</p>
<p class="ani">127-128, Mysore - Bannur Road Alanahally,Alanahally Post, Mysuru, Karnataka
570028<br>It is approved by AICTE It is affliated to DTE Karnataka.<br></p>
<font>
List of Courses offered
<ul>
<li>Mechanical Engineering</li>
<li>Computer Science</li>
<li>Civil Engineering</li>
<li>Electronics & Electrical Engneering</li>
</ul>
</font>
<h2>Results of Mechanical students</h2>
<table width="100%" cellspacing="2" cellpadding="2" border="5">
<tr>
<th>S.NAME</th>
<th>MARKS</th>
<th>RESULT</th>
</tr>
<tr>
<td align="center">Rahul B M</td>
<td align="center">100</td>
<td align="center">pass</td>
</tr>
<tr>
<td align="center">Ravi Kumar M</td>
<td align="center">99</td>
<td align="center">pass</td>
</tr>
Praperd by: Mr Thanmay J.S, H.O.D Mechanical Engineering VVETP, Mysore Page 26 of 28
Vidya Vikas Educational Trust (R),
Vidya Vikas Polytechnic
27-128, Mysore - Bannur Road Alanahally,Alanahally Post, Mysuru, Karnataka 570028
<tr>
<td align="center">Vikas Gowda</td>
<td align="center">98</td>
<td align="center">pass</td>
</tr>
</table>
</body>
</html>
Output
Praperd by: Mr Thanmay J.S, H.O.D Mechanical Engineering VVETP, Mysore Page 27 of 28
Vidya Vikas Educational Trust (R),
Vidya Vikas Polytechnic
27-128, Mysore - Bannur Road Alanahally,Alanahally Post, Mysuru, Karnataka 570028
Section D: Workflow Designer
Create a workflow for education loan approval in bank/diploma admission process (Use any tool)
To be completed Later…
Praperd by: Mr Thanmay J.S, H.O.D Mechanical Engineering VVETP, Mysore Page 28 of 28