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;
}
Answer:
there are no mutiple choices
Basic Computer Operations. Input: Information and programs are entered into the computer through Input devices such as the keyboard, disks, or through other computers via network connections or modems connected to the Internet. The input device also retrieves information off disks.
HAARP stands for High Frequency Active Auroral Research Program. Its original purpose was to analyze the ionosphere and investigate the potential for developing ionospheric enhancement technology for radio communications and surveillance. But recently people started going crazy over the fact that it shot electromagnetic waves into the air which is basically what a radio does. Conspiracy theorists target this program and accuse it of weaponizing weather. This program allows us to study how waves flow through our sky's, from this information we can improve our communication technology.