Q1. Write a Java program to dosequential search to find element55 in array10,20,35,45,55,65,75,85.
                                                                                                                                                                 Â
Q2.Write a Java program to find element 54 inarray 45,41,65,53,76,90 using Binary Search. (Hint: Binarysearch is applied to sorted array elements)
Q4.  Writea java program to create array list subject
      -add English,Maths, Science to the list
      -add Computers at index 2
      - displayfirst occurrence index of Maths
      -traverse the list using for eachloop.
             Â
Q5. Write a java program to create anArrayList of user-defined class forobjects(Employee): for id,name,age. The employeedata are as follows for creating class objects.
1101Â Â Â Aamna 25
1111   Amjad  30