1) Specify, design and implement aclass that can store an array of integer. The
ID: 3610981 • Letter: 1
Question
1) Specify, design and implement aclass that can store an array of integer. The number of Maximumelement can be 100. Write methods to :
a. Add an integer at thebeginning of the array
b. Add an integer at the end ofthe array
c. Remove an integer at thebeginning of the array
d. Remove an integer at the end ofthe array
e. Insert an integer at anylocation except beginning and end
f. Remove an integerat any location except beginning and end
Write the Main program to get integer from the keyboard, get thechoice to where it should be added or deleted from the keyboard.After each operation print the array on the screen.