Write the code for invoking a static method named sendNumber, provided by the DataTransmitter class. There is one int argument for this method. Invoke this method and use the number 5 as an argument.
LANGUAGE: JAVA
CHALLENGE:
Write the code for invoking a static method named sendNumber, provided by the DataTransmitter class. There is one int argument for this method. Invoke this method and use the number 5 as an argument.
SOLUTION:
DataTransmitter.sendNumber(5);