Question: 1. Transform the following class into Object Oriented Programming. public class MyArrayList 1 static int arr[]; public static void main(String[] args) f arr = new

1. Transform the following class into Object Oriented Programming. public class MyArrayList 1 static int arr[]; public static void main(String[] args) f arr = new int[0]; add(2); ) public static void add(int e)\{ int arr1[]= new int[arr.length +1]; for(int i=0; ii++){ arr1[i]=arr[i] ) arr1[arr1.length-1] = e; arr =arr1 \} public static int removeFrom(int index)\{ if(isEmpty())\{ System.out.println("ArrayList is Empty!!!"); return 1; \} else \{ int arr1[]= new int[arr.length-1]; for (int i=0;i
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
