Write a recursive method that computes the product of all of the even integers less than or equal to n.

What will be an ideal response?


```
public int productOfEvens(int n)
{
if(n <= 1)
return 0;
if(n == 2)
return 2;
if(n%2 == 0)
return n*productOfEvens(n-2);
else
return productOfEvens(n-1);

}
```

Computer Science & Information Technology

You might also like to view...

Discuss the absence of a syntactic distinction (such as use of a final ‘.’) between absolute and relative names in DNS.

What will be an ideal response?

Computer Science & Information Technology

One method to gain additional information about an organization's mail server is to send an email that will bounce from the site

Indicate whether the statement is true or false.

Computer Science & Information Technology

Wireshark is an example of a(n) _______________, a tool that intercepts and logs network packets.

Fill in the blank(s) with the appropriate word(s).

Computer Science & Information Technology

Why is threat identification so important in the process of risk management?

What will be an ideal response?

Computer Science & Information Technology