Skip to main content

Characteristics of computer

Characters of a computer
speed
storage/ memory
Accuracy
Deligence
Versatality
No IQ
No feeling
1.Speed
Computers  are very fast.They can process millions of instructions in a second.Speed is related to the amount of data it process​ and the time to complete the processing task
2.Storage
Computer have their main memory and auxiliary memory a computer can store a large amount of data.The factor that makes computers storage unique is not that it can store vast amount of data,but the fact that it can return in a few seconds
3.Accuracy
In addition to being fast computers are also accurate.The degree of accuracy for a particular computer depends upon its design.Most errors in computer are known of a technical failure and be human.Usually programmers are responsible for these errors
4.Deligence
computer cab perform any complicated task accurately without making any error.Computer do no suffer from carelessness borden, tiredness more over their effecientcy doesn't decrease with age.
5.Versatality
Computer vis versatile​ machine they are used in various fields.They are used in schools, colleges,hospitals, Government organizations,for entertainment and work purpose
6.No IQ
Computer doesn't have their own intelligence their IQ is zero.Hence the user has to design what task a computer should perform.
7.No feeling
Computers have no feeling, Because they are machine.Thet can't make judgements and they process on the basis of a set of instructions called programmes​ provided by the user

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.