Which of the following is a legal function call for the function definition provided below?

```
function square( y )
{
return y * y;
}
```
a.
```
square(7+2);
```
b.
```
square("7");
```
c.
```
square(7,2);
```
d.
```
square 7;
```

a.
```
square(7+2);
```

Computer Science & Information Technology

You might also like to view...

Which of the following is NOT true regarding the planning of a navigation form?

A) Consider spending some time with the user. B) Interview users about the task they will have to complete with the application. C) What makes sense to you should make sense to the user. D) Spend a day watching what users do and take notes to refer back to when you are designing the application.

Computer Science & Information Technology

Which of the following will cause a logical error if you are attempting to compare x to 5?

A. if (x == 5) B. if (x = 5) C. if (x <= 5) D. if (x >= 5)

Computer Science & Information Technology