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...

When the less than operator (<) is used between two pointer values, the expression is testing whether

a. the value pointed to by the first is less than the value pointed to by the second b. the value pointed to by the first is greater than the value pointed to by the second c. the address of the first variable comes before the address of the second variable in the computer's memory d. the first variable was declared before the second variable e. None of these

Computer Science & Information Technology

After you register your copy of Word you cannot change the default user name

Indicate whether the statement is true or false

Computer Science & Information Technology

A cell style often includes font, font size, font color, cell borders, and cell shading

Indicate whether the statement is true or false

Computer Science & Information Technology

A(n) ____________________ is an alternate name that you can use to refer to a table or field in SQL statements.

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

Computer Science & Information Technology