Question: PLEASE COMPLETE ALL PARTS IN JAVA PLEASE COMPLETE ALL PARTS IN JAVA PLEASE COMPLETE ALL PARTS IN JAVA PLEASE COMPLETE ALL PARTS IN JAVA PLEASE
PLEASE COMPLETE ALL PARTS IN JAVA
PLEASE COMPLETE ALL PARTS IN JAVA
PLEASE COMPLETE ALL PARTS IN JAVA
PLEASE COMPLETE ALL PARTS IN JAVA
PLEASE COMPLETE ALL PARTS IN JAVA
PLEASE COMPLETE ALL PARTS IN JAVA
PART 1

PART 2

PART 3

PLEASE COMPLETE ALL PARTS IN JAVA
PLEASE COMPLETE ALL PARTS IN JAVA
PLEASE COMPLETE ALL PARTS IN JAVA
PLEASE COMPLETE ALL PARTS IN JAVA
PLEASE COMPLETE ALL PARTS IN JAVA
PLEASE COMPLETE ALL PARTS IN JAVA
We have declared a method called addSorted with one ArrayList parameter sortedNums and one int parameter newNum. You can assume sortedNums is non-empty and is already sorted in ascending (i.e., increasing) order. TASK: Fill in the body of the addSorted method such that it will add newNum to sortedNums while maintaining sorted order. Sample Input: 1 3 4 5 Sample Output: 1 2 3 4 5 Write a program, test using stdin stdout Time limit: 8 seconds Memory limit: 256 MB 1 static void addSorted (ArrayList sortedNums, int newNum) { // YOUR CODE HERE 3 } We have declared a method called computePrimes with one int parameter num. TASK: Fill in the body of the computePrimes method such that it will return an ArrayList containing the prime numbers less than or equal to num. You may assume that num is greater than 1. HINT: Recall that a number is considered "prime" if it is only divisible by 1 and itself. HINT: 1 is not a prime number. HINT: You can use Math.sqrt(x) to take the square root of a variable x. No need to import anything: we've done that for you behind-the- scenes. It is possible to solve this problem without using the sqrt method, but it will allow you to test if a number is prime much more efficiently. Sample Input: 10 Sample Output: 2 3 5 7 Write a program, test using stdin stdout Time limit: 8 seconds Memory limit: 256 MB 1 static ArrayList computePrimes(int num) { // YOUR CODE HERE 2 3 } We have declared a method called products with one int parameter n. TASK: Fill in the body of the products method such that it will return an intD) with n rows and n columns (i.e., n-by-n) in which the i-th row of the j-th column contains the product (i+1)*(j+1). EXAMPLE: products(4) [0][0] is 1*1=1, and products(4) [3][3] is 4*4=16. Sample Input: Sample Output: 3 4 10 9. 12 15 12 16 20 10 15 20 25 Write a program, test using stdin stdout Time limit: 8 seconds Memory limit: 256 MB 1 static int[) products(int n) { // YOUR CODE HERE 3 }