Answer:
optical
Explanation:
The earliest of these was the magnetic device. Computer systems began with magnetic storage in the form of tapes (yes, just like a cassette or video tape). These graduated to the hard disk drive and then to a floppy disk.
Hi pupil here's your answer ::
➡➡➡➡➡➡➡➡➡➡➡➡➡
Column A Column B
1》CD = Optical Storage Devices
2》Hard Disk = Magnetic Storage Device
3》Flash Memory = Solid State Storage
⬅⬅⬅⬅⬅⬅⬅⬅⬅⬅⬅⬅⬅
Hope this helps. . . . . . .
Answer:
a variable of type "double" is more suitable for finding average because average could be any number with decimal places. we can't use a variable of type "integer" because it will omit the value after the decimal and will not produce satisfactory results.
Explanation:
an example of C++ code is given to find the average of two numbers a and b
#include <iostream>;
using namespace std;
int main() {
double a = 2.334;
double b = 34;
double average = (a + b) / 2;
cout << average;
return 0;
}
Sales reports,employee records,logged passwords somebody has already asked this question