Class 11 It Record Programs
Class 11 It Record Programs
AIM:
To create a document and do all the formatting options in open office writer.
PROCEDURE:
e) Change the foreground, background color font face and size etc.
OUTPUT:
RESULT:
The document created and applied the formatting options successfully.
***************
1
CLASS XI INFORMATION TECHNOLOGY PRACTICALS
AIM:
To create a 2-page 2-column article having pictures and text. Create a hyperlink to a web page. Also
state the number paragraphs, lines, words and characters in the document. Perform spell check on the
document using open office writer.
PROCEDURE:
j) To show the number of paragraphs, lines, words and characters in the document,
2
CLASS XI INFORMATION TECHNOLOGY PRACTICALS
OUTPUT:
RESULT:
Document was created successfully.
****************
3
CLASS XI INFORMATION TECHNOLOGY PRACTICALS
AIM:
To create the following worksheet:
Create a bar graph for the above data.
Create a pie chart for column Y.
Create a line chart between X and Y.
PROCEDURE:
Desktop → Open Office → Spreadsheet and type the above data in the worksheet.
a) Create a bar graph for the above data.
Select the data cells.
Go to the Insert menu → Click Chart option
Chart Wizard Dialog box appears
Choose chart type-> Bar chart, chart elements-> give the titles and legend
Click Finish
Bar chart appears on the screen.
b) Create a pie chart for column Y.
Select the data 'Y' column.
Go to the Insert menu → Click Chart option
Chart Wizard Dialog box appears
Choose chart type-> Pie chart, chart elements-> give the titles and legend
Click Finish
Pie chart appears on the screen.
c) Create a line chart between X and Y.
Select the data cells.
Go to the Insert menu → Click Chart option
4
CLASS XI INFORMATION TECHNOLOGY PRACTICALS
Chart Wizard Dialog box appears
Choose chart type-> Line chart, chart elements-> give the titles and legend
Click Finish
Line chart appears on the screen.
Save the spreadsheet as,
File → save as → D:/ → select the folder → charts.ods
OUTPUT:
RESULT:
The worksheet has been created successfully.
************
5
CLASS XI INFORMATION TECHNOLOGY PRACTICALS
h) Select D3:J3, goto properties ->Text-> click 'Bold' option, Alignment-> 'center'
6
CLASS XI INFORMATION TECHNOLOGY PRACTICALS
OUTPUT:
RESULT:
The worksheet has been created successfully.
*************
7
CLASS XI INFORMATION TECHNOLOGY PRACTICALS
AIM:
To create a five slide presentation showing the importance of saving the environment
using Open Office Impress.
PROCEDURE:
b) Create the master slide and format the background, font face etc.
c) Right Click the slide → slide → set the background picture (or)
i) Insert → slide.
8
CLASS XI INFORMATION TECHNOLOGY PRACTICALS
q) Save the file as, File → Save as → D:/ → Select the folder → environment.odp
OUTPUT:
RESULT:
The presentation has been created successfully
**************
9
CLASS XI INFORMATION TECHNOLOGY PRACTICALS
AIM:
To create a five slide presentation having hyperlink on each slide to a web resource
(audio, page, video) around the theme of beautiful nature.
PROCEDURE:
b) Right Click the slide → slide → set the background picture (or)
j) Insert → slide
10
CLASS XI INFORMATION TECHNOLOGY PRACTICALS
q) Click “Apply for all”
r) Save the file as, File → Save as → D:/ → Select the folder → nature.odp
OUTPUT:
RESULT:
The presentation has been created successfully
***************
11
CLASS XI INFORMATION TECHNOLOGY PRACTICALS
AIM:
To write Queries for the following Questions based on the given table: INFO
EmpID Name Gende Age Dept DOJ Salary City
r
1 Praveen M 25 Sales 1989-06-08 20000 Chennai
2 Arun M 29 Marketing 1989-09-26 22000 Chennai
3 Usha F 27 Finance 1994-08-09 25000 Bangalore
4 Bala M 31 Sales 1990-03-23 27000 NULL
5 Rani F 28 Marketing 1990-04-23 27000 Mumbai
6 Nisha F 26 NULL 1991-02-24 18000 Bangalore
7 Manoj M 32 Finance 1982-05-06 30000 Goa
(a) Write a Query to Create a new database in the name of " EMPLOYEES ".
USE EMPLOYEES;
12
CLASS XI INFORMATION TECHNOLOGY PRACTICALS
(e) Write a Query to insert all the rows of above table into Info table.
(f) Write a Query to display all the details of the Employees from the above table 'INFO'.
13
CLASS XI INFORMATION TECHNOLOGY PRACTICALS
AIM:
To write Queries for the following Questions based on the given table:
TABLE : STUDENT
Rollno Name Gender Age Dept DOA Fees
1 Arun M 24 COMPUTER 1997-01-10 120
2 Ankit M 21 HISTORY 1998-03-24 200
3 Anu F 20 HINDI 1996-12-12 300
4 Bala M 19 NULL 1999-07-01 400
5 Charan M 18 HINDI 1997-09-05 250
6 Deepa F 19 HISTORY 1997-06-27 300
7 Dinesh M 22 COMPUTER 1997-02-25 210
8 Usha F 23 NULL 1997-07-31 200
a) Write a Query to insert all the rows of above table into STUDENT table.
INSERT INTO STUDENT VALUES (1,'Arun','M', 24,'COMPUTER','1997-01-10', 120);
14
CLASS XI INFORMATION TECHNOLOGY PRACTICALS
(b) Write a Query to display all the details of the Employees from the above table 'STUDENT'.
Output:
(c)Write a query to Rollno, Name and Department of the students from STUDENT table.
Output:
15
CLASS XI INFORMATION TECHNOLOGY PRACTICALS
Output:
*********************
TABLE: EMPLOYEE
(a) Write a Query to Display Employees’ name and City from the above table.
Output:
16
CLASS XI INFORMATION TECHNOLOGY PRACTICALS
(b) Write a Query to Display all details of Employees who are living in Chennai.
Output:
17
CLASS XI INFORMATION TECHNOLOGY PRACTICALS
( C) Write a Query to get the name and salary of the employee whose salary is above
15000 and gender is not male.
(d) Write a query to update increase 10% Salary of an employee whose City is 'CHENNAI' and
Gender is 'MALE'.
******************************
18
CLASS XI INFORMATION TECHNOLOGY PRACTICALS
AIM:
To write a java program for join two text entries and display them
SOURCE CODE:
RESULT:
The program is executed successfully.
************
19
CLASS XI INFORMATION TECHNOLOGY PRACTICALS
EX – 11 SIMPLE INTEREST
QN: Write a java code to find simple interest for the principal, rate of interest and time.
AIM:
To write a java code to find simple interest for the principal, rate of interest and time.
SOURCE CODE:
int principal=Integer.parseInt(jTextField1.getText());
int rate=Integer.parseInt(jTextField2.getText());
System.exit(0);
OUTPUT
RESULT:
The program is executed successfully.
*************
20
CLASS XI INFORMATION TECHNOLOGY PRACTICALS
EX – 12 ARITHMETIC CALCULATION
QN: Write a java program to Perform simple arithmetic calculation using operators and display the result.
AIM:
To write a java program to Perform simple arithmetic calculation using operators and display the result.
SOURCE CODE:
OUTPUT:
RESULT:
****************************
22
CLASS XI INFORMATION TECHNOLOGY PRACTICALS
QN: Write a java program using Joption Pane display a message “welcome to INFORMATION
TECHNOLOGY”
AIM:
To write a java code Using Joption Pane display a message “welcome to INFORMATION
TECHNOLOGY”
SOURCE CODE:
}
OUTPUT:
RESULT:
The program is executed successfully.
***************
23
CLASS XI INFORMATION TECHNOLOGY PRACTICALS
EX – 14 WEEKDAY FINDER
QN: Write JAVA code to perform an operation based on the criteria input by the user in a radio button .
(WEEK DAY FINDER)
AIM:
To Write JAVA code to perform an operation based on the criteria input by the user in a
radio button . (WEEK DAY FINDER)
SOURCE CODE:
else if(jRadioButton2.isSelected())
jTextField1.setText("TUESDAY");
else if(jRadioButton3.isSelected())
jTextField1.setText("WEDNESDAY");
else if(jRadioButton4.isSelected())
jTextField1.setText("THURSDAY");
else if(jRadioButton5.isSelected())
jTextField1.setText("FRIDAY");
else if(jRadioButton6.isSelected())
jTextField1.setText("SATURDAY");
else if(jRadioButton7.isSelected())
jTextField1.setText("SUNDAY");
24
CLASS XI INFORMATION TECHNOLOGY PRACTICALS
OUTPUT
RESULT:
**********************
25