All Array programs in java programming language

  1. Write a Java program to sum values of an array
  2. Write a Java program to find the index of an array element
  3. Write a Java program to calculate the average value of array elements
  4. Write a Java program to test if an array contains a specific value
  5. Write a Java program to find the maximum and minimum value of an array
  6. Write a Java program to insert an element (specific position) into an array
  7. Write a Java program to reverse an array of integer values
  8. Write a Java program to find the common elements between two arrays
  9. Write a Java program to find the duplicate values of an array of integer values
  10. Write a Java program to convert an array to ArrayList
  11. Write a Java program to add two matrices of the same size
  12. Write a Java program to find second largest number from the array
  13. Write a Java program to find second lowest number from the array
  14. Write a Java program to find the number of even and odd integers in a given array of integers
  15. Write a Java program to get the difference between the largest and smallest values in an array of integers
  16. Write a Java program to segregate all 0s on left side and all 1s on right side of a given array of 0s and 1s
  17. Write a Java program to cyclically rotate a given array clockwise by one
  18. java program to print all unique element in an array
  19. Write a Java Program to Sort the Array in an Ascending Order
  20. Write a Java Program to Sort the Array in an Descending Order
  21. Write a Java Program to Sort Names in an Alphabetical Order
  22. Write a Java Program to Display Transpose Matrix
  23. Write a Java Program to Search Key Elements in an Array
  24. Write a Java Program to Accept the Marks of a Student and find Total Marks and Percentage

Leave a Comment