Which line will add the value stored in the variable pizza to the food() array?

```
var food = new Array("burger", "chips", "subs", "lasagna");
var pizza = "pepperoni pizza";
```

a. food[0] = pizza;
b. pizza.push(food);
c. food.push(pizza);
d. This cannot be done.

c. food.push(pizza);

Computer Science & Information Technology

You might also like to view...

A DSLAM is typically located in which location?

A) CO B) PoP C) Demarc D) DC

Computer Science & Information Technology

SQL Server 2012 stores the majority of configuration values within one of the user databases that was created automatically during installation.

Answer the following statement true (T) or false (F)

Computer Science & Information Technology