Assume the availability of class named Logger that provides a static method , printErrorDescription, that accepts one int argument and returns no value.
LANGUAGE: JAVA
CHALLENGE:
Assume the availability of class named Logger that provides a static method , printErrorDescription, that accepts one int argument and returns no value.
Write a statement that invokes the method printErrorDescription, passing it the value 14.
SOLUTION:
Logger.printErrorDescription(14);