41.1k views
3 votes
Write the code for invoking a method named sendsignal. there are no arguments for this method . assume that sendsignal is defined in the same class that calls it.

User KFunk
by
9.0k points

1 Answer

4 votes
public class Example{

public static int sendSignal() {
// code goes here
}
public static void main(String[] args) {
int sendSignal = send();
}

User Ereli
by
7.1k points