[Go to site: main page, start]

0% found this document useful (0 votes)
5 views1 page

Java Array Assignment Guide

The document outlines a Java assignment consisting of three tasks related to array manipulation. Task 1 involves creating, accessing, and modifying an integer array. Task 2 focuses on finding the maximum, minimum, and sum of elements in another integer array, while Task 3 is a bonus task that requires reversing and printing an array of strings.

Uploaded by

partheebanagatan
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
5 views1 page

Java Array Assignment Guide

The document outlines a Java assignment consisting of three tasks related to array manipulation. Task 1 involves creating, accessing, and modifying an integer array. Task 2 focuses on finding the maximum, minimum, and sum of elements in another integer array, while Task 3 is a bonus task that requires reversing and printing an array of strings.

Uploaded by

partheebanagatan
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd

Java Array Assignment

Task 1: Array Initialization and Access

1. Create an array of 5 integers with the values {10, 20, 30, 40, 50}.
2. Print the value of the third element in the array.
3. Modify the value of the second element to 25, and then print the entire array.

Task 2: Array Manipulation (Without Adding)


Write a program that:
1. Initializes an array of 6 integers: {5, 3, 7, 1, 9, 2}.
2. Find and print the maximum value in the array.
3. Find and print the minimum value in the array.
4. Print the sum of all elements in the array.

Task 3: Array Reversal (Bonus)


1. Create an array of 4 strings: {"Java", "Python", "C++", "JavaScript"}.
2. Write code to reverse the array and print the elements in reverse order.

You might also like