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

Software

Software The ingredients that enables a computer to perform a specific task is software, Which consist​ of instructions.A set of instructions that drive a computer to perform specific task is called program.These instructions tell the machine physical components what to do,without the instruction a computer couldn't do anything at all.Software that are classified into two category 1.System software 2.Application software

FIND ARMSTRONG NUMBER

Find armstrong number #include < stdio.h > int main() {   int number, sum = 0, temp, remainder;   printf("Enter an integer\n");   scanf("%d",&number);   temp = number; /*if sum of cubes of each digit in a number is same as the number then it is called as armstrong no.*/   while( temp != 0 )   {   remainder = temp%10;   sum = sum + remainder*remainder*remainder;   temp = temp/10; /*taking unit place digits cube and adding into sum*/   }   if ( number == sum )   printf("Entered number is an armstrong number.\n");   else   printf("Entered number is not an armstrong number.\n");   return 0; }

REVERSE NUMBER

Reverse number #include < stdio.h > int main() {   int n, reverse = 0;   printf("Enter a number to reverse\n");   scanf("%d",&n);   while (n != 0) {   reverse = reverse * 10;   reverse = reverse + n%10;   n = n/10; } /*taking unit place digit of no and moving to reverse Dividing the no to discard unit place digit*/   printf("Reverse of entered number is = %d\n", reverse);   return 0; }