Java Nptel Unproctored Exam Questions

Jaindivya
Apr 11, 2021

--

Question-2:

Complete the following program that is intended to find and print the maximum value stored in an array ‘arr[]’.

Note: Integer array ‘arr[]’ is already defined and initialized.

//Write the code here.
int maxValue = arr[0];
for(int i = 1; i < arr.length; i++) {
if(maxValue < arr[i]) {
maxValue = arr[i];
}
}

System.out.print(maxValue);

Sign up to discover human stories that deepen your understanding of the world.

Free

Distraction-free reading. No ads.

Organize your knowledge with lists and highlights.

Tell your story. Find your audience.

Membership

Read member-only stories

Support writers you read most

Earn money for your writing

Listen to audio narrations

Read offline with the Medium app

--

--

No responses yet

Write a response