0% found this document useful (0 votes)
100 views32 pages

Practical 11 TH

Uploaded by

jigigaw324
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
100 views32 pages

Practical 11 TH

Uploaded by

jigigaw324
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 32

Maharashtra State Board Class 11 Information

Technology Practicals Skill Set 1 Daily


Computing (Libre Office)
SOP 1: Create a Resume

Maharashtra textbooks

• The resume should contain the following :


• Title at the center with applicable font and size.
• It should contain points such as Name, Address, Mobile Number, Date
of Birth, Nationality, Caste, Category, Hobbies, etc. Add some extra
points.
• For educational qualifications, a student should insert a table.
• In the end, students should write a few lines about their aim.
Answer:
Step 1: Click on the LibreOffice Writer icon.

Step 2: Create a New File.


File Menu → New → Text Document

Step 3: Write Title at the center with applicable font size. (Resume).

Step 4: Type Name, Address, Mobile Number, Date of Birth, Nationality, Caste,
Category, Hobbies, etc.

Step 5: Write Student educational qualifications (Insert Table).


Choose Table Menu → Insert Table → Select number of rows and columns →
Insert.
Step 6: Write some lines about the aim, select the text and make it bold by
clicking on the bold option from the formatting toolbar.
After Completing this practical students will learn how to create resumes using
LibreOffice, also tab setting and table creation.

SOP 2: By using Mail Merge send an invitation for your birthday party.

• Use the mail merge feature.


• Send an invitation to at least 5 friends.
Answer:
Choose Tools – Mail Merge Wizard.
Step 1: Select Start from a template, and click the Browse button. You see the
New dialog.

Step 2: Select five friends Details in the left list, and then the Invitation letter in
the right list.
Click OK to close the Templates dialog, and click Next in the wizard.

Step 3: Select Letter and click Next.

Step 4: On the next step of the wizard, click the Select Address List button to
check that you are using the correct address list. If you want to use an address
block, select an address block type, match the data fields if necessary, and
click Next.

Step 5: Next follows the Create a salutation step. Deselect the Insert
personalized salutation box. Under General salutation, select the salutation
that you want on top of all letters.

Step 6: If you want to place mail merge fields anywhere else in the Invitation
document select the corresponding column in your address data source and
then drag and drop the column header into the invitation document where
you would like the field to be. Be sure to select the entire column.

Step 7: Click Next and finally Finish creating the mail merge.

SOP 3: Create a mark list. The mark list should display:


• Fields as Name, Math, Physics, Chemistry, Biology, Total, Percentage.

• Below each subject find out the lowest marks and highest marks.
• Enter a minimum of 10 records.
• Declare the first three ranker students.
• Create a chart based on the above data.
Answer:
Step 1: Open LibreOffice Calc and add fields like Name, Math, Physics,
Chemistry, Biology, Total, Percentage.

Step 2: Enter 10 records in it.

Step 3: To Calculate Total


Click inside the cell where the total has to be calculated. (Use
=SUM(A2:D2) formula) – Type the range of cell.

Step 4: Now click inside the cell where the percentage has to be calculated.
Calculate Percentage using formula = E2* 100/400, drag the formula for
remaining cells.

Step 5: Enter a minimum of 10 records. And calculate the result.

Step 6: Find out the Lowest Marks


Calculate Lowest marks using formula = min(A2:A11), drag formula for
remaining cells.
Step 7: Find out the Highest Marks
Calculate Highest marks using formula =max(A2:A11), drag formula for
remaining cells.

Step 8: Now Show the first three ranker students. Use Sort Option for sorting
and auto filter.

Step 9: To find the first ranker use formula =large(F2:F11,1)

Step 10: To find the second ranker use formula =large(F2:F11,2)


Step 11: To find the third ranker use formula =large(F2:F11,3)

Step 12: To create a chart Select Complete Table → Click on Insert Menu →
Click on Chart Option.
A window will appear, which starts with the chart wizard → Select Chart type.

SOP 4: Create an Informative presentation on your college.

• The presentation should contain a minimum of 8 slides.


• One slide should contain a chart.
• One slide with an image.
• Each slide should contain custom animation & slide transition effect.
Answer:
Step 1: Preparing an Eight slide for an Informative presentation of your
college.
Press the Ctrl + N Keys. OR choose Slide → New Slide from Menu bar. OR
Click on the New Slide icon on the Standard Toolbar.

Step 2: Specify the background image. OR background colour.


Now First Choose Slide Menu → Click on Insert Menu → Click on Image
Submenu (inserting college Image with information )

Step 3: Click on Insert Menu → Click on Chart Option.

Step 4: Click on object presentation → from slide bar select Custom Animation
each object → Choose category, effect, duration, direction, etc.

Step 5: Click on Press F5 function key for slide show


OR
Select slide menu → Start from the first Slide from the menu bar.
OR
Click on the start from the first slide Icon on the standard Conclusion: After
Completing this practical students will be known how to create an informative
presentation, custom animation & slide transition effect using
Maharashtra State Board Class 11
Information Technology Practicals Skill Set
2 Web Designing (HTML – 5)
SOP 1: Write a program using HTML with the following specifications.

 The background colour should be green.


 The text colour should be red.
 The heading should be as large in size as ‘My First Web Page’.
 Display a horizontal line after the heading.
 Display your name in Bold, address in Italics, and standard as 11th.
Answer:
<!DOCTYPE html>
<html>
<head>
<title>sop1</title>
</head>
<body bgcolor=green text= red>
<h1> My First Web Page </h1>
<hr>
<b> Reliable Publications</b>
<br>
<i> Chira bazar,Charni road,Mumbai</i>
<br>
Standard 11th.
</body>
</html>
SOP 2: Create a web page with, following specifications.

 Image of any scientist with an alternate text as his name.


 Create a paragraph related to the information of that scientist.
 Create a table of his/her inventions.
Answer:
<!DOCTYPE html>
<html>
<head>
<title>sop2</title>
</head>
<body>
<img src=”Albert Einstein.jpg” alt=”Albert Einstein”>
<br>
<p>
Albert Einstein was a German-born theoretical physicist who developed the
theory of relativity,<br> one of the two pillars of modern physics.His work
is also known for its influence on the philosophy of science.
</p>
<table border=5 bordercolor=pink>
<tr>
<th> Sr no.</th>
<th> Invention </th>
<th> Year</th>
</tr>
<tr>
<td>1</td>
<td>Quantum Theory of Light </td>
<td>1905</td>
</tr>
<tr>
<td>2</td>
<td>Theory of Relativity</td>
<td>1907</td>
</tr>
</table>
</body>
</html>
SOP 3: Create a webpage with the following specifications.

 Display heading ‘Application Form’ in the highest heading with center


alignment.
 Accept name, standard 11th or 12th with only one selection choice.
 Submit the form.
Answer:
<! DOCTYPE html>
<html>
<head> <title> sop3</title>
</head>
<body>
<h1 align=center> Application Form </h1>
<form>
Enter Name:<input type=text name=t1>
<br><br>
Standard:<br>
<input type=”radio” name=r1>11th<br>
<input type=”radio” name=r1>12th<br>
<br><br>
<input type=”submit” value=”Submit”>
</form>
</body>
</html>

SOP 4: Write a program using HTML with the following specification.


A webpage with details about a class with a total number of students-100,
(Boys – 50), Girls – 50 in tabular form.
e.g.

Link this page to another page as follows.

Demo.html
Answer:
<!DOCTYPE html>
<html>
<head>
<title>New Page 1</title>
</head>
<body>
<center>
<table border=”1” width=”69%” >
<tr bgcolor=pink>
<td>Number of Students</td>
<td>Boy</td>
<td>Girls</td>
</tr>
<tr bgcolor=”lightgreen”>
<td>100</td>
<td>50</td>
<td>50</td>
</tr>
</table>
</body>
</html>

Demo
<!DOCTYPE html>
<html>
<head>
<title>the heading</title>
</head>
<BODY>
<header>
<center>
<table border=”1” align=center>
<tr align=center>
<td><a href=”sop4.html”>STD – XI</a>
<br>Stream – Science<br>
Div – A<br></td>
</tr>
</table>
</body>
</html>
Maharashtra Board Class 11
Information Technology
Practicals Skill Set 3 Client Side
Scripting (JavaScript)
Study guides for Maharashtra board exams
Drones for commercial use
May 1, 2023 by Bhagya
Powered by

Balbharati Maharashtra State Board Class 11 Information Technology


Solutions Practicals Skill Set 3 Client
Side Scripting (JavaScript) Textbook Exercise Questions and Answers.

Maharashtra State Board Class 11


Information Technology Practicals Skill Set
3 Client Side Scripting (JavaScript)
SOP 1: Create a JavaScript program for the following using appropriate
variables, JavaScript inbuilt functions, and control structures.

 To accept an integer and display the result by multiplying it with 3.


 To accept two integers and display a larger number of them.
 To check whether the user entered number is positive or negative.
Study guides for Maharashtra board exams
Answer:
To accept integer and display the result by multiplying it with 3.
<!DOCTYPE html>
<head>
<title>To accept integer and display the result by multiplying it with
3.</title>
</head>
<body>
<script language=”javascript”> var a,no,ans;
a=prompt(Enter any value’);
no=parseInt(a);
ans=no*3;
document.
write(“The answer is :”+ans);
</script>
</body>
</html>
To accept two integers and display larger number of them.
<!DOCTYPE html>
<head>
<title>To accept two integers and display larger number of them.</title>
</head>
<body>
<script language=”javascript”>
var a,b;
a=prompt(‘Enter first value’);
b=prompt(‘Enter second value’);
if(a>b)
document.write(“a is large number than b “);
else
document. write(“b is large number than a”);
</script>
</body>
</html>
To check whether, user entered number is positive or negative.
<!DOCTYPE html>
<head>
<title>To check whether, user entered number is positive or
negative</title>
</head>
<body>
<script language=”javascript”>
var a,no;
a=prompt(‘Enter any number’);
no=parseInt(a);
if(no>0)
document.write(“Number is Positive”);
else
document.write(“Number is Negative”);
</script>
</body>
</html>
SOP 2: Create a JavaScript program for the following using appropriate
variables, JavaScript inbuilt functions, and control structures.

 To accept two positive or negative numbers and check whether they


are equal or not.
 To accept a number and display the square of it.
 To check whether the accepted integer is multiple of 3 or multiple of
7.
Answer:
To accept two positive or negative numbers and check whether they are
equal or not.
<!DOCTYPE html>
<head>
<title>program3</title>
</head>
<body>
<script language=”javascript”> var no1,no2;
no1=prompt(‘Enter first number’);
no2=prompt(‘Enter Second number’);
if(no1==no2)
document.write(“Both are equal”);
else
document.write(“Given numbers are not equal”);
</script>
</body>
</html>
To accept number and display square of it.
<!DOCTYPE html>
<head>
<title>To accept number and display square of it</title>
</head>
<body>
<script language-’j avascript”>
var no,sqr;
no=prompt(‘Enter Any number’);
sqr=no*no;
document, write (“The Square is=”+sqr);
</script>
</body>
</html>

To check whether the accepted integer is multiple of 3 or multiple of 7.


<!DOCTYPE html>
<html>
<head>
<title>To check whether the accepted integer is multiple of 3 or multiple of
7.</title>
</head>
<body>
<script language=JavaScript>
var a;
a=prompt(“Enter your first interger / number”);
if(a%3==0 | | a%7==0)
alert(“multiple of 3 or 7”);
else
alert(“not a multiple of 3 or 7”);
</script>
</body>
</html>
SOP 3: Create a JavaScript program for the following using appropriate
variables, JavaScript inbuilt string functions, and control structures.

 To accept a string and calculate its length.


 To accept a string and display it in lowercase and uppercase.
 To check whether the length of the string is 4 or greater.
Answer:
To accept a string and calculate its length.
<!DOCTYPE html>
<head>
<title>program8</title>
</head>
<body>
<script language=”javascript”>
var a;
a=prompt(‘Enter string’);
document.write(“The length is=”+a.length);
</script>
</body>
</html>
To accept string and display it into lowercase and uppercase.
<!DOCTYPE html>
<head>
<title> To accept string and display it into lowercase and uppercase</title>
</head>
<body>
<script language=”javascript”>
var a;
a=prompt(‘Enter any string’);
document.write(“<br>Entering Strings “+a);
document.write(“<br>Lowercase=”+a.toLowerCase());
document.writeln(“<br>Uppercase=”+a.toUpperCase());
</script>
</body>
</html>
To check whether the length of string is 4 or greater.
<!DOCTYPE html>
<html>
<head>
<title> JavaScript</title>
</head>
<body>
<script language=JavaScript>
var a,b;
a=prompt(“Enter your text”);
b=a.length;
if(b=4 || b>=4)
alert(‘‘your length is 4 or greater”);
else
alert(“your text length is below 4”);
</script>
</body>
</html>
SOP 4: Create event-driven JavaScript programs for the following using
appropriate variables, JavaScript inbuilt functions, and control structures.
To accept numbers and validate if the given value is a number or not by
clicking on the button.

To calculate the addition and division of two numbers.

Answer:
To accept number and validate if the given value is a number or not by
click
<!DOCTYPE html>
<html>
<head>
<title> To accept number and validate if the given value is a number or not
by clicking on the button.
</title>
</head>
<script language-’JavaScript”>
function display()
{
var a,b;
a=form1.t1;value;
if(a>=0)
alert(“Value is a number”+” “+a);
else
alert(“Value is a string”+” “+a);
}
</script>
</head>
</body>
<form name=form1>
Enter Value: <Input type=text name=t1><br><br>
<Input type=button value=Check onClick=”display()”>
</form>
</body>
</html>
To calculate addition and division of two numbers.
<!DOCTYPE html>
<head>
<title>To calculate addition and division of two numbers.</title>
<script langauge=”javascript”>
function add()
{
var a,b,result;
a=f1.t1.value;
b=f1.t2.value;
result=parselnt(a)+parselnt(b);
document.write(“The Addition is =”+result);
}
function div()
{
var a,b,d;
a=f1.t1.value;
b=f1.t2.value;
d=parselnt(a)/parselnt(b);
document.write(“The Divide is =”+d);
}
</script>
</head>
<body>
<form name=”f1”>
1st Number : <input type=”text” name=”t1”><br>
2nd Number : <input type=”text” name=”t2”><br>
<input type=”button” value=”Addition” name=”b1” onClick=”add()”>
<input type=”button” value=”Division” name=”b2” onClick=”div()”>
</form>
</body>
</html>
Maharashtra State Board Class 11
Information Technology Practicals Skill Set
4 Accounting Package (GNUKhata)
SOP 1: Use of Accounting Package to create a company.
Create a company with the following particulars.
Company Name: B.B Enterprises
Case: Upper Case
Company Type: Profit Making

Maharashtra board textbooks with solved question papers

Financial Year: 01-04-2019 to 31-03-2020


Use GNUKhata for: Accounting Only
Create a profile with relevant data for any company. Create an Admin account
for the company.
Answer:
Step 1: Open GNUKhata Application. Click on ‘company Setup Wizard’ or
(press shift + control + C)
Step 2: While creating a company the following details are to be given.
Company Name: B.B Enterprises
Case: Upper Case
Company Type: Profit Making
Financial Year: 01/04/2019 to 31/03/2020
Use GNUKhata for: Accounting Only
Fill in all the required details and click on proceed button on the right button corner.

Step 3: Enter Appropriate Company Information in the Given Field.


Company Profile window appears, in that window fill in the details and click on proceed button
on the right bottom corner.
Step 4: Create Admin Next step is the ‘create Admin’ which is mandatory with proper user name
and password. Fill in the fields and click on ‘Create & Login button, the company will be
created.
Now your Company is ready.

Step 5: Admin Dashboard After login, the following admin dashboard, appears.

SOP 2: Create ledger accounts using the accounting Package.


Create ledger accounts for the following and allocate proper groups.

1. Import duty
2. Insurance
3. Machinery
4. Audit Fee
5. Purchase
6. Sales
7. Telephone charges
8. Interest Received
9. Salary
10. Professional fees
Answer:
Step 1: You Can select an already created company using the ‘Select Existing Company ’ Option
on Opening Screen.

Step 2: Log in with User Name and Password

Step 3: To create an account (ledger account) click on the Hamburger Menu available at the left
top corner of the dashboard.
Click on the Master Account → It allows you to create an account.
The following table shows the group name, sub-group name, and account name which are to be
created.

Group Name Sub Group Name Account / Ledger Name


Direct Expenses None Import Duty

Indirect Expenses None Insurance

Fixed Assets Plant & Machinery Machinery

Indirect Expenses None Audit fee

Direct Expense None Purchase

Direct Income None Sales

Indirect Expense None Telephone charges

Indirect Income None Interest received

Indirect Expense None Salary

Direct Income None Professional Fees

You might also like