Problem
1. In what scenarios are switch statements/expressions LESS EFFECTIVE than if/else statements?
2. What does a wrapper class accomplish?
3. What is the difference between the Arrays & Array.list libraries (line 567 --) import java.util.ArrayList;
4. import java.util.Arrays;
5. What does the "new" keyword accomplish in java (line 74,260 --) Scanner input = new Scanner(System.in);
6. What is polymorphism?