A microcomputer is a small device composed of a central CPU with a microprocessor. Microcomputers are also called personal computers (PCs) and they are ultimately easier to transport.
<h3>What is a microcomputer?</h3>
A microcomputer refers to a personal computer, which is similar to an IBM PC device machine.
The term microcomputer was used in the 1970s, nowadays they are called personal computers, and PCs are being increasingly better both in usage and transportability.
The average personal computer has a weight of 20-30 pounds, in the future, it is believed that there will be no need for a personal computer (all data will be in the cloud).
Learn more about personal computers here:
brainly.com/question/4945544
Answer:
i think its the second one
Explanation:
brainliest pls
Answer:
REM PROGRAM TO CONVERT TEMPERATURE IN CELCIUS TO FARENHEIT
CLS
INPUT “ENTER TEMPERATURE IN CELCIUS”; C
F = C * (9 / 5) + 32
PRINT “TEMPERATURE IN FARENHEIT=”; F
END
Explanation:
Your formula suggests a celcius to fahrenheit conversion...
The size of the array shoeSize? double [] shoeSize = {8.5, 7, 12.5, 9.5, 9, 11.5, 6} is 6
Explanation:
- Arrays are zero-based : the seven elements of a 7-element array are numbered from 0 to 6. Hence, the size of the array is 6.
- An array is collection of items stored at memory locations. The main aim of an array is to store multiple items of same type together.
- An array is a collection of one or more values of the same type. Each value is called an element of the array.
- The location of an item in an array is known as array indexing.
- The first array index is 0 or 1 and indexes continue through the natural numbers.
- The upper bound of an array is generally language and possibly system specific.
- An array type is a data type that represents a collection of elements each selected by one or more identifying keys that can be computed at run time during program execution.