(Choose 1 answer)
A programmer is designing a class to encapsulate the information about an inventory item. A JavaBeans component is needed to do this. The Inventoryltem class has private instance variables to store the item information:
10. private int itemld;
11. private String name;
12. private String description;
Which method signature follows the JavaBeans naming standards for modifying the itemld instance variable?
A. itemID(int itemld)
B. update(int itemld)
C. setItemId(int itemld)
D. mutateltemId(int itemld)
E. updateltemID(int itemId)
FUO