answersLogoWhite

0


Best Answer

two arguments can be passed to applet using param tags

NAMES and VALUES

<PARAM NAME ="name" VALUES = "values">

Parameters are passed to applets in NAME=VALUE pairs in <PARAM> tags between the opening and closing APPLET tags. Inside the applet, you read the values passed through the PARAM tags with the getParameter() method of the java.applet.Appletclass.

User Avatar

Wiki User

10y ago
This answer is:
User Avatar
More answers
User Avatar

Wiki User

12y ago

there is no limit of arguments

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: How many arguments can be passed to an applet using PARAM tags Explain all the parameters?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Engineering

What is parameters in C plus plus?

In C++, parameters are variables declared in the function's declaration and definition that receive values passed in from the function call. They are used to pass values or data into a function to be used within the function's code. Parameters allow functions to be more flexible and reusable by accepting different inputs without needing to modify the function's code.


What is meant by arguments in c?

Arguments appear in functions and in function calls. Arguments passed to a function are known as actual arguments. The arguments used by the function are known as the formal arguments. In C, all arguments are passed by value, such that the formal argument is a copy of the actual argument.


What is the difference between actual and formal argument in c plus plus?

Formal parameters are the parameters as they are known in the function definition. Actual parameters (also known as arguments) are what are passed by the caller. For example, in the following code, a and b are the formal parameters, and x and y are the actual parameters:int max(int a, int b) {if (a > b) return a;else return b;}int m = max(x, y);


What is true about the parameters of a function (Python 3)?

a. Functions can have only one parameter. b. The order in which the parameters are defined matters. c. Parameters can be passed to a function in any order. d. Parameters have no order.


What is the simularities of parameter and arguments?

Arguments are fields that are given to a method when it is called, while parameters are the name for the received variables. For example:public static void main(String[] args){int arg1 = 0;boolean arg2 = false;String arg3 = "Some string";function_a(arg1, arg2, arg3);// These variables are called arguments because they are being passed// to the function.}public static void function_a(int par1, boolean par2, String par3){// These variables are called parameters because they are being received// when the function is called.}I hope this helps.

Related questions

What the operator used when invoking a function?

parenthesis - () are used along with the function name to invoke a function.Eg:Consider a function named trial. Then the invoking statement would be:trial();If the function has arguments, then these arguments are passed inside the parameters.


How do you send an array of strings with a signal in Dbus with Glib bindings?

Arrays are passed as arguments to method parameters. To pass a string array from one activity to another the code is [] stringArray = intent.getStringArrayExtra("string-array");.


What are the formal arguments?

Formal arguments are the named arguments defined by the function. Actual arguments are those arguments that were passed to the function by the caller.


What is parameters in C plus plus?

In C++, parameters are variables declared in the function's declaration and definition that receive values passed in from the function call. They are used to pass values or data into a function to be used within the function's code. Parameters allow functions to be more flexible and reusable by accepting different inputs without needing to modify the function's code.


What is meant by arguments in c?

Arguments appear in functions and in function calls. Arguments passed to a function are known as actual arguments. The arguments used by the function are known as the formal arguments. In C, all arguments are passed by value, such that the formal argument is a copy of the actual argument.


What is the difference between actual and formal argument in c plus plus?

Formal parameters are the parameters as they are known in the function definition. Actual parameters (also known as arguments) are what are passed by the caller. For example, in the following code, a and b are the formal parameters, and x and y are the actual parameters:int max(int a, int b) {if (a > b) return a;else return b;}int m = max(x, y);


What is true about the parameters of a function (Python 3)?

a. Functions can have only one parameter. b. The order in which the parameters are defined matters. c. Parameters can be passed to a function in any order. d. Parameters have no order.


What is the simularities of parameter and arguments?

Arguments are fields that are given to a method when it is called, while parameters are the name for the received variables. For example:public static void main(String[] args){int arg1 = 0;boolean arg2 = false;String arg3 = "Some string";function_a(arg1, arg2, arg3);// These variables are called arguments because they are being passed// to the function.}public static void function_a(int par1, boolean par2, String par3){// These variables are called parameters because they are being received// when the function is called.}I hope this helps.


What is the difference between value type parameters and reference type parameters?

When a variable is passed by value, the function receives a copy of the variable. When a variable is passed by reference, the function receives a reference, or pointer, to the original data.


What is the keyword for function(python)?

There are two related concepts, both called "keyword arguments". On the calling side, which is what other commenters have mentioned, you have the ability to specify some function arguments by name. You have to mention them after all of the arguments without names (positional arguments), and there must be default values for any parameters which were not mentioned at all. The other concept is on the function definition side: You can define a function that takes parameters by name -- and you don't even have to specify what those names are. These are pure keyword arguments, and can't be passed positionally. The syntax is def my_function(arg1, arg2, **kwargs) Any keyword arguments you pass into this function will be placed into a dictionary named kwargs. You can examine the keys of this dictionary at run-time, like this: def my_function(**kwargs): print str(kwargs) my_function(a=12, b="abc") {'a': 12, 'b': 'abc'}


What are the purpose of a method parameter?

Method Parameters or Arguments are values that are passed to methods to aid the method in carrying out its intended functionality. Ex: public int add() {} The above method is named "add" because it is supposed to add a few numeric values. But what will this method add? It needs input values that need to be added. Look at the below declaration public int add(int a, int b) {} This looks better because now we know that, this method is supposed to add the two numbers that are passed to it. Here "a" and "b" are the parameters to the method


How do you find out the number of arguments passed to a function in PHP?

With a call to the function func_num_args().