The program is an illustration of arrays; Arrays are variables that are used to hold multiple values of the same data type
<h3>The main program</h3>
The program written in C++, where comments are used to explain each action is as follows:
#include <iostream>
#include <cstdlib>
#include <ctime>
using namespace std;
int main(){
//This declares the array
int myArray[4][5];
//This seeds the time
srand(time(NULL));
//The following loop generates the array elements
for(int i = 0; i< 4;i++){
for(int j = 0; j< 5;j++){
myArray[i][j] = rand()%(61)-30;
}
}
//The following loop prints the array elements as grid
for(int i = 0; i< 4;i++){
for(int j = 0; j< 5;j++){
cout<<myArray[i][j]<<" ";
}
cout<<"\n";
}
return 0;
}
Read more about arrays at:
brainly.com/question/22364342
Answer:
Tony Blair
Explanation:
(I'm not from England, so I'm sorry if I'm wrong)
Answer:
The correct answer to the following question will be "Location-based services".
Explanation:
Location-based services are resources that are delivered via a cell phone to take into consideration the geographical location of just the user. It usually include entertainment or data.
- This uses the technology of GPS from a smartphone to detect the location or the position of an individual if that individual has expressed a preference-in to enable the service to do just that.
- The app will classify its search down to a physical address during a smartphone user chooses-in, without any need for automatic input of the data.
Therefore, it's the right answer.
Answer:
it means they can not make edits or changes to said folder
Explanation: