1) Complete the following code fragment: System.out.print (“Enter time in seconds: “) secondskb.nextInt () /* Write nested if else to convert seconds into hours and minutes as follows: There are 3,600 seconds in an hour. If the number of seconds entered by the user is greater than or equal to 3, 600, the program should display the number of hours, minutes, and leftover seconds in that many seconds There are 60 seconds in a minute. If the number of seconds entered by the user is greater than or equal to 60, the program should display the number of minutes and leftover seconds in that many seconds. */ Write a method named findFactors which takes three parameters of type int: start, finish, and num. Use a while loop to count the numbers in the range start to finish (inclusive) which are divisible by num. The method returns the count using return type of int. Declare any additional variables that you use. The outline of the method is given below:(Hint: Use % operator.) 2) public int findFactors (int start, int finish, int num) int count 0; return count