Write a class definition of a class named 'Value' with the following: - a constructor accepting a single integer parameter - a constructor with no parameters - a method 'setVal' that accepts a single parameter, -
a boolean method, 'wasModified' that returns true if setVal was ever called for the object. used to create the object, getVal returns the value passed to that constructor. Otherwise getVal returns 0 .

Answer :

Other Questions