1.

Explain in simple words the context of a subroutine.

Answer»

We can DEFINE the context of a subroutine as the type of return value expected by the subroutine. Programmers can use one SINGLE function which can return different VALUES
Example: 

SUB printWriterName {     PRINT "Hello Gaurav! \n";  }      # calling the subroutine  printWriterName(); 



Discussion

No Comment Found