what is the acronym of the term 'C.O.M.P.U.T.E.R' ?
Answers were Sorted based on User's Feedback
Answer / tinakshi
Completion
of
mechanical,
power
unit
to
engineering
research....
| Is This Answer Correct ? | 10 Yes | 11 No |
Answer / rama chandra reddy
who ever computes can be refered as computer.as first the
computer was used to calculate the mathematical problems
the name came for it.
| Is This Answer Correct ? | 0 Yes | 1 No |
Answer / raleks
Commonly
Operated
Machine
Particularly
Used for
Trade
Education and
Reasearch
| Is This Answer Correct ? | 0 Yes | 1 No |
Answer / dushyant doshi
Simple Living, High Thinking... Computer stands for
C - Calculate
O - Operting
M - Machine
P - Plus
U - Ultimate
T - Testing
E - Error
R - Result
| Is This Answer Correct ? | 12 Yes | 14 No |
Answer / juggarnaut
commonly
operated
machine
particularly
used for
technical and
educational
research
| Is This Answer Correct ? | 1 Yes | 3 No |
Answer / lakshmi.l
CONDITION OF MAN POWER USING TERMINOLOGY END RECOVERY
| Is This Answer Correct ? | 0 Yes | 4 No |
Answer / sai shanker anumalla
as per best of my knowledge, it is
C - Conventional
O - Organization of
M - Man
P - Power
U - Utilitilised
T - Tachnical
E - Enhancement
R - Resource.
| Is This Answer Correct ? | 16 Yes | 23 No |
How is stl different from c++ standard library?
What is stl in oop?
What are the symptoms of stl?
How the STL's are implemented, What the difference between templates and STL?
5. Write c++ function that would intake a string and return the number of occurrences of a given character in that sring Ex:- if the word is “Colombo” and count the occurrences of the letter “o” the function would return 3
WHAT IS THE DIFFERENCE BETWEEN C++ AND VC++
what's the difference between abstract class and concreate class? what's the meaning of standard template library(STL)?
Explain References in C++
write a program to search and display the position of an element in a single-dimentional array using function.
Is there any error below, its a code to delete all entires from a map #include <map> #include iostream.h int main() { int i =0; map <int, char> TestMap; while(i<3) { TesMap.insert(TestMap::value_type(i,Test)); i++; } typedef map<int, char> :: iterator mapIter =TestMap.begin(); if(mapIter!=TestMap.end()) { TestMap.erase(mapItrer); ++mapIter; } return 0; }
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 ....
Write a program to print the swapping in two no and using three variable.