answersLogoWhite

0

The number of parameters is zero or more, so two is perfectly okay.

User Avatar

Wiki User

13y ago

What else can I help you with?

Related Questions

Which two methods of heat transfers are possible with liquids?

Coduction and convection.


Hich two methods of heat transfer are possible with liquids which of the two has greater effect?

radiation


What are two possible ways to meet peoples future water needs?

Two possible methods of obtaining fresh water for the future are desalination and melting icebergs.


Is it possible to take computer engineering without math?

No! Besides, "taking" and "passing" are two different things...


What is the two possible methods that can be used to isolate eugenol?

Two possible methods to isolate eugenol are steam distillation, where eugenol can be extracted from cloves using steam, and solvent extraction, which involves using a solvent like ethanol to extract eugenol from cloves.


Coefficient of discharge is a dimensionless parameter?

It is a dimensionless parameter since its just a ratio between two quantities of same unit.


Which two methods of heat transfer are possible with liquids which of the two has greater effect?

The two methods of heat transfer possible with liquids are conduction and convection. Convection generally has a greater effect on heat transfer in liquids compared to conduction, as it involves the movement of the liquid itself, helping to distribute heat more efficiently.


How would you actually add together 1999 and 51 in Roman numerals using either of the two methods possible?

I would add 1999 and 51 together, getting 2050, and convert that to Roman numerals (MML) and hope that was one of the two possible methods.


What is a parameter passing?

Passing parameters probably means passing a parameter into a function.Basically, this happens when you call a function. You put the parameter into a function, then call it, and the function does something to the parameters you put into it. Here's an example: #include <iostream> using namespace std; int sum(int a, int b); //Declare the function, so the program knows that it exists int main() { int first, second, total; cout<<"Please insert two numbers."<<endl; cin>>first>>second; total=sum(first, second); /*Here we are passing the variables (parameters) "first" and "second" into the function "sum". This function then does something to them and outputs the value. In this case, it is stored in the variable "total"*/ cout<<"Their sum is "<<total<<"."<<endl; return 0; } //Here we define the function (tell the program what to do) int sum(int a, int b) { //We pass two integers into the function. Their values are stored in a and b. a and b can then be used by the function. sum=a+b; return sum;//Adds them, then returns the sum }


Can you get kidney stones two weeks after you just have had them?

Yes, it is possible to have kidney stones two weeks after just passing them. If you just passed kidney stones, it is possible that there are still remaining stones in your kidney that were not passed with the others.


What is the single parameter in the binomial distribution and what sample statistic would be used to estimate it?

The binomial distribution is defined by two parameters so there is not THE SINGLE parameter.


Is it possible to define two methods that have the same name but different parameters?

Yes. It is called Method Overloading in Java