Following is the step-by-step explanation for the given code:
Given is the array of data type double named myList, it has entries, 1, 5, 5, 5,5, 1:
double[] myList = {1, 5, 5, 5, 5, 1};
Now the first element of the array (1) with index 0 will be stored in the variable max (data type double).
double max = myList[0];
A variable indexOfMax having datatype int will be initiated as 0.
int indexOfMax = 0;
Now for loop will be used to find the maximum number of the array. The variable i will be put as index for each element to compare with first element. If the checked element is greater than or equal to the integer in max, it will be replaced. So at the end the variable max will have value 5 that will be at index i = 4.
for (int i = 1; i < myList.length; i++)
{ if (myList[i] >= max)
{ max = myList[i];
Now the variable i that is the index for max value will be stored in the variable indexOfMax (indexOfMax = 4).
indexOfMax = i; }}
At end the value stored in variable indexOfMax will be printed, so 4 will be printed as output.
True is the correct answer for the above question.
Explanation:
An online survey is done with the help of social sites that connects many people in conversation from all over the world. So to do an effective survey, it is best to choose the online medium.
The administrative professional is a professional, who works to do administrative tasks like managing the organization.
The above question-statement says that the online survey is the best survey, which is the correct statement, which is described above. Hence the answer is true for the above question.