C. Set up a slide show. Slide shows allow the most room for explanation and information when it comes to live presentations.
Answer:
C++.
Explanation:
int main() {
int num_days_scores;
cout<<"How many days of scores? ";
cin<<num_days_scores;
cout<<endl;
///////////////////////////////////////////////////////////////////////////
// Get scores for each day and add it to array
int score = 0;
int* score_array = new int[num_days_scores];
for (int i = 0; i < num_days_scores; i++) {
cout<<Enter score for day "<<i+1<<": ";
cin<<score;
score_array[i] = score;
}
////////////////////////////////////////////////////////////////////////////
// Calculate total of scores by traversing array
int final_score = 0;
for (int i = 0; i < num_days_scores; i++) {
final_score += score_array[i];
}
cout<<"The total score of the "<<num_days_scores<<" days is "<<final_score;
////////////////////////////////////////////////////////////////////////////
delete[] score_array;
return 0;
}
127.0.0.1 is the loopback Internet Protocol (IP), the address is used to establish an IP connection to the same computer being used by the end-user.
The some reason that a person will command a ping 127.0.0.1 in a command prompt is because they will check if the NIC and drivers implementation is functional and it used in testing the TCP/IP.