Answer:
Option A.
Explanation:
Incorrect subnet is the most likely problem in this scenario.
Parameter is the answer you wanted
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;
}
A computer output device is used to extract information from a computer. There are visual, audio, print and data output devices. Different types of specific hardware include monitors, speakers and headphones, printers and external hard drives.
JavaScript- Used in designing websites
Python- Used in developing desktop and web applications
C++ Used in Video games, operating systems such as Windows 10, and device drivers.