Question: Given the code below, which of the following statements can be used to return the price associated with pizza? HashMap menu = new HashMap (

Given the code below, which of the following statements can be used to return the price associated with "pizza"?
HashMap menu = new HashMap();
studentGrade.put("soda",2.5);
studentGrade.put("pizza",12.99);
studentGrade.put("salad",9.0);
studentGrade.put("sandwich",0);
Question 13 options:
studentGrade.getValue("pizza");
studentGrade.getValue(1);
studentGrade.get("1");
studentGrade.get(pizza);
studentGrade.get("pizza");
studentGrade.get(1);

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!