Most likely B. Photographs.
Hope this helps!
Have a good day!
Answer:
#include <iostream>
#include <cstdlib>
using namespace std;
int main() {
int[] array = new int[10];
int index = 0;
while(index < array.size()){
int number = (rand() % 100) + 1;
for (int i = 0; i < 1; i++) {
array[index] = number;
cout<< "Position "<< index << "of the array = "<< number << endl;
++index;
}
}
}
Explanation:
The while loop in the source code loops over a set of code ten times, The for loop only loops once to add the generated random number between 1 and 100 to the array of size 10. At the end of the for loop, the index location and the item of the array is printed out on the screen. The random number is generated from the 'rand()' function of the C++ standard library.
Answer:
The answer is "Broadband Over Power Line".
Explanation:
The technology that offers and alternative to DSL and high-speed cable is broadband connection which is a term used for high speed internet access using coaxial or fiber optic cables to reach higher speeds than the other technologies. The technology described in the question is "Broadband Over Power Line" which as the name suggests, makes providing broadband internet connection possible using the power lines in the area.
I hope this answer helps.
How do you know your information is valid?