Fcpit: Familiarisation of Computer
Fcpit: Familiarisation of Computer
Download
the original attachment
FCPIT
Submitted To: - Submitted By: -
Mrs. Rupandeep Kaur Parul Saini
CSE-1st Semester
Roll No:
DWIET
FAMILIARISATION OF
COMPUTER
Computer stands for
Definitions of Computer
OUTPUT UNIT
The job of an output unit is just the reverse of that of an input
unit. It supplies information and result of computation to the
outside world. Thus it links the computer with the external
environment as computer works with the binary form. Hence
before supplying the results to the outside world, it must be
converted into human acceptable form. This task is
accomplished by the output unit.
CONTROL UNIT
Control unit let us know the input device that it is time for it to
feed data into the storage unit. It lets the ALU know what
should be done with the data once they are received. And it is
the control unit which manages the final results by selecting
interpreting and seeing to the execution of the program
instructions the control unit is able to maintain order and direct
the operation of the entire system although it does not perform
any actual processing on the data. The control unit acts as the
central nervous system for the other components of the
computer. It manages and coordinates the entire computer
system. It obtains instructions from the program stored in the
main memory. Interprets the instructions and issues signals
that cause other units of the system to execute them.
SECONDARY MEMORY
It is very much larger than main memory or primary memory
but it is very much slower than main memory. It stores system
programs, large data files assembler, compilers etc. examples
Magnetic disks and hard disks.
MAGNETIC DISKS
FEATURES
DOS mode also offers the ability to fix certain system errors
without entering the GUI. For example if a virus is active I a
GUI mode it can often be safely removed in DOS mode by
deleting its executable files which usually can’t run without
windows.
DESKTOP OVERVIEW
The desktop, which is screen that you see after you log on to
Windows, is one of the most important features on your
computer. The desktop can contain shortcuts to your most
frequently used programs, documents and printers. The
desktop can also be the home of active contents such as news
or travel channel.
TASKBAR
The taskbar appears at the bottom of the screen. The taskbar
contains the start button which you can use to quickly start a
program, find a file, access help.
When you open a program or document in windows a button
appears on the taskbar for each item. Use the buttons to
quickly switch from one open window to another.
Minimize all open windows and access the desktop with one
click on the show desktop button on the taskbar.
MY COMPUTER
Use this folder to quickly see the contents on your floppy disk,
hard disk, CD ROM drive and map network drives. From within
my computer you can also open control panel where you can
configure many settings on your computer.
MY DOCUMENTS
Use this folder as a default storage location for documents,
graphics and other files, including saved web pages. Each user
who logs on to the computer has a unique my documents
folder, so the documents you store in you’re my documents
folder are not really available to another person who uses the
same computer.
MY NETWORK PLACE
Use this folder to locate shared resources on the entire
network to which your computer is connected. Shortcuts to the
computer, web servers, and FTP server where you have
accessed documents or programs are automatically created in
my network places. You can also create shortcuts to network,
web and FTP servers by using the add network place wizard.
RECYCLE BIN
The recycle bin stores deleted files folders graphics and web
pages until you empty the bin. If you want to retrieve an item
that you have deleted, look in the recycle bin.
INTERNET EXPLORER
Using an internet connection and internet explorer you can
browse the World Wide Web and your local internet.
TITLE BAR
The place in the window where the information of the
application opened and in use by the user is known as the title
bar.
MENU BAR
The horizontal bar below the title bar that contains the names
of the menus. A menu bar can be the built in menu bar or as
custom menu bar.
DOCUMENT WINDOW
The area of the application window where the main document
is proceed by the user is kale the document window.
MS WORD
Purpose of Word Processing
A word processor is a program or set of programs that enables
you to write, edit format and print text.
MS Word Window
It consists of various components like menu
bar, title bar, status bar, tool bar, scroll bar and
ruler line.
1. Menu Bar
You can use menu and tool bar to give Microsoft word
instructions about what you want to do. It displays the list
of commands.
1. File: Allows you to perform file related activities,
including opening, saving and printing.
2. Scroll Bar
The scroll bar allows you to view or display different parts
of your document in the document window by scrolling up
or down, left or right.
1. Title bar
Title bar displays the name of the current file and the
name of the current program.
2. Status Bar
3. Tool bar
3. Creating a Document
2. Editing
Or
Select the text that you need to bullet, and then press to
choose numbering or bullets.
3. Header and Footer
7. Print Option
C++ PROGRAMS
Program to find greatest of
three numbers
#include<iostream.h>
#include<conio.h>
void main();
{
clrscr();
int a,b,c;
cout<<”enter three numbers”;
cin>>a>>b>>c;
If(a>>b&&a>>c)
cout<<”a is greatest”;
else if (b>>a&&b>>c);
cout<<”b is greatest”;
else
cout<<”c is greatest”;
getch();
}