📚 Practice Mode
Java Programming Fundamentals
Learn at your own pace with hints and detailed explanations
1 / 20
Multiple Choice
Which is simplest and correct code snippet needs to be put in the main function to replace the value object of the HashMap for the key “orange”?
- itemMap.remove("orange"); itemMap.put("orange", new Item("Orange") );
- ((Item)itemMap.get(“orange”)).name = “Orange”;
- itemMap.put("orange", new Item("Orange") );
- None of above