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: <br /> 10. private int itemId; <br /> 11. private String name; <br /> 12. private String description; <br /> Which method signature follows the JavaBeans naming standards for modifying the itemld instance variable?() 
A、 itemID(int itemId)
B、 update(int itemId)
C、 setItemId(int itemId)
D、 mutateItemId(int itemId)
E、 updateItemID(int itemId)