What is the greenWidget’s inStock at the end of main( )? pub…
What is the greenWidget’s inStock at the end of main( )? public class Widget { private int inStock; public Widget() { inStock = 10; } public void addInventory(int amt) { inStock = inStock + amt; } public static void main(String [] args){ Widget greenWidget = new Widget(); greenWidget.addInventory(15); greenWidget.addInventory(5); }}}
Read Details