Assume that dataTransmitter is a variable that refers to an object that provides a method, named sendTwo. There are two arguments for this method : a double and an int. Invoke the method with the double value of 15.955 and the int valueof 133.
LANGUAGE: JAVA
CHALLENGE:
Assume that dataTransmitter is a variable that refers to an object that provides a method, named sendTwo. There are two arguments for this method : a double and an int. Invoke the method with the double value of 15.955 and the int valueof 133.
SOLUTION:
dataTransmitter.sendTwo(15.955, 133);