Skip to main content

Computer

Computer
A computer is an electronic device that process data ,converting it into information that is useful to people
Parts of computer
A complete computer system contains 4 parts.
1.Hardware-keyboard CPU Mouse
2.Software-MS Point,MS word
3 Data 12,24
4.User
1.Hardware
The mechanical device that make the computer are called hardware. hardware is any part of a computer which which can touch. A computer Hardware consist of interconnected electronic devices that you can use to control the computer operation.
Eg: Monitor, Printer...etc
2.Software
software is a set of instructions that makes the computer to performs the task in other words software tells the the computer what to do. some programs the term program refers to any peace of software exist primarily for the computer used to help it perform the task and manage its on resources. other types of programmes exist for the user enabling into perfect task such as relating documents
eg: operating system,MS word


3.Data
Data consist of  individual facts or piece of information that why themselves​ may not be make much sense to a person.A computers primary job is to process these tiny pieces of data in varies ways, converting them into useful information
Eg 12,D4
4.User
people are the computer operators also known as users .It can be argued some computer systems are complete without a person involvement, however no computer is totally autonomous.Even if a computer can do job without a person sitting in front of it, people still design build program and require computer systems

Comments

Popular posts from this blog

SIMPLE INTEREST

Simple interest #include < stdio.h > void main() { int amount, rate, time, ans; printf("\nEnter Principal Amount : "); scanf("%d", &amount); printf("\nEnter Rate of Interest : "); scanf("%d", &rate); printf("\nEnter Period of Time : "); scanf("%d", &time); ans = (amount * rate * time)/100; /*Simple interest formula*/ printf("\nSimple Interest : %d",ans); }

HCF AND LCM

HCF and LCM #include < stdio.h > long gcd(long, long); int main() {   long x, y, hcf, lcm;   printf("Enter two integers\n");   scanf("%ld%ld", &x, &y);   hcf = gcd(x, y);   lcm = (x*y)/hcf;   printf("Greatest common divisor of %ld and %ld = %ld\n", x, y, hcf);   printf("Least common multiple of %ld and %ld = %ld\n", x, y, lcm);   return 0; } /*if 1st no is 0 then 2nd no is gcd make 2nd no 0 by subtracting smallest from largest and return 1st no as gcd*/ long gcd(long x, long y) {   if (x == 0) {   return y;   }   while (y != 0) {   if (x > y) {     x = x - y;   }   else {     y = y - x;   } } return x; }

System Software

System software Any programs that control the computers hardware or that can be used to maintain the computer in some way so that it runs more efficiently.These are 3 basic types of system software a.Operating System An operating system tells the computer how to use it own components.It is essential, Because it acts as an interface between the hardware, application program and the user Eg: Windows, Linux B.Network operating system Network operating system allows the computer to communicate and share data across a network while controlling network operation and network security. C.Utility Utility is a program that make the computer system easier to use and perform highly specialised function utilities are used to manage disk, trouble shoot hardware problems and perform other task.Operating system may not be able to do.