Skip to main content

Characteristics of Computer


Characteristics of Computer

Lets just enlist the characteristics of computer
  • Accuracy
  • Diligence
  • Speed
  • Remembering power
  • Versatility
  • Automatic
  • No IQ
  • No Feelings

Accuracy

As we already know that computer is an electronic machine. The name of this machine "Computer" explains much of the details about this heading. Since it is a computing device, it provides maximum accurate answer. Although it is an electronic device still it's calculated answer is not absolute accurate sometimes because it is a human product and also the input is given by the human beings which may be wrong.
Now the crux of the above discussion that you can write in any exam is that computer is a calculating device that provides the most accurate answer of different problems as compared to humans.

Diligence

Since computer is a machine, a non living thing, it can work for hours and hours without getting tired. This is the beauty of Computer, humans can't stand against a computer if it comes to consistency.
Nothing can ever distract a computer from its works. Humans are a lot different from computers, either it is people we are surrounded or may be different things happening around us we humans are easily distracted.

Speed

Computer works very fast. It hardly takes few seconds for calculations that humans takes hours to complete. For computers we consider time in micro or even nanoseconds, that's how much fast are the computers.

Remembering Power

Humans can remember something they are being interacted with for several times but in computer's case it has hard disks which can store tons and tons of data. Even we can extend its memory. As humans forget things by the time but computers keep their data stored util they are made to forget it, which is said to be deleting the data.

Versatility

Computers are totally versatile machines. They can perform different tasks on different occasions defined over different desires. 
Now if we talk about what you can write in quiz, Computers can perform different types of tasks, like they can be made to calculate sum of two integers next time they can be made to send a mail or play a video. 

Automatic

Humans may make mistake in doing something they are once told to do but on the other hand computers can repeat same process as they are told automatically with same efficiency they performed initially.

No IQ

Computer are totally dumb machines. They can't do anything on their own. They can't think on their own or they can't even decide anything on their own unless they are not told to do. As stupid as a rock which cannot move on its own the computers don't stand a chance against humans when it comes to decision making and intelligence.

No Feelings

Computers don't feel anything. They can't feel hunger, the can't feel pain, they don't get angry and they don't get happy. That is all just because computers are nonliving things.


share your views, comment below, follow the blog

Comments

Popular posts from this blog

Variables

Variables You may have been using variables and constants in since your 3rd grade. In any programming language same concept of variables is used which covers more than half of your code. Now is you have worked in C++ or Java or Python or any other programming language you may have used variables. If you are new to programming and you have started with C# its totally OK because you don't need any degree to learn programming. Now what are the variables, to be precise variables are the empty shells which can be filled to their limit and their value can variate with the passage of time as required and manipulated on desire.  Their are few types of variables: Types Examples Integral Types stype, byte, short, ushort, int, unit, long, ulong and char Floating Point Types Floating and Double Decimal Types Decimal Boolean Types True or False value, as assigned Nullable Types Nullable Data Types Declaration Moving on we have some rules for decl...

A Path To Block Chain

 Make it easy Out of oven For a long time blockchain have been known as a theory but bitcoin changed it all. On January 3 2009 bitcoin actually came into existence. Satoshi Nakamoto found something unusual. With the concept of blockchain and mined very first block of bitcoin with reward of 50 bitbucks known as bitcoins. (ok enough with history class lets jump into fun part now). Fun part Bitcoin: Knock knock!  Currency: who is there! Bitcoin: Full stop Trolling banks and financial departments of Europe and America, Bitcoin flew from ground to paramount in no time leaving others waving. For a very long time brokers have been piercing your gold mines with hammers but Bit dude being a good sheriff said "Stop that"   Brokers: "Why" Bit dude: "I wanna take over" Brokers: "With what army" Bit dude: "This army 'anonymous transactions' " Brokers: "Fair enough" With course of few years bitcoin went through so many ups and downs...
Theory of Automata Assignment #2 Part #2 Regular Expression # 6 The set of strings over {a,b} that contain at least two a's or exactly two b's. (a+b)*(a)(b*)a(a+b)*+a*b(a*)b(a*) Regular Expression # 7 The set of strings over {a,b} that contain even length but not multiple of 3 (aa*)(aaa^) Regular Expression # 8 The language over {a,b}contains exactly one double letter.   (ε + b)(ab) ∗aa(ba) ∗(ε + b) + (ε + a)(ba) ∗ bb(ab) ∗(ε + a)