Step 1) gawa ka ng menu (logic if else or switch)
Step 2) gawa ka ng List object;
List<String> list = new LinkedList<>();
Step 3) populate default 10
list.add("Pedro");
list.add("Juan");
.........
Step 4) delete
first find name if exist on the list, if true, get the index number....and then delete using index number
list.remove(index)....or list.remove("Pedro")
step 5) insert
again, you can insert using an index number....
list.add(5, "George")....insert at index 5 ang pangalan na "George"
step 6) display
madali lang yan.. gamit ka lang ng FOR loop
step 7) search
gamit ka ng list.contains("Pedro").... results to boolean true or false
....Read Java Collection framework.... o kaya paste mo dito ginawa mo para ma-correct natin.
***********
SeriouslyJava Group - sali kung gusto matuto ng Java
https://phcorner.org/forums/385/
***********