Question: What is the effect of the following program segment? int[ ] anArray = new int[50]; int i, j, temp; string inValue; for (i = 0;

What is the effect of the following program segment?

int[ ] anArray = new int[50];

int i, j, temp;

string inValue;

for (i = 0; i < 50; ++i)

{

Console.Write("Enter Value");

inValue = Console.ReadLine( );

anArray[i] = int.Parse(inValue);

}

temp = 0;

for (i = 1; i < 50; ++i)

if (anArray[i] < anArray[0])

++temp;

a. arranges the elements of array anArray in ascending order

b. counts the number of elements of array anArray less than its initial element

c. reverses the numbers stored in the array

d. puts the largest value in the last array position

e. none of the above

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Systems Analysis Design Questions!