answersLogoWhite

0

Subroutine mean what (in java)?

User Avatar

Wiki User

12y ago

What else can I help you with?

Related Questions

What is a method in Java?

A Java method is a sequence of statements. It is comparable to a function, subroutine, or procedure in other languages.


What is meaning of java.lang.IllegalArgumentException There is no GcmTaskService component registered within this package. Have you extended GcmTaskService correctly at com.Google.android.gms.common.i?

You have a Java error in one of your Java subroutine calls. It looks as though an external library has not been specified.


What are subroutine linkages?

The Mechanism that makes possible to transfer control between the calling program and Subroutine is reffered to as SUBROUTINE LINKAGE


What are the variables of a subroutine?

In a subroutine, the primary variables are parameters and local variables. Parameters are the inputs passed to the subroutine, allowing it to process specific data. Local variables are declared within the subroutine and are used for temporary storage of data during execution, remaining inaccessible outside the subroutine's scope. Together, these variables facilitate the subroutine's functionality and data manipulation.


Explain delcaring a method in java?

A method is a group of commands that are executed when you invoke, or call, the method. It is often called a "function", a "procedure", a "subroutine" in other languages; but in OOP environments, the name "method" is used instead.


How do you include subroutine VACKRL in synon generated code?

To include a subroutine VACKRL in Synon generated code, you need to first define the subroutine in the Generate All Model. In the action diagram, call the subroutine using the CALL operation passing any required parameters. Finally, regenerate the code for the model to incorporate the changes and ensure the subroutine is included in the generated code.


What is main difference between macro and subroutins?

marco expand where it invoked ,subroutine will go where the subroutine is defined....


What is a single computer function that initiates a string of commands?

A call to a subroutine. A subroutine is a named/labeled set of commands.


What is subroutine?

Subroutine is an instruction sequence in a machine or assembly language program that can be prewritten and referred to as often as needed. Subroutine is used for controlling thing e.g. traffic lights burglar alarms they all use subroutine


Can you assign your scope to subroutione in perl ex like this my sub fun name....definition of function...?

Yes, in Perl, you can assign a scope to a subroutine using the my keyword to declare variables within the subroutine, allowing them to be scoped locally to that subroutine. For example: sub fun { my $local_var = "I'm local"; # This variable is scoped to the subroutine print $local_var; } This keeps $local_var from being accessible outside of fun, ensuring encapsulation within the subroutine.


Difference between interrupt and subroutine in computer?

interrupt is a signal caused by I/O devices where as subroutine is a part of the program which is excuted rapidly


What is subroutine in 8085?

in 8085 microprocessor a subroutine is a separate program written aside from main program ,this program is basically the program which requires to be executed several times in the main program. the microprocessor can call subroutine any time using CALL instruction . after the subroutine is executed the subbroutine hands over the program to main program using RET instruction.