what is the acronym of the term 'C.O.M.P.U.T.E.R' ?

Answer Posted / dax

Computer isn't an acronym.

It is the noun of the verb 'to compute', meaning to
calculate.

All a computer is, right down at its processor's core, is a
large series of Logic Gates; primarily AND gates. It is
used to 'compute' things. Thus, Computer.

Is This Answer Correct ?    24 Yes 6 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Name the different types of stl containers.

695


Who wrote stl?

682


Is stl part of c++ standard?

645


Write a C/C++ program to add a user to MySQL. The user should be permitted to only "INSERT" into the given database.

2097


Is string part of stl?

681






a program using one dimensional array that searches a number if it is found on the list of given input numbers given by the user and locate its exact location in the list.

1383


how can u do connectivity in c++ language? plz send me connectivity code in c++ ?

1897


If P is the population on the first day of the year, B is the birth rate, and D is the death rate, the estimated population at the end of the year is given by the formula: The population growth rate is given by the formula: B – D Write a program that prompts the user to enter the starting population, birth and death rates, and n, the number of years. The program should then calculate and print the estimated population after n years. Your program must have at least the following functions: 1. growthRate: This function takes its parameters the birth and death rates, and it returns the population growth rate. 2. estimatedPopulation: This function takes its parameters the current population, population growth rate, and n, the number of years. It returns the estimated population after n years Your program should not accept a negative birth rate, negative death rate, or a population less than 2. please answer my question ....

1778


Write a C/C++ program that connects to a MySQL server and checks if the InnoDB plug-in is installed on it. If so, your program should print the total number of disk writes by MySQL.

1978


sir please send me bpcl previous question papers

1961


How do you convert stl to steps?

635


What is stl stack?

665


Do you like to Submit Questions in Bulk under Same Category?? Then use our Bulk ListerDo you like to Submit Questions in Bulk under Same Category?? Then use our Bulk Lister

1664


Why should a c++ programmer be interested in stl?

647


Is there any error below, its a code to delete all entires from a map #include #include iostream.h int main() { int i =0; map TestMap; while(i<3) { TesMap.insert(TestMap::value_type(i,Test)); i++; } typedef map :: iterator mapIter =TestMap.begin(); if(mapIter!=TestMap.end()) { TestMap.erase(mapItrer); ++mapIter; } return 0; }

1896