COM111 Prractical Manual - 2016
COM111 Prractical Manual - 2016
COM111 Prractical Manual - 2016
PRACTICAL MANUAL
Prepared By:
PRACTICAL RECORD
INDEX
Name of the student:
I. D. No.
Date of
S.No Date Name of the exercise Grade Signature
submission
1. Working with basic Computer Hardware
Number System conversion : Decimal,
2. Binary, Octal, Hexa Decimal, Binary
addition and subtraction
Conversion between bits, bytes, kilobits,
3. kilobytes, megabits, megabytes, gigabits,
gigabytes
4. Working with MS DOS commands
Working with Windows Operating
5.
system
6. Working with Linux Operating System
Aim:
To learn and practice the basic hardware components of computer.
What is a Computer?
Computer is an electronic device for processing and storing information. It takes raw data as
input from the user and processes it under the control of set of instructions (called program),
generates the result (output), and saves it.
Digital camera
A type of camera that stores the
pictures or video it takes in
electronic format instead of to film.
Web Cam
A camera connected to a computer
that allows anyone connected to the
Internet to view still pictures or
motion video of a user.
Joystick
A computer joystick allows an
individual to easily navigate an
object in a game such as navigating
a plane in a flight simulator.
Microphone
Sometimes abbreviated as mic, a
microphone is a hardware peripheral
that allows computer users to input
audio into their computers.
Central Processing Unit
Central Processing Unit (CPU) controls, coordinates and supervises the operations of the
computer. It is responsible for processing of the input data. CPU consists of Arithmetic
Logic Unit (ALU) and Control Unit (CU).
ALU performs all the arithmetic and logic operations on the input data.
CU controls the overall operations of the computer i.e., it checks the sequence of
execution of instructions and controls and coordinates the overall functioning of units of
computer.
Additionally, CPU also has a set of registers for temporary storage of data, instructions,
addresses and intermediate results of calculation.
Memory Unit
Computer memory is used to store the data, instructions, intermediate results and output or
results. There are two categories of memory namely Main or Primary Memory and Secondary or
Auxiliary memory. Primary memory is volatile (not permanent) and faster when compared to
secondary memory. There are two categories of primary memory:
Random Access Memory (RAM) - Active, temporary. The contents of RAM are cleared
once the computer is turned off. It is also called as R/W memory.
CPU Cabinet
The CPU cabinet contains the computer's power supply, motherboard, memory, disk
drives and other peripheral control units.
CPU Cabinet View
Front Side Inside Back Side
Output Unit:
Output unit consists of devices to get the information from computer. This unit is a link
between computer and users. Output devices translate the computer's output into the form
understandable by users. Example: Monitors, Graphic Plotter, Printer etc.,
Monitor
A monitor is a video display screen. Monitor is also called as Visual Display Unit (VDU) or Video
Display Terminal (VDT). CRT (Cathode Ray Tube), LCD (Liquid Crystal Display), LED (Light Emitting Diodes),
TFT-LCD (Thin Film Technology LCD) are the different types of displays.
CRT (Cathode Ray Tube) Monitors are built LCD (Liquid Crystal Display) Monitors are
very similarly to older (tube) television sets. thin and flat. They are light, compact, take up
They are heavy, bulky, take up a lot of desk very little desk space emit no known radiation.
space, and emit radiation.
Printer
A printer is an output device responsible for
taking computer data and generating a hard
copy of that data. Inkjet printers, Laser
printers, dot matrix are the different types of
the printers.
Projector Speakers
Take the display of a computer screen and Connected to a computer's sound card that
project a large version of it onto a flat surface. outputs sounds generated by the computer.
Exercises
1. Why computer is called as electronic device? Why not electrical device?
2. Identify the hardware components of computer and their uses.
3. Draw the keyboard layout and label categories of keys. List and give the functions of
various keys.
4. List down the functions of different combinations of Ctrl, Alt, and Windows keys.
5. What is the use of the PrtScr key in the keyboard?
6. Why the input device mouse is referred as pointing device?
7. Draw and label the parts of the mouse and explore its activities
8. Draw and label the buttons on the monitor. Explain how to fine tune the display.
9. Draw and label the parts of printer and scanner.
10. Explain any four input, output devices and secondary storage devices.
11. What is the RAM capacity of your notebook?
References:
http://www.webopedia.com/TERM/C/computer.html
http://windows.microsoft.com/en-in/windows-vista/parts-of-a-computer
http://www.uow.edu.au/~nabg/ABC/C1.pdf
http://www.wiziq.com/tutorial/120422-Types-and-components-of-computer-system
http://www.computerhelpatoz.com/hardware.html
https://en.wikipedia.org/wiki/Computer
http://www.freetechbooks.com/fundamentals-of-c-programming-t1062.html
Ex. No. 2 Number System conversion: Decimal, Binary, Octal, Hexa Decimal, Binary
addition and subtraction
Date:
Aim
To understand the principles of numbering systems
To convert numbers from one base to another
To be able to do arithmetic in binary
Introduction
The number system used in day to day life is decimal number system. Decimal number system
has a base 10 and uses 10 digits from 0 to 9. As a computer professional it is necessary to
understand the following number systems frequently used in computers.
Binary number system which has a base 2 and uses 2 digits 0, 1
Octal number system which has a base 8 and uses 8 digits from 0 to 7
Hexadecimal number system which has a base 16 and uses 16 digits/letters from 0 to 9
digits, A-F letters.
Possible conversion among bases
Conversion
I. Decimal to Binary, octal and Hexa decimal
A repeated division and remainder algorithm can convert decimal to binary, octal, or
hexadecimal.
1. Divide the decimal number by the desired target radix (2, 8, or 16).
2. Append the remainder as the next most significant digit.
3. Repeat until the decimal number has reached zero.
1. Decimal to Binary
Below are the steps for how to convert decimal to binary number -
Step 1: Divide given number starting from 2 as suitable.
Step 2: Write remainder on the right side of quotient.
Step 3: Divide until quotient will be 0.
Step 4: Now write binary number starting from lower end of that divison.
Solved Examples
Question 1: Convert 35 into binary number.
Solution:
The binary number can be calculated by using L division method
2 35
2 17 -- - 1
2 8 -- - 1
2 4 --- 0
2 2 --- 0
2 1 --- 0
Correct answer is (100011)2.
2. Decimal to Octal number:
Octal numbers are numbers with base 8. If a is a number then the octal number is denoted as a8.
It contains digits from 0 to 7.
How to Convert Decimal to Octal
Below are the steps on decimal to octal conversion -
Step 1: Take the given decimal number
Step 2: If the number is less than 8 the octal number is the same
Step 3: If the number is greater than 7 then Divide the number with 8
Step 4: Note the remainder
Step 5: Carry on the step 3 and 4 with the quotient till it is less than 8
Step 6: Write the remainders in reverse order(bottom to top)
Step 7: The resultant is the equivalent octal number to the given decimal number
Solved Examples
Convert 128 to octal form.
Solution:
Given decimal number is 128
Solved Examples
Question 1: Convert 146 to hexadecimal number?
Solution:
146 is greater than 16 , so we have to divide by 16.
After dividing by 16 , quotient is 9 and remainder is 2.
16 146
16 9 -- - 2
Correct answer is (92)16
II. Convert Binary , Octal and Hexadecimal to Decimal
1. Binary to decimal
In base 2 we use a system of place values as shown below:
64 32 16 8 4 2 1
26 25 24 23 22 21 20
1 0 0 0 0 0 0 1 64 = 64
1 0 0 1 0 0 1 (1 64) +( 1 8) + (1 1) = 73
Solved Example
Question: Convert 1111001 to decimal number?
Solution:
Decimal number is (1X64)+(1x32)+(1x16)+(1x8)+0+0+(1x1) =(121)10
Note that the place values begin with 1 and are multiplied by 2 as you move to the left.
2. Octal to Decimal
86 85 84 83 82 81 80
0 0 0 1 0 2 7 (1 512)+0+(2x8)(7x1) = 535
Question: Convert 5601 to decimal number?
Octal = 5601
Decimal= 58+68+08+18 = 2945
Hexadecimal to decimal
Convert 01001 to Decimal
0 1 0 0 A (016+116+016+016+1016 = 4106
4D2 and this would be expressed as
Hex = 4D2
Decimal= 416+1316+216 = 1234
Drop any leading zeros or pad with leading zeros to get groups of four binary digits (bits):
Binary 011100101 = 1110 0101
Then, look up the groups in a table to convert to hexadecimal digits.
Binary: 0000 0001 0010 0011 0100 0101 0110 0111
Hexadecimal: 0 1 2 3 4 5 6 7
Binary: 1000 1001 1010 1011 1100 1101 1110 1111
Hexadecimal: 8 9 A B C D E F
References :
http://www.tutorialspoint.com/computer_logical_organization/number_system_conversio
n.htm
Exercises
Conversion for the following Numbers
Decimal to binary , octal , Binary to decimal , octal and
Hexadecimal Hexadecimal
213 11001011
9 00110101
67 10000011
99 10001111
23 11100011
143
Octal to binary , decimal and Hexadecimal to binary , octal
Hexadecimal and decimal
73 5A
56 CC
74 97
64 40
23 07
Binary Addition
1. 101 + 11
2. 111 + 111
3. 1010 + 1010
4. 11101 + 1010
5. 11111 + 11111
Binary Subtraction
1. 110 - 10
2. 101 - 11
3. 1001 - 11
4. 1101 - 11
5. 10001 - 100
Ex. No. 3 Conversion between bits, bytes, kilobits, kilobytes, megabits, megabytes,
Date: gigabits, gigabytes
Aim:
To understand the units of memory and perform conversions.
Bits, bytes, and other units of measure for digital information
Bit is a binary digit, the smallest increment of data on a computer. A bit can hold only one
of two values: 0 or 1, corresponding to the electrical values of off or on, respectively. Because
bits are very small very rarely we work with one bit information at a time.
Units used to measure computer
Bits are assembled into a group of eight to form a byte. A byte contains enough
information to store a single ASCII character, like "h".
Bit (b) : Smallest unit of data
Byte (B) : Unit of 8 bits, 00000000 11111111
Kilobyte (KB) : 1 KB = 1024 bytes
Megabyte (MB) : 1 MB = 1024 KB = 1,048,576 bytes
Gigabyte (GB) : 1 GB = 1024 MB = 1,073,741,824 bytes
Terabyte (TB) : 1 TB = 1024 GB
Petabyte (PB) : 1PB = 1,024 TB
Exabyte (EB) : 1EB = 1,024 PB
Zettabyte (ZB) : 1ZB = 1,024 EB
Yottabyte (YB) : 1YB = 1,024 ZB
Bit
The smallest unit of data in a computer is called Bit (Binary Digit). A bit has a single
binary value, either 0 or 1. In most computer systems, there are eight bits in a byte. The value of
a bit is usually stored as either above or below a designated level of electrical charge in a single
capacitor within a memory device.
Nibble
Half a byte (four bits) is called a nibble.
Byte
In most computer systems, a byte is a unit of data that is eight binary digits long. A byte
is the unit most computers use to represent a character such as a letter, number or typographic
symbol (for example, g, 5, or ?). A byte can also hold a string of bits that need to be used
in some larger unit of application purposes (for example, the stream of bits that constitute a
visual image for a program that displays images or the string of bits that constitutes the machine
code of a computer program).
In some computer systems, four bytes constitute a word, a unit that a computer processor
can be designed to handle efficiently as it reads and processes each instruction. Some computer
processors can handle two-byte or single-byte instructions.
A byte is abbreviated with a B. (A bit is abbreviated with a small b). Computer
storage is usually measured in byte multiples. For example, an 820 MB hard drive holds a
nominal 820 million bytes or megabytes of data. Byte multiples are based on powers of 2 and
commonly expressed as a rounded off decimal number. For example, one megabyte (one
million bytes) is actually 1,048,576 (decimal) bytes.
Octet
In some systems, the term octet is used for an eight-bit unit instead of byte. In many
systems, four eight-bit bytes or octets form a 32-bit word. In such systems, instructions lengths
are sometimes expressed as full-word (32 bits in length) or half-word (16 bits in length).
Kilobyte
A Kilobyte (kb or Kbyte) is approximately a thousand bytes (actually, 2 to the 10th
power, or decimal 1,024 bytes).
Megabyte
As a measure of computer processor storage and real and virtual memory, a megabyte
(abbreviated MB) is 2 to the 20th power byte, or 1,048,576 bytes in decimal notation.
Gigabyte
A Gigabyte (pronounced Gig-a-bite with hard Gs) is a measure of computer data storage
capacity and is roughly a billion bytes. A gigabyte is two to the 30th power, or 1,073,741,824
in decimal notation.
Terabyte
A Terabyte is a measure of computer storage capacity and is 2 to the 40th power of 1024
gigabytes.
Petabyte
A Petabyte (PB) is a measure of memory or storage capacity and is 2 to the 50th power
bytes or, in decimal, approximately a thousand terabytes (1024 terabytes).
Exabyte
An Exabyte (EB) is a large unit of computer data storage, two to the sixtieth power bytes.
The prefix exa means one billion billion or on quintillion, which is a decimal term. Two to the
sixtieth power is actually 1,152,921,504,606,846,976 bytes in decimal, or somewhat over a
quintillion (or ten to the eighteenth power) bytes. It is common to say that an Exabyte is
approximately one quintillion bytes. In decimal terms, an Exabyte is a billion gigabytes.
Zettabyte
A Zettabyte (ZB) is equal to one sextillion bytes. It is commonly abbreviated ZB. At this
time, no computer has one Zettabyte of storage. It has 1024 Exabytes.
Yottabyte
A Yottabyte is equal to one septillion bytes. It is commonly abbreviated YB. At this time,
no computer has one Zettabyte of storage. It has 1024 Zettabytes.
Many hard drive manufacturers use a decimal number system to define amounts of storage
space. As a result, 1 MB is defined as one million bytes, 1 GB is defined as one billion bytes, and
so on.
In the below chart is a general rule of how many MP3 and songs can be fit on a flash
drive depending on the average size and assuming the operating system considers
a GB 1,024 MB. For most users, they can assume their average MP3 size is 6MB and an average
photo size of 3MB.
Flash drive 8MB Mp3 6MB Mp3 3MB Photo 2MB Photo 10MB Raw
size Photo
512MB 64 85 170 256 51
1GB 128 170 340 512 102
2GB 256 341 682 1,024 204
3GB 384 512 1,024 1,536 307
4GB 512 682 1,364 2,048 409
5GB 640 853 1,706 2,560 512
6GB 768 1,024 2,048 3,072 614
8GB 1,024 1,365 2,730 4,096 819
16GB 2,048 2,730 5,460 8,192 1,638
32GB 4,096 5,461 10,922 16,384 3,276
64GB 8,192 10,922 21,844 32,768 6,553
128GB 16,384 21,845 43,690 65,536 13,107
256GB 32,768 43,690 87,380 131,072 26,214
MP3's sizes
If the MP3 file is created with a quality of 128 kbit/s, the file size will be about 1/11 th the
size of the original file on the music CD. A fairly common MP3 quality is 256 kbit/s. There are
many sources for MP3 files on the Internet, ranging from 128 kbit/s to 320 kbit/s.
Example: A song is 3 1/2 minutes long. At this length and 256 kbit/s quality, the MP3 file size
would be 6.56 MB. At three minutes, the file would be 5.62 MB and four minutes would be 7.5
MB. If the MP3 songs are of a higher quality (320 kbit/s), it will not be able to fit quite as many
on the flash drive since the file sizes would be larger. If the quality was lower
(192 kbit/s or 128 kbit/s), it could fit more MP3's on the flash drive. Ultimately, the number of
songs it can fit will depend on their preference of sound quality of the MP3's.
Lower bit rate will result in lower sound quality, but more songs on the flash drive, whereas a
higher bit rate will result in higher sound quality but fewer songs on the flash drive.
6. Ram has 600 MB of data. Sita has 700 MB of data. Will it all fit on Ram's 2GB thumb
drive?
7. Priya has 100 small images, each of which is 500 KB. How much space do they take up
overall in MB?
8. Students are recording the audio inside the classroom for 20 hours as MP3 audio files.
About how much data will that be, expressed in GB?
9. Suppose we have an image which is 800 pixels by 600 pixels. Each pixel has its own red,
green, and blue values, each stored in 1 byte. How many bytes are required to store the
whole image in RAM?
Aim:
The student should be able to describe:
How to access MS-DOS emulators from other operating systems
How MS-DOS provided a foundation for early Microsoft Windows releases
The basics of command-driven systems
MS-DOS
MS-DOS short for Microsoft Disk Operating System is an operating system. Tim
Paterson is considered the original author of DOS and he is called "The Father of DOS.
Windows operating systems continue to offer a DOS emulator. DOS commands can be
categorized as Internal Commands and External commands
Steps to open the command prompt in the Windows operating system:
a. Go through the Start menu: click Start, All Programs, Accessories, and then click on
Command Prompt or;
b. In the run box type cmd.
2. MKDIR / MD
It creates a new directory.
Syntax : MKDIR [D:]path
or
MD [D:]path
D identifies the drive on which this directory is being created.
Path the directory being created.
Example : E:\> MKDIR TNAU
or
E:\> MD TNAU
3.CHDIR / CD
It changes or displays your current directory
Syntax: CHDIR [D:][path]
CHDIR [..]
CD [D:][path]
CD [..]
D Specifies the disk drive that contains the directory. If you omit a
drive, the current drive is assumed.
Path denotes directory
.. Specifies the parent directory
. Specifies the current directory
Note:
COPY CON Editor
COPY CON editor creates a file. After entering the content of the file save and exit the
file by pressing CTRL+Z, which would create ^Z, and then press enter or press the function key
F6.
Syntax : COPY CON filename
Example E:\> COPY CON biodata
5) COPY
It copies one or more files to another location.
Syntax : COPY source_file_path destination_file_path
Example 1: E:\> COPY E:\AGR\biodata E:\SAC\
Example 2: E:\> COPY E:\AGR\ biodata E:\SAC\ biodata
6) MOVE
It moves the file and renames files and directories.
Syntax : MOVE source_file_path destination_file_path
Example : E:\> MOVE E:\AGR\ biodata E:\SAC\ biodata
7. RENAME / REN
Renames a file or files.
Syntax: RENAME [D:][path]filename1filename2.
or
REN [D:][path]filename1 filename2.
Example : REN E:\SAC\biodata resume
8. DEL / ERASE
It deletes one or more files.
Syntax:
DEL filename
or
ERASE filename
Example1: DEL E:\KUMAR\RESUME
Example2: DEL *.DOC (It deletes all word files from current directory)
9. DIR
Displays a list of files and subdirectories in a directory.
Syntax:
DIR [D:][path][filename] [/A [attributes]] [/B] [/C] [/D] [/L] [/N]
[/O [sortorder]] [/P] [/S]
10. TYPE:
It displays the contents of a file on the console( Screen).
Syntax: TYPE filename
Example TYPE E:\SAC\resume
11. DATE:
It displays or sets the date (ie to display current date from system clock)
Syntax : DATE [mm-dd-yy]
mm month, can be 1 to 12
dd day , can be 1 to 31
yy year, can be 80 to 99 or 1980 to 2099
Example : DATE
12. TIME
It displays the current time from system clock or sets the system time.
Syntax: TIME [hh[:mm[:ss[:cc]]]]
hh hour mm minutes
ss seconds cc hundreds of seconds
Example: TIME
13. VER
It displays the MS-DOS version number
Syntax : VER
Example : VER
14. VOL
It displays the disk volume label and serial number, if they exist.
Syntax : VOL [D:]
Example : VOL
15. PROMPT
It changes the command prompt.
Syntax : PROMPT [text]
text Specifies a new command prompt.
Prompt can be made up of normal characters and the following special codes:
$D Current date
$G > (greater-than sign)
$L < (less-than sign)
$N Current drive
$P Current drive and path
$T Current time
16. EXIT
Quits the CMD.EXE program (command interpreter) or the current batch script.
Syntax : EXIT
Example : EXIT
External Commands
1. ATTRIB 2. TREE 3. PRINT etc
1. ATTRIB:
It displays or changes file attributes.
Syntax: ATTRIB [+R | -R] [+A | -A ] [+S | -S] [+H | -H] [drive:][path][filename]
+ Sets an attribute.
- Clears an attribute.
R Read-only file attribute.
H Hidden file attribute.
[drive:][path][filename]
2. TREE
It graphically displays the folder structure of a drive or path.
Syntax: TREE
3.PRINT
It prints a text file.
Syntax: PRINT filename
Lab work:
i) Create three directories in your E:\> drive, like as AGR, SAC and PBG.
ii) Type your bio-data ("bio") using MS EDIT or COPY CON editor and store it into
directory AGR.
iii) Rename the file bio to resume
iv) Hide the file resume and remove the hidden file resume
v) Set the file resume as a read only.
vi) Copy the file resume to the directory SAC.
vii) Move the file resume from SAC to the PBG.
viii)Delete the file resume from PBG.
ix) Delete the directory PBG.
References:
1) https://technet.microsoft.com/en-in/library/bb490890.aspx
2)http://www.computerhope.com/msdosm
Ex. No. 5
2.3.2 Quick launch toolbar: It is a toolbar which displays the most frequently used
programs. It is customizable toolbar that displays links to internet Explorer, file
explorer etc.,
2.3.3 Notification area/System tray: It is located on the right-hand side of the taskbar
and contains icons of various programs that are running in the background. It
includes system applications such as the volume control, network access, date and
time icons, antivirus programs etc.,
2.4. Shortcut menu
The easiest way to manage the desktop is to use the desktop shortcut menu. It is opened by
right-clicking any open area of the desktop. The shortcut menu contains the commands like view,
arrange icons, refresh, paste, paste shortcut, new, screen resolution, gadgets etc.,
2.5.3. Toolbar: Toolbar contains shortcut buttons that are used to perform actions found
within the menu bar. The default buttons present on the toolbar each having specified
function are listed in Table 2
Table 2 Toolbar buttons
Command Description
Back Moves back to the previously viewed
folders/items
Forward Moves forward to the last viewed folders/items
Up Takes up one level. If working in C:\My
Documents, then the Up button displays the
contents of C drive
2.5.4. Address Bar and Status Bar: The address bar is located between the toolbar and
window panes. The address bar displays the current disk drive and folder, such as;
C:\Documents and Settings\My Documents. The status bar is located at the bottom
of the window and displays the total number of files and sub-folders in the folder and
the space(bytes) they occupy. If a drive or file is selected, it displays the amount of
dik free space on the common tasks area as well as on the status bar.
2.6. Aero Themes: An Aero theme is the combination of one or more desktop backgrounds,
indow colour, sounds and screen saver. Any themes can be applied to change the desktop
background, window colour, sound and screen saver simultaneously.
2.7. Gadgets: Gadgets are mini programs that provide quick access to information and
frequently used tools. For example, news headlines can be added to keep ourselves
updated.
2.8. Thumbnails: Every open window has a corresponding button on the taskbar. When the
mouse pointer is placed over the button on the taskbar, a small preview of the open
window(s) associated with that button appears over the taskbar. This preview is called
thumbnail.
2.9. Aero effects: Aero effects tend to improve the visual experience and ease the task of
managing different windows. These effects include
Aero Flip 3D: This allows previewing all the open files and folders
simultaneously without clicking on the taskbar. Press the Windows logo key + Tab
key
Aero peek: This allows to temporarily view the desktop when multiple windows
are opened simultaneously. Just place the mouse pointer over the show desktop
button (a semi-transparent rectangular button) at the rightmost corner of the
taskbar.
Aero shake: This allows minimizing all the open windows except the desired one.
This saves time when we want to focus on single window and minimize all other
open windows. Click on the title bar of the window to keep open and drag the
mouse back and forth quickly to use this option.
Aero Snap: Two opened windows can be arranged side by side using this feature.
This is helpful while comparing contents of two files or copying files from one
folder to another. To arrange two windows side by side on the screen, follow the
steps given below
o Click the title bar of a window and drag it to one side of the screen
o Release the mouse when you see an outline of the window
o Perform step1 and step 2 for another window. But this time, drag to an
opposite side on the screen.
2.10. Accessories: This includes variety of accessories/programs such as calculator, command
prompt, snipping tool, sound recorder, sticky notes etc. All these programs are grouped
under the accessories folder available in All Programs on the Start menu.
Snipping tool: Snipping tool is used to capture a snapshot of any object, window
or a part of window on the desktop. Once the image is captured, it can be
annotated with handwritten comments, save it as an HTML, PNG, GIF or JPEG
file or sent it via e-mail from within the sinpping tool program window.
a) Creating Folder
Go to the desktop / Go to My computer /Go to Windows Explore (Place the
cursor on Start Button, Right click ,Choose Explore) Select a Drive (Ex D: )
Right click Choose New option Choose Folder option
(Or Click New Folder button from the menu )
Type a folder Name (Ex: Sample)
b) Renaming a Folder / File
Go to Windows Explore Select the Folder / File (Ex : D:\Sample)
Right click Choose Rename option
(Or Choose Organize Rename option from the menu )
Change the existing name (Ex: RAJ) to new Name (Ex: Demo)
c) Moving a Folder / File
Go to Windows Explore Select the Folder / File (Ex:D:\Demo)
Right click Choose Cut option / (Or Press Ctrl + X ) / (Or Choose Organize
Cut option from the menu )
Click on destination place (Ex: E drive)
Right click Choose Paste option / (Or Press Ctrl + V ) / (Or Choose
Organize Paste option from the menu)
(Now Demo is only present in E drive not in D drive)
d) Copying a Folder / File
Go to Windows Explore Select the Folder / File (Ex:E:\Demo)
Right click Choose Copy option / (Or Press Ctrl + C ) / (Or Choose
Organize Copy option from the menu)
Click on destination place (Ex: D drive)
Right click Choose Paste option / (Or Press Ctrl + V ) / (Or Choose
Organize Paste option from the menu )
(Now Demo is present in E and D drive)
e) Deleting a Folder / File
Go to Windows Explore Select the Folder / File (Ex:E:\Demo)
Right click Choose Delete option / (Or Choose Organize Delete option
from the menu )
(Now Demo is deleted from E drive)
f) Searing a Folder / File
Go to My computer /Go to Windows Explore
Windows displays the following window
Using the dialog box do step
Reference
1. https://en.wikibooks.org/wiki/Basic_Computing_Using_Windows/Operating_Systems_an
d_Controls
2. Introduction to Informatin Technology, Second Edition, ITL Education Solutions
Limited, Pearson.
Ex. No. 6 Working with Linux operating system
Date:
Aim:
To learn and explore the linux operating system.
1. Introduction to Linux Operating System
Linux is a UNIX-based open source operating system. Its original creator was a Finnish
student Linus Torvalds. It belongs to nobody, and is free to download and use. Any changes to it
are open for all to adopt, and as a result it has developed into a very powerful operating system
that is rapidly gaining popularity worldwide, particularly among those seeking an alternative to
Windows. Linux is a multitask and multiuser operating system. But before Linux became the
platform to run desktops, servers, and embedded systems across the globe, it was and still one of
the most reliable, secure, and worry-free operating systems available
Figure 1 Ubuntu-GNOME
Ubuntu is the most well-known Linux distribution. Ubuntu GNOME is one
version of Ubuntu, featuring the GNOME desktop environment.GNU Network Object
Model Environment (GNOME) is a part of the GNU project. It is a windows-like desktop
system that works on UNIX and UNIX-like systems and is not dependent on any one
window manager. The current version runs on linux. The main objective of GNOME is to
provide a user-friendly suite of applications and an easy-to-use desktop.
2.2. Fedora
Fedora is an operating system based on the Linux kernel, developed by the community
supported Fedora Project and sponsored by Red Hat. The default desktop in Fedora is the
GNOME desktop environment and the default interface is the GNOME Shell. Toher
desktop environments, including KDE Plasma, Xfce, LXDE, MATE and Cinnamon..
Fedora comes installed with a wide range of software such as LibreOffice and Firefor.
Aim:
To explore office suite and explore word processing software.
Office automation refers to software tools and methods used to digitally create, collect,
store, manipulate, and communicate information needed for accomplishing tasks pertained to
office environment.
Microsoft Word:
Microsoft word is application software for storing, manipulating, and formatting text entered
from a keyboard and providing a printout.
If MS-Word already pinned in the taskbar launch the application by double clicking the
MS-word icon from the taskbar
File Tab:
The Microsoft Office button allows to create a new document, open an existing document, save
or save as, print, send (through email or fax), publish and exit word application.
Ribbon:
1 Ribbon provides a quick and easy access to the most frequently used icons. It contains
multiple tabs, each with several groups of commands. The tabs are:
Home
o Groups - Clipboard, Font, Paragraph, Styles and Editing
Insert
o Groups Pages, Tables, Illustrations, Links, Header & Footer, Text and Symbols
Page Layout
o Groups Themes, Page Setup, Page Background, Paragraph and Arrange
References
Mailings
Review
View
Developer
Minimize or Expand Ribbon
Click the small Minimize/Expand Ribbon icon (Arrow) on the upper-right corner, before the
? help icon.
Once the Ribbon is minimized, click any tab to bring it back but it will only show
temporarily. The ribbon will vanish again. To expand the ribbon permanently again click
the same icon.
Create a New, Blank Document:
To Insert Text:
1. Move mouse to the location where the text to be entered in the document.
2. Click the mouse. The insertion point | ( I beam) appears.
3. Type the text. At the end of the line do not try to press enter key to go to the next line. Word
will automatically places the I beam cursor to the next line which is refered as word wrap.
To Delete Text:
To Select Text:
Encrypt dialog box will be displayed as shown below. Enter the password and click ok. Now the
document is password protected. To open the document password need to be enterd. Do
remember the password.
Font group under Home Tab:
The font group is used to set the font, font size, font color, font size etc.
Click Font Dialog Box Launcher to open the font dialog box.
Paragraph:
Paragraph group in MS-Word is used to set different style paragraph such as alignment,
indentation, spacing etc. in the document. Click Paragraph Dialog Box Launcher to open the
paragraph dialog box.
2. In the search box, type the text to find. Any instances of the found text are highlighted in
the document and listed in the Navigation pane.
3. Browse through the results by using the up and down arrow controls.
Try out find and replace text.
Insert Table:
To quickly insert a basic table, click Insert > Table and move the cursor over the grid until
highlight the number of columns and rows you want.
Click and the table appears in the document. If make adjustments, you can add table rows and
columns, delete table rows and columns, or merge table cells into one cell.
Insert header and Footer:
Headers and footers are areas in the top, bottom, and side margins of each page in a document.
Page numbers, the time and date, a company logo, the document title or file name, or the author's
name, graphics can be added in the header or footer.
Insert a predefined header or footer
On the Insert tab, in the Header & Footer group, click Header or Footer.
1. Place the mouse on the tools on the ribbon and write down the tool tips (names of the tool).
2. Brief the contents of the status bar.
3. What is meant by clipboard? Differentiate cut & paste and copy & paste?
4. Differentiate Save and save As.
5. Prepare the calendar for August 2016 by inserting appropriate pictures of seasons of agricul-
ture and convert the same in to pdf format.
6. Develop a Pongal greeting card in word. By inserting suitable clip art, shapes, pictures, word
art.
7. Develop a report on Agriculture in India for three pages including bulleted lists, page
borders, header and footer note and watermark.
8. Enter the given text in MS-Word and apply the format given below:
The word internet is used to describe a network of networks which incorporate a very large and
complicated set of equipment. To understand the internet, there are three areas of discussion
which are very helpful. These include the various services provided across the internet, the
functions that enable the internet to work, and the various organizations that are part of the
internet. The main services used on the internet include:
1 Web browsing - Supported by the HTTP protocol, this functions allows users to view web
pages using a web browser.
0 E-mail - Allows people to send and receive electronic messages.
1
2 The font face of the entire text be Arial
3 Set the top margin 2 and bottom margin 2
4 Set left margin 1 and right margin 0.5
5 Apply yellow background to the page
6 Set 1.15 line spacing
7 Bold and underline the first line
8 Apply red font color to the second line
9 Strikethrough the last paragraph
10 Apply green text highlight color to the third line
11 Add header and footer note
12 Find and replace the text internet into intranet
13 Save this document with the name Network
14 Set landscape orientation
15 Display the document in full screen view
16 Convert the document in to PDF format
17
9. Develop the Time Table of I-B. Tech.(AIT) in MS-Word as given below:
10. In Microsoft Word develop the calendar sheet of the month June 2016 in the following
format.
Tamil Nadu Agricultural University
Coimbatore 641 003
June 2016
18
11. Prepare the following tables:
1 2 3 4 5 6 7 8 9 1 2 3 4 5 6 7 8 9 1 2 3 4 5 6 7 8 9
1 2 3 4 5 6 7 8 9 1 2 3 4 5 6 7 8 9 1 2 3 4 5 6 7 8 9
1 2 3 4 5 6 7 8 9 1 2 3 4 5 6 7 8 9 1 2 3 4 5 6 7 8 9
1 2 3 4 5 6 7 8 9 1 2 3 4 5 6 7 8 9 1 2 3 4 5 6 7 8 9
1 2 3 4 5 6 7 8 9 1 2 3 4 5 6 7 8 9 1 2 3 4 5 6 7 8 9
1 2 3 4 5 6 7 8 9 1 2 3 4 5 6 7 8 9 1 2 3 4 5 6 7 8 9
1 2 3 4 5 6 7 8 9 1 2 3 4 5 6 7 8 9 1 2 3 4 5 6 7 8 9
1 2 3 4 5 6 7 8 9 1 2 3 4 5 6 7 8 9 1 2 3 4 5 6 7 8 9
1 2 3 4 5 6 7 8 9 1 2 3 4 5 6 7 8 9 1 2 3 4 5 6 7 8 9
12. Draw the diagram given below and insert your name in the diagram in a text box.
Reference
http://en.kioskea.net/contents/71-introduction-to-office-automation
http://office.microsoft.com/en-in/suites/
http://www.wikihow.com/Convert-a-Microsoft-Word-Document-to-PDF-Format
http://www.gcflearnfree.org/word2010.
Ex. No. 8 Working with presentation software
Date:
Aim:
Developing and familiarizing the student to describe:
Working Environment on MS Powerpoint2010
Enhancing the students to use tools for illustrating the content by showing photos graphs,
charts, maps, etc., in the form of presentation or slide-show
Exploring the PowerPoint window
By clicking on PowerPoint, a new presentation is created, and a blank slide appears in
PowerPoint window. The slide has placeholders for adding a title and subtitle.
The tabbed Ribbon menu system is used to access the various PowerPoint commands. Above
the Ribbon in the upper-left corner is the Microsoft Office button. From here, it will access
important options such as New, Save, Save As, and Print.
On the left side of the window, a task pane is available with slides and outline tabs, which
appears by default. On the bottom-right of the screen, view commands are present (Normal,
Slide Sorter, and Slide Show), as well as the zoom tool.
To change views:
Locate the View options in the bottom-right corner. The view options are Normal, Slide Sorter,
and Slide Show.
To insert a movie into the PowerPoint presentation, insert a movie from a file available
in the computer or from the Microsoft Office clip organizer. In addition, PowerPoint
gives many options to define how the movie will operate in the presentation.
Move the cursor over each option to see a live preview of the animation on the slide.
Click an option to select it.
To apply a custom animation effect:
Select the text or object on the slide to be animated.
Select the Animations tab.
Click Custom Animation in the Animations group. The Custom Animation task
pane will appear on the right.
Click Add Effect in the task pane to add an animation effect to the selected text or
object.
The animation will display on the selected item on the slide and will appear listed in
the Custom Animation task pane.
1. A number label appears on the slide next to the animated object. A matching
number label also appears next to the animation in the Custom
Animation task pane list.
2. Drop-down menus appear at the top of the Custom Animation task pane. It
will define the animation effect in greater detail here.
3. The star Play Animations icon appears beneath the slide on the Slides tab in
the task pane on the left. It indicates that the slide has an animation effect.
Select More Effects or More Motions Paths from the menu to see more animation
effect options.
Using transitions
Transition effectsor transitions as they are often calledare the movements seen when one
slide changes to another in Slide Show view. Transition effects are different from animation
effects. The term animation in PowerPoint refers to the movements of text and objects on the
slide, while transitions refer to the movement of the slide as it changes to another slide
Exercises
i) Create a powerpoint presentation on the topic Divisions of Agriculture with five slides and
save as with file name Agriculture.
ii) Create a powerpoint presentation with the title Horticulture and having the sub-titles on
Pomology, Olericultue and Floriculture by inserting suitable pictures on each slide.
iii) Prepare a photo album on flower varieties with their names available in Tamil Nadu using
powerpoint presentation.
iv) Create a presentation using different templates for each slides on the topic Rice varieties in
India.
v) Discuss through the presentation on the topic Impact of Agricuture in India by applying
different transition and animations effects to the text and Print handouts for distribution with
4 slides per page
vi) Insert shapes and texts by drawing the given picture in powerpoint presentation
Basics of Worksheet
Spreadsheets are commonly referred to as workbook in Excel.
Workbooks are made up of worksheets or sheets.
Sheets contain
o columns
o rows and
o their intersections which are called cells
A workbook may contain one or more worksheets.
The rows are numbered.
The columns are specified with alphabets.
Cell
1 The intersection of a row and a column is called as cell. Cells are the basic building
blocks of a worksheet. Cells can contain a variety of content such as text, formatting attributes,
formulas, and functions.
2 Each cell has a name, or a cell address based on which column and row it intersects. The
cell address of a selected cell appears in the Name box.
3
To Create a New, Blank Workbook
1. Click the File tab.
2. In the Backstage view Select New.
3. Select Blank workbook under Available Templates. It will be highlighted by default.
4. Click Create. A new, blank workbook appears in the Excel window.
To Open an Existing Workbook
1. Click the File tab.
2. In the Backstage view Select Open.
3. The Open dialog box appears.
4. Select workbook and then click Open.
Save a workbook
1. Click the File tab.
2. Click Save As.
3. In the Save As dialog box, in the Save as type list, select Excel Workbook
4. In the File name box, enter a name for your workbook.
5. Click Save to finish.
File Extension
.xls and .xlsx
File extension xls is used by Microsoft Excel prior to 2007 versions while .xlsx is used on
the version Microsoft Excel 2007 and onward. Excel workbook with .xlsx file extension
cannot be opened in the versions prior to Microsoft Excel 2007.
Worksheet Manipulation
1 By default Excel 2010 provides three worksheets in a workbook. Any number of
worksheets can be added or deleted from the workbook as per the demand. The worksheets are
named as Sheet1, Sheet2 and Sheet3 by default.
To Insert a Worksheet
0 A new worksheet can be inserted in any one of the following two different ways: To
insert a new worksheet in front of an existing worksheet, select that worksheet and then, on the
Home tab, in the Cells group, click Insert, and then click Insert Sheet.To quickly insert a new
worksheet at the end of the existing worksheets, click the Insert Worksheet tab at the bottom of
the screen.
1
Hiding a Worksheet
1 Hiding worksheets can be a simple way to protect data in Excel, or just a way reduce the
clutter of many tabs.
To Hide a Worksheet
1 Select the Worksheet to hide by clicking on the tab at the bottom. By holding down the
Ctrl key while clicking you can select multiple tabs at one time.
2 On the Home tab, click on Format, which can be found in the Cells group. Under Vis-
ibility, selectHide& Unhide, then Hide Sheet.
3 Or simply right-click on the tab, and select Hide.
4 Hidden worksheet will no longer be visible; however, the data contained in the worksheet
can still be referenced on other worksheets.
Unhide a Worksheet
1 To unhide a worksheet, do the opposite. On the Home tab, click on Format in the Cells
group and then under Visibility, select Hide & Unhide, then Unhide Sheet.
2 Or right-click on any visible tab, and select Unhide.
To Copy a Worksheet
1 Open source and the destination workbooks from where the workbook has to be copied
and pasted.
Right-click on the sheet tab to be copied and select Move or Copy option.
In the Move or Copy dialog box in the To Book tab choose the workbook wherein the
worksheet has to be copied by choosing from the drop down list.
Choose the sheet before which the worksheet needs to be copied.
Click the check box of the Create a copy.
Click OK.
The worksheet is copied to the destination.
To Delete a Worksheet
1 Select the worksheet or worksheets to be deleted. On the Home tab, in the Cells group,
click the arrow next to Delete, and then click Delete Sheet.
2 Or Right click the worksheet to be deleted on the worksheet tab and choose Delete option
to delete the worksheet.
To move through a worksheet using the keyboard
Press the Right arrow key or Tab key to move to the right of the selected cell.
Press the Left arrow key or Shift key then the Tab key to move to the left of the
selected cell.
Use the Page Up and Page Down keys to navigate the worksheet.
Use Ctrl + Home to move the first cell of the worksheet.
Use Ctrl+End to move the last cell of the worksheet.
To Select a Cell
1. Click on a cell to select it. When a cell is selected the borders of the cell appear bold
and the column heading and row heading of the cell are highlighted.
2. The cell will stay selected until another cell in the worksheet is clicked.
3. Any cell in the worksheet can be selected by navigating around the worksheet by using
navigation keys (Up, down, left, right arrow keys, pageup, pagedown).
To Insert Content
1. Click on a cell to select it.
2. Enter content into the selected cell using the keyboard. The content appears in the cell and in
the formula bar. Contents can also be entered or edited from the formula bar.
3. In the Category list, click the desired format that you want to use, and then adjust set-
tings, if necessary. For example, for Currency format, a currency symbol can be selected
from different currency symbol, show more or fewer decimal places, or change the way
negative numbers are displayed.
Simple Formula
1 A formula is an equation that performs a calculation. Like a calculator, Excel can execute
formulas that add, subtract, multiply, and divide.
2 One of the most useful features of Excel is its ability to calculate using a cell address to
represent the value in a cell. This is called using a cell reference.
3 Excel uses standard operators for equations, such as a plus sign for addition (+), a minus
sign for subtraction (-), an asterisk for multiplication (*), a forward slash for division (/), and a
carat (^) for exponents.
4 The key thing to remember when writing formulas for Excel is that all formulas must be-
gin with an equal sign (=). This is because the cell contains, or is equal to, the formula and its
value.
Fill Handle
Drag down the fill handle to match the requirement as shown below:
Basic Functions
1 A function is a predefined formula that performs calculations using specific values in a
particular order.
2 The Parts of a Function
=SUM (C4:C16)
Equal sign
Function name (SUM)
Argument (C4:C16)
Colons create a reference to a range of cells.
0 =AVG(E19:E23) would calculate the average of the cell range E19 through E23.
Commas separate individual values, cell references, and cell ranges in the parentheses. If
there is more than one argument, each argument separated by a comma.
For example, =COUNT(C6:C14,C19:C23,C28) will count all the cells in the three argu-
ments that are included in parentheses.
Chart
1 A chart is a tool in Excel to communicate data graphically.
2 Excel workbooks can contain a lot of data, and that data can often be difficult to inter-
pret. For example, where are the highest and lowest values? Are the numbers increasing or
decreasing?
3 The answers to questions like these can become much clearer when the data is repre-
sented as a chart. Excel has many different types of charts, so the user can choose one that most
effectively represents that particular data.
0 Example of graphs:Column, Line, Bar, Pie, Area, Doughnut, Radar, Surface, Bubble,
Stock etc.
Column Graph
1 It shows data change over a period of time or illustrates comparisons among items.
Categories are organized horizontally and values vertically.It is an ideal chart for showing the
variation in the value of an item over period of time.
Bar Graph
1 Bar graph illustrates comparison among individual items.Categories are vertically
organized and values horizontally.
Line Graph
1 A line graph shows trends in data at equal intervals. It is very useful to show the change
in the value over a period of time. It will show very clearly whether a value is ascending or
descending.
Pie Chart
1 Pie chart is used to plot data for a single data series. Each data point is represented by one
piece of the circular pie chart. The size of each piece is proportional to the value it represents, so
all the data points taken together will form circle.
Area Graph
1 Area chart is similar to line chart. But plots series one above the other with different
colors and shades. It emphasizes the magnitude of change over a period of time.
XY (Scatter) Graph
1 It plots each point with a mark of two groups of numbers as one series of XY coordinates.
It shows uneven intervals of data and it is commonly used for scientific data.
To Create a Chart
2 1. Select the cells to chart, including the column titles and the row labels. These cells will
be the source data for the chart.
3 2. Click the Insert tab.
4 3. In the Charts group, select the desired chart category (Pie Chart, for example).
5 4. Select the desired chart type from the drop-down menu (Clustered Column, for
example.
6
4. The chart will appear in the worksheet.
Chart Tools
1 Once you insert a chart, a set of Chart Tools, arranged into three tabs, will appear on the
Ribbon. These are only visible when the chart is selected. Use the Chart Tools to add chart
elements such as titles and data labels, and to change the design, layout, or format the chart.
2
Add title to the Axes
1. Click anywhere in the chart to add axis titles.
This displays the Chart Tools, adding the Design, Layout, and Format tabs.
2. On the Layout tab, in the Labels group, click Axis Titles.
Axis Title, and then click the wanted option. If the chart has a secondary
horizontal axis, click Secondary Horizontal Axis Title.
To add a title to primary vertical (value) axis, click Primary Vertical Axis
Title or Secondary Vertical Axis Title, and then click the wanted option.
To format the text in the title box, do the following:
4. Click in the title box, and then select the text that you want to format.
5. On the Mini toolbar, click the formatting options.
Remove a chart or axis title from a chart
Click anywhere in the chart.This displays the Chart Tools, adding the Design, Layout,
and Format tabs.
Do one of the following:
o To remove a chart title, on the Layout tab, in the Labels group, click Chart Title,
and then click None.
To remove an axis title, on the Layout tab, in the Labels group, click Axis Title, click
the type of axis title to be removed, and then click None.
To quickly remove a chart or axis title, click the title, and then press DELETE. Also
right-click the chart or axis title, and then click Delete.
To remove chart or axis titles immediately after add them, click Undo on the Quick
Access Toolbar, or press CTRL+Z.
Exercises:
1. What is the difference between deleting a cell or deleting the content of a cell?
2. How many rows and columns are there in a worksheet of MS Excel 2010?
3. What are the addresses of the last column, last row and the last cell in worksheet of MS-
Excel 2010?
4. Enter the following the data in the Excel sheet and to calculate the bioefficiency using the
formula (weight of mushroom / weight of substrate) * 100
Mushroom Type Weight of Mushroom Weight of Substrate Bioefficiency
Oyster 800 500
Shiitake 700 200
Jelly 600 300
Button 1000 400
Milky 800 300
5. Enter the following data of the students in MS-Excel and calculate the total under the
Total column with cell reference fill handle. Represent the data in Pie and Bar chart. Title
the chart and label the axes.
ID NAME MAT 111 SAC 101 COM111 AGR101 AGM101 TOTAL
2016007001 ARUN V 74 75 87 56 99
2016007003 BARGAVI S 79 95 59 79 59
2016007005 BHARATH B 95 89 87 90 87
2016007006 BRINDHA D 75 56 78 75 78
2016007007 DEEPAN M
69 79 77 95 77
L
2015007008 DEEPTHI A 87 90 75 89 87
Date :
Aim
To learn the use Microsoft Paint in Windows operating system.
Introduction
Images can be brought into the computer environment in two ways; created as an artist
creates a picture or as a photographer captures an image. Computer paint applications are the
usual method for creating and manipulating images while scanners and digitizers are used as
tools to capture images.
Objectives
At the right-hand end of the Title Bar are the three usual window buttons,
Minimise, Maximise and Close.
Minimize -- Paint Window is already maximized, taking up all of your screen
Restore - which makes the window the size in usually have it.
Close -- Close the application
How to move Quick Access Toolbar to below the Ribbon
Move the cursor over the left end of the title bar until the Customise icon lights up. Click and a
menu will appear, Click Show below the Ribbon.
Properties dialogue
The Properties dialogue, for instance, will give information about the currently working picture.
- Shows the size of the picture and the measurement will be in pixels.
Disk Size
Resize/Skew dialog.
Type a new size (in pixels, or by percent, as you did when creating the canvas)
to increase or decrease the image size.
Figure 10 : Resize Image
Rotate an image
To flip an image upside down (or some other direction), use the Flip and
Rotate tools.
press Ctrl + R to bring up the Rotate tool on any platform.
zoom out.
Save
Click File, then Save As to choose a filename and saving location and
choose a file format.
JPG is a good option for photographs or images with lots of colors.
Drawing and Painting
Color palette
The assortment of colored squares at the top of the screen is the color palette.
Clicking a color will select that color as the foreground (main) color for any tool
used in Paint.
Set a background color to start working with shapes.
o Windows 7 and later: The foreground is called Color 1, the background Color
2.
o To choose a foreground color, click Color 1 and select any color from the
palette.
o For a background color, click Color 2 and click any color.
o Windows Vista or below
Find the two overlapping colored boxes to the left of the palette.
The front box is the foreground color, the back box is the background.
Set the background color by right-clicking the color of choice.
Draw a straight or curved line
o To draw a straight line
click the Straight Line tool, then choose a color from the palette.
Click anywhere in your canvas. While holding down the mouse button,
drag the mouse away from that first click in any direction and release the
button when the lineend.
o For a curved line
click the Curve icon (a squiggly line).
2. Draw a line as with the straight line tool. lift your finger from the mouse button, click
somewhere on the line and drag it in any direction. The straight line drew will curve in
that direction.
Add text
o Select the Text tool, which is signified by the letter A, then double-click
somewhere on the canvas to start typing.
o A dotted text box with square boxes on each corner will appear.
o To increase the text box size , hold the mouse over one of the square corners until
the cursor turns to an arrow, then drag the box to a larger size.
o Choose a font face and size from the top of the screen and begin typing.
o To change the color, size or face of the text after you type, highlight the text, then
choose the new color, size, etc
Alt Combo
Alt key -- navigate the interface and its tools.
Function Keys
Windows in general has specific functions associated with each function key (F1
through F12 keys).
Table 3 : Function Shortcut Keys
Arrow Keys
Table 4 : Arrow Shortcut Keys
Right Arrow Move the selection or active shape right by one pixel
Left Arrow Move the selection or active shape left by one pixel
Down Arrow Move the selection or active shape down by one pixel
Up Arrow Move the selection or active shape up by one pixel
Miscellaneous
Table 5 : Shortcut Keys
References
http://windows.microsoft.com/en-us/windows7/getting-started-with-paint
Exercises
1. Open a picture from sample picture folder. Save the picture in jpeg and png format.
Check the file size in both the formats. Infer which format consumes less space.
2. Open the picture saved in the jpeg format. Choose resize and skew tool from home tab
and change the pixel magnitude. Save and check the size of the picture and memory
space occupied.
3. Draw a picture and store the files in jpeg format.
Ex. No. 11 Working with basic networking commands
Date:
Aim:
Study about basic networking commands and configuration the computer networks
Network:
A network consists of several computers connected together. A group of two or more
computer systems linked together. A computer network is a collection of computers and
peripherals devices (network components) connected by the communication links that allows the
network components.
The listing of the various network related commands used in MS-DOS, Windows, Linux,
Unix, and other operating systems.
Importance of Networks
Department to share Hardware
Information to shared
Electronic Transfer Text
Communication between organizations
Security
Cost
Easier backup processor
Access the another machine
Disadvantages of Networking
Server faults stop all the applications
Network faults causes loss of data
Users work depending on network
Networking commands
Ipconfig
Ipconfig is an MS-DOS utility that can be used from MS-DOS and an MS-DOS shell to
display the network settings currently assigned and given by a network.
Ipconfig command is used to find out your current TCP/IP address with find your Default
Gateway and find your Subnet Mask.
Examples:
ipconfig
ipconfig /all
Display all your IP information for all adapters. With ipconfig /all you can also find out
your DNS Server and MAC Address. This will show your full TCP/IP configuration for all
adapters on your Windows machine. You can find out your own IP Address as well as your
default gateway.
IPCONFIG /RELEASE
The usage the RELEASE argument instructs IPCONFIG to release the IP lease that it obtained
from the DHCP server.
IPCONFIG /RENEW
This command will renew all your IP addresses that you are currently (leasing) borrowing
from the DHCP server. This command is a quick problem solver if you are having connection
issues, but does not work if you have been configured with a static IP address.
IPCONFIG /FLUSHDNS
The usage the FLUSHDNS argument instructs IPCONFIG to purge the DNS Resolver
cache. This can be useful in resolving a "Page Not Found" error sometimes experienced when
the network adapter is still assigned an IP address and DNS servers
Ping
Ping is one of the most commonly used network commands that allow you to ping
another network IP address. Pinging another address helps determine if the network card can
communicate within the local network or outside network.
Pinging an IP address or website can help you determine if your computer can communicate over
a network with another computer.
Ping website address
To determine the IP address of another computer or website, you must either know
the computer name or domain name and use the ping command to ping the computer and obtain
its IP address. Type ping <computer> With Trace route you can trace the path your packets take
across the internet from you to your computer.
nslookup
nslookup is a way to get the IP address for a domain name. You can also do a reverse
lookup from Domain Name to IP Address. It can be a way to find out if your DNS is properly
working or if the site is having problems. You can obtain an IP from a site and try to visit the IP
directly, by passing the Domain Name Servers that would usually resolve the Domain name to IP
name.
Netstat
The NETSTAT command displays protocol statistics and current TCP/IP network
connections. netstat can be used to view your active network connections and TCP/IP
connections. You can determine what ports are open and being used, what programs are using
your ports and what kind of TCP connections are present.
Getmac
Getmac command to find the MAC address.
Telnet
The telnet commands allow you to communicate with a remote computer that is using the Telnet
protocol.
Hostname
Finding host/domain name and IP address
Finger
View user information
Exercise
1. Explain Networking commands
2. Print the IP address of your system
3. Establish remote desktop connections
Ex. No. 12
Working with Web Browsers and Search Engines
Date :
Aim:
Browser:
A browser is a software application used to locate, retrieve and display content on
the World Wide Web, including web pages, images, video and other files. As a client/server
model, the browser is the client run on a computer that contacts the Web server and requests
information. The Web server sends the information back to the Web browser which displays the
results on the computer or other Internet-enabled device that supports a browser.
The most popular browsers used to access information on the web include
Microsoft Internet Explorer, Firefox, Google Chrome, Apple Safari and Opera. A browser can
also be used to access information hosted on web servers in private networks.
What does a browser do?
When you type a web page address such as www.tnau.ac.in into your browser, that web
page in its entirety is not actually stored on a server ready and waiting to be delivered, instead
the web page that is requested is individually created in response to your request. You are
actually calling up a list of requests to get content from various resource directories or servers on
which the content for that page is stored. The page maybe made up from content from different
sources. Images may come from one server, text content from another, scripts such as date scripts
from another. As soon as you move to another page, the page that you have just viewed
disappears. This is the dynamic nature of websites.
How to use a browser?
1. Launch the browser.
6. Tab tearing means you can drag a tab beyond the browser window to open a new
window. This is supported in Google Chrome and Firefox (since v3.1).
7. To close all tabs, simply close the browser.
Search Engine
Search engines are programs that search documents for specified keywords and return a
list of the documents where the keywords were found. There are many different search engines
you can use, but some of the most popular include Google, Yahoo!, and Bing.
How to perform search? To perform a search, navigate to a search engine in web browser, type
one or more keywordsalso known as search termsthen press Enter as shown below:
A list of relevant websites that match search terms is displayed. These are commonly known
as search results. If a site that looks relevant to the search, click that link to open it. If not
simply return to the results page to look for more options.
Most browsers also allow to perform a web search directly from address bar, although
some have a separate search bar next to the address bar. Simply type search terms and
press Enter to run the search as shown below:
Search Suggestions:
If you don't find what you're looking for on the first try, don't worry! Search engines are
good at finding things online, but they're not perfect. You'll often need to try different
search terms to find what you're looking for. If you're having trouble thinking of new
search terms, you can use search suggestions instead. These will usually appear as you're
typing, and they're a great way to find new keywords you might not have tried otherwise.
To use a search suggestion, you can click it with your mouse, or select it with the arrow
keys on your keyboard.
These techniques may come in handy in certain cases, but you probably won't need to use them
with most searches. Search engines can usually figure out what you're looking for without these
extra characters. We recommend trying a few different search suggestions before using this
method.
Content Specific Search
There may be times when you're looking for something more specific, like a news
article, picture, or video. Most search engines have links at the top of the page that allow you to
perform these unique searches.
In the example below, we've used the same search terms to look for images instead of websites.
If you see an image you like, you can click to visit the website it originally came from.
You can use the extra search tools to narrow down your results even more. These tools will
change based on the type of content you're looking for, but in this example we can filter our
images by size, color, image type, and more. So if you wanted to find cookies with pink
frosting, you could search for images that are mostly pink.
Advertisements
One final thing to note: Most search engines include advertisements with search results. For
example, you can see advertisements at the top of the search results below.
These ads are based on your search terms, and they often look similar to other search results.
While they may be useful in some cases, it's usually more helpful to focus on the actual search
results.
How do they do this?
The search engine sends a software program (spider or crawler) to all web pages it can
find on the World Wide Web.
The search engine software then scans the web page.
It sends back the results of its scan to the search engine database.
The search engine database receives the scanned information from the web page - and -
just as a librarian would - creates an index of all it has received in such a way that it is
easy to carry out a later search.
The search engine offers access to the public through a portal on the World Wide Web.
Following the input of a search into the search engine's portal, the search engine uses a
complex formula or algorithm to pull pages from its index and to list each page with a
brief description of contents. The algorithm attempts to list the pages in order of
relevancy to you search
Exercise
1. Define Browser
2. List the Types of Browser and its function
3. Define Search Engine
4. Explain Searching Techniques
5. Write the procedure to download an article
6. Procedure to save an image and save a website
7. How to delete History of recently visited website.
8. Search any of the popular agriculture related article in the website
http://cera.jccc.in.
Date:
Aim:
To provide a foundation in understanding of email with a focus on creating and
manipulating simple emails using web mail and email client softwares.
Content : Email Client
1. What is e-Mail ?
Electronic mail (e-Mail) can be defined as the process of exchanging messages
electronically, via a communications network, using the computer.
E-mails allow users to communicate with each other in less time and at nominal cost as
compared to traditional phone or mail services.
In order to use e-mail, one must have access to the Internet and an e-mail account. An e-
mail account is a service that allows the user to send and receive e-mails through the
Internet.
Generally, there are two parts of an e-mail address: the logon identity and the identity of
the e-mail server. These are separated by the symbol @ (pronounced as at the rate). For
example, a typical e-mail address would look like:
[email protected]
6. Text Book
https://en.wikipedia.org/wiki/Email
https://en.wikipedia.org/wiki/Email_address
https://en.wikipedia.org/wiki/Email_attachment
https://en.wikipedia.org/wiki/Email_client
https://en.wikipedia.org/wiki/Internet_Message_Access_Protocol
https://in.mail.yahoo.com/
https://mail.google.com/
http://abuse.net/
Aim:
To provide a foundation in understanding of programming basics with the emphasis on
designing algorithm and flowchart, writing pseudo code and coding using C language.
Content :
Introduction to Computer Programming, Algorithm, Flowchart, Pseudo code and
writing programs using programming languages
1. Computer Program
An algorithm is a finite sequence of explicit instructions which when provided with a set
of input values produces an output and then terminates.
It provides a logical structure to plan the solution. Once the solution is properly designed,
the only job left is to code that logic into the respective programming language.
To be an algorithm, the steps must be unambiguous and after a finite number of steps, the
solution of the problem should be achieved.
Example : Algorithm to sum all the even numbers between 1 and 20 inclusive and
displays the sum.
i. Start
ii. Initialize sum with zero and count with one
iii. If count is even number then increment sum with one
iv. Increment count with one
v. If count is greater than 20 then goto step vii.
vi. Repeat step iii
vii. Display sum
viii. Stop
3. Flowchart
A flowchart is a pictorial representation of an algorithm in which the steps are drawn in the
form of different shapes of boxes and the logical flow is indicated by interconnecting arrows.
The boxes represent operations and the arrows represent the sequence in which the
operations are implemented.
A well-drawn flow chart is also very easy to read since it basically uses just two symbols,
two decision constructs. and two iteration constructs:
o the sequence symbol,
o the decision symbol,
o the decision construct if ... then
o the decision construct if ... then ... else
o the repetition construct - repeat,
o the repetition construct - while,
3.1 Benefits of Flowcharts
Repeat Loop
Note that the repeat loop has the process
preceding the
decision. This
means that a repeat loop will always execute the process part at
least once.
While Loop
The while loop is basically the reverse of the repeat loop, the decision comes first, followed by
the process. The while loop is usually written so that it iterates while the condition is true, the
repeat iterates until the condition becomes true.
4 Pseudo Code
To sum all the even numbers between 1 and 20 inclusive and then displays the sum
sum = 0
count = 1
REPEAT
IF count is even THEN sum = sum + count
count = count + 1
UNTIL count > 20
DISPLAY sum
Programming language consists of a set of characters, symbols, and usage rules that allow the
user to communicate with computers just as natural languages used for communication
among human beings.
Machine Language: It is the native language of computers. It uses only 0s and 1s to
represent data and instructions.
Assembly Language: It correspondences symbolic instructions and executable machine
codes and was created to use letters instead of 0s and 1s.
High-level Language: The programs written in high-level languages are known as
source programs and these programs are converted into machine-readable form by using
compilers or interpreters.
6. Exercises
Date:
Aim:
To explore DBMS software to create and manipulate databases.
Database
A database is a collection of organized data into many connected lists. The informations
are organized using a computer program. Databases are organized by fields, records, and files.
Field is a single piece of information
Record is one complete set of fields
File is a collection of records
To access information from a database, there is a need for Database Management System
(DBMS). This is a collection of programs that enables to enter, organize, and select data in a
database.
Objective of the DBMS
It provides a convenient and effective method of defining, storing and retrieving the
information contained in the database. The data contained in the database can be used by
multiple application and users using the DBMS interface with application programs.
Four basic functions performed by all DBMS are:
Create, modify, and delete data structures, e.g. tables
Add, modify, and delete data
Retrieve data selectively
Generate reports based on data.
Table (Entity)
A table is a data grid used to store similar information.
It is made up of columns (also known as fields), which represent entity attributes or
pieces of data, and rows, which represent individual records.
All records in a table share the same fields.
Tables are the heart of any database.
Columns (Attribute)
Columns (also known as fields), which represent entity attributes or pieces of data.
Tables are organized into vertical columns
Row (Tuple)
Represent individual records
Horizontal rows
Microsoft Access
Access 2010 is a database creation and management program. A database is a collection
of data that is stored in a computer system. Databases allow their users to enter, access, and
analyze their data quickly and easy. Access stores its lists of data in tables, which allow to store
even more detailed information. Databases in Access 2010 are composed of four objects: tables,
queries, forms, and reports. Together, these objects allow to enter, store, analyze, and compile the
data as per the wish.
The Ribbon
The Ribbon contains multiple tabs, each with several groups of commands. Some tabs,
like Form Layout Tools or Table Tools, may appear only when working with certain objects like
forms or tables. These tabs are called contextual tabs, and are highlighted in a contrasting color
to distinguish them from normal tabs.
T
he Ribbon in Access 2010
Each Access database consists of multiple objects that let you interact with data. Databases can
include forms for entering data, queries for searching within it, reports for analyzing it, and of
course, tables for storing it.
Table
In Access, all data is stored in tables, which put tables at the heart of any database.
The rows and columns are referred to as Records and Fields. A field is more than just a column:
its a way of organizing information by the type of data it is. Every piece of information within a
field is of the same type. For example, every entry in a field called First Name would be a
name, and every entry in field called Street Address would be an address.
Fields and field names
A record is more than just a row-- its a unit of information. Every cell in a given row is part of
that rows record.
A
record
Notice how
each record spans several fields. Even though the information in each record is organized into
fields, it belongs with the other information in that record. Tables are good for storing closely
related information.
Table Creation
To create a table with fields as student Idno, name, address and city
1. Select the table, right click the mouse and choose design view from the popup menu.
2. Enter the fieldname and datatype
3. Clicksave button.
To enter the data
1. Select the table and double click
2. Enter the record and save the table
A form
Forms make entering data easier. Working with extensive tables can be confusing, and
when there are connected tables, it is needed to work with more than one at once to enter a set of
data. However, with forms, it's possible to enter data into multiple tables at once, all in one place.
Database designers can even set restrictions on individual form components to ensure that all of
the needed data is entered in the correct format. All in all, forms help keep data consistent and
well-organized, which is essential for an accurate and powerful database.
Queries
Queries are a way of searching for and compiling data from one or more tables.
Running a query is like asking a detailed question of the database. When a query is built in
Access, defining specific search conditions to find exactly the required data is must.
Queries are far more powerful than the simple searches you might carry out within a
table. While a search would be able to help you find the name of one customer at your business,
you could run a query to find the name and phone number of every customer who's made a
purchase within the past week. A well-designed query can give information that might not be
able to find out just by looking through the data in the tables.
A query design
Reports
Reports offer the ability to present the data in print. Reports are useful, because they
allow to present components of database in an easy-to-read format. A report appearance can be
customized to make it visually appealing. Access offers you the ability to create a report from
any table or query.
A report
Updating and Deleting a row in a Table using Microsoft Access 2010
1. On the Design tab, in the Query Type group, click Update.
This procedure shows you how to change a select query to an update query. When you do
this, Access adds the Update to row in the query design grid.
2. Locate the field that contains the data that you want to change, and then type your
expression (your change criteria) in the Update to row for that field.
You can use any valid expression in the Update to row.
Delete records
On the Design tab, in the Query Type group, click Delete
Exercise
1. Create a crop table(CROP) with following fields
Crop name, Temperature, Rainfall, Latitude, Longitude, Soil PH, Soil fertility, Soil
texture, Soil alkaline and yield per hectare.
2. Enter six records to CROP table
3. Add one more filed Light intensity to the table STUDENT
4. Insert one more record to CROP table
5. Update the 3rd crops Soil feritility and yield per hectare
6. Write the query for the following (Query)
a. Display the crop details whose yield per hectare is > 100
b. Display the crop details whose individual rainfall is greater than 2mm.
7. Design a report to print crop name, Rainfall, Latitude, Longitude, Soil PH, Soil fertility
and Soil alkaline.
8. Delete records whose rainfall is < 2mm.
9. Design a report for crop name and yield per hectare.
Aim:
The study of SQL deals with:
create the database and relation structures
perform insertion, modification, deletion of data from relations
perform queries
SQL (Structured Query Language)
It is a standard programming language used to communicate with the relational database.
It is non procedural language because it processes sets of records rather than just one data
at a time also
It allows a set of rows as input and a set of rows as output.
Today almost all RDBMS(MySql, Oracle, Infomix, Sybase, MS Access) uses SQL as the
standard database language
SQL Data types
CHAR
- Character string. It specifies a fixed length character string.
- The default length is 1 byte.
- The maximum length is 255 bytes
Syntax : CHAR(N)
N is the size of variable
Example: create table sales (seed_name char(15));
VARCHAR2
- Character string. It specifies variable length character string.
- The default length is 1 byte.
- The maximum length is 2000 bytes
Syntax : VARCHAR2(N)
N is the size of variable
Example: create table sales (seed_name varchar(15));
NUMBER
- Used to store zero, Positive and negative fixed and floating point
numbers with 38 digits precision.
Syntax 1 NUMBER (p,s)
p is the precision or the total number of digits.
s is the scale or number of digits to the right of the decimal
point.
Example: create table sales (seed_rate number(6,2));
Syntax 2 NUMBER (p)
p - is the fixed point number with precision p and scale 0digits.
Example: create table sales (quantity number(3));
Long
- It stores variable length character strings containing up to 2 GB.
- The length of the LONG values may be limited by the memory available on the
computer.
- A table cannot contain more than one LONG column.
Syntax : LONG
Example: create table student ( activities LONG);
DATE
- Used to store date and time information.
- For each DATE value the following information is stored
Century, Year, Month, Minute and Second.
Syntax : DATE
Example: create table student (dob DATE);
RAW and LONG RAW
- These types are used to store floating point data, binary data such as graphics, images and
digitized sound.
- We cant perform string manipulation on RAW data.
Syntax : RAW
LONG RAW
Example: Create table student (photo raw);
ROWID
- Each row in the database has an address.
- We can examine a rows address by querying the pseudo column ROWID.
Two major components of SQL:
1. Definition Language (DDL)
2. Data Manipulation Language (DML)
DDL (Data Definition Language) :
The study of DDL deals with creation, modification and deletion of table.
DDL includes
a) Create Table
b) Alter Table
c) Rename
d) Truncate
e) Drop table
a) Create Table:
The command CREATE TABLE is used to create a new table.
Syntax:
CREATE TABLE < table name > ( column1 datatype,
column2 datatype,
-----
-----
column N datatype);
Example: To add a new field rate number(8,2) and also to modify the existing fields of the
table sales, such as
Field Name Data type
station_name varhar2(15)
quantity number(5)
d) TRUNCATE:
It removes all the rows from a table. TRUNCATE is faster than DELETE command
because it generates no rollback information, does not fire any delete message.
Syntax:
TRUNCATE TABLE <table_name>;
Example: To remove all records from seedsales table.
TRUNCATE TABLE seedsales ;
e) Drop Table:
It removes the specified table and all its data (records) from the database.
Syntax:
DROP TABLE <table_name>;
Example: To delete the table seedsales
DROP TABLE seedsales;
i) Direct Method:
Syntax: 1
INSERT INTO <table_name> VALUES (list of values);
Example:1
INSERT INTO seedsales VALUES (001,Coimbatore,January,IR20,20,40.50)
Example:2
INSERT INTO seedsales
VALUES( 002,Madurai,January,ASD16,54,32.00);
ii) Insertion with Macros
Syntax: 2
INSERT INTO <table_name> VALUES (&MacroName1, &MacroName2..);
Example:
INSERT INTO seedsales
VALUES (&sno,&station_name,&month,&seed_name,&quantity,&rate);
Enter value for sno: 003
Enter value for station_name: Killikulam
Enter value for month: February
Enter value for seed_name: ADT43
Enter value for quantity: 25
Enter value for rate: 36.50
Note : To call and execute the previous SQL command , apply / in SQL>
Example:
SQL> /
Enter value for sno: 004
Enter value for station_name:Trichy
Enter value for month: February
Enter value for seed_name:IR20
Enter value for quantity:30
Enter value for rate: 40.50
Output:
SELECT * FROM seedsales;
sno station_name month seed_name quantity rate
----- ------------------ -------- -------------- ---------- ----
001 Coimbatore January IR20 20 40.50
002 Madurai January ASD16 54 32.00
003 Killikulam February ADT43 25 36.50
004 Trichy February IR20 30 40.50
b) UPDATE
It allows you to update one or more columns and one or more rows in a table.
Syntax:
UPDATE <table_name> SET column = value | exp | Subquery
WHERE condition;
Example 1: To increase the rate of seed uniformly with Rs. 2.
UPDATE seedsales SET rate = rate + 2;
Example 2: To increase the rate of seed uniformly with Rs. 5 only for IR20.
UPDATE seedsales SET rate = rate + 5 WHERE seed_name = IR20;
c) DELETE:
It allows you to delete data ( record) from a table.
Syntax:
DELETE FROM <table_name> WHERE condition;
Example: To remove the records that belong only to Killikulam station.
DELETE FROM seedsales WHERE station_name = Killikulam;
d) SELECT
It is used to retrieve data (record) from one or more tables.
Syntax:
SELECT *|field1,field2,field n FROM <table_name> WHERE condition;
Example: 3 To list all sales records whose sales rate is less than Rs.40
SELECT * FROM seedsales WHERE rete < 40;
Output:
sno station_name month seed_name quantity rate
----- ------------------ -------- -------------- ---------- -----
002 Madurai January ASD16 54 34.00
003 Killikulam February ADT43 25 38.50
Lab work :
i) Create a table called FIELDCROPS consisting of the following fields and data types.
Field Name Data type
Cid Varchar2(3)
Crop-name Char(10)
Botanical-name Char(10)
Family Char(10)
Origin Char(10)
Variety Char(15)
Seed-rate Number(5)
Yield Number(5)
vi) To add additionally 2 kg/hec of Seed Rate only to the crops belonging to Poaceae family.
vii) To reduce 2 kg of seed rate as well as to reduce 2% of its yield only for the crops
belonging to fabaceae family
viii) To remove Balder variety crops from CROPS table.
ix) To delete summer season crops belonging to the Euphorbiaceae family.
x) To find Poaceae family crops growing in summer season
4. Develop a database namely Crop in Microsoft Access. Create a table namely Treecrops in
Crop database as shown below:
CROP_ID CROP_NAME ECONOMIC_PART FEED OILCONTENT AGE CELLULOSE
CR-10-001 Acacia Wood Leaves 255 12 32
CR-10-002 Pungam Wood Pod 234 32 43
CR-10-003 Neem Branches Seed 367 56 54
CR-10-005 Rain tree Canopy Leaves 65 78 34
CR-10-006 Casuarina Stem Pod 213 54 72
CR-10-007 Banyan tree Wood Leaves 675 34 73
CR-10-008 Coral tree Pods Stolon 439 56 90
CR-10-009 Mango Fruit Leaves 23 67 85
Delete the records whose economic part is wood.
References:
1) www.studytonight.com/dbms/
2) www.way2tutorial.com/sql/tutorial.php