Write a code snippet that: Creates an ArrayList of Strings …
Write a code snippet that: Creates an ArrayList of Strings named names. Add the following names to the list: “Alice”, “Bob”, “Charlie”. Use an iterator to loop through the list. During iteration, remove any name that starts with the letter “B”. After the iteration, print the content of the modified list.