Which one of the following statements adds the Pet structure named parrot to the List object named bird List?

Look at the following code sample:

```
struct Pet
{
public string name;
public int age;
public string type;
}

List birdList = new List();

Pet parrot = new Pet();


```

a. birdList.Add(parrot);
b. Add(birdList.parrot);
c. birdList[parrot];
d. birdList[0] = parrot;

a. birdList.Add(parrot);

Computer Science & Information Technology

You might also like to view...

Here is a function prototype. What would the call statement look like?

void DoMath(int *p1, int *p2) A. DoMath(int &m, int n); B. DoMath(&m, &n); C. DoMath(int &m, int &n); D. DoMath(*m,*n);

Computer Science & Information Technology

According to Nikki and Carl, which of the following describes cloud computing?

A. the integration of disparate networks for voice and data communications B. the elastic leasing of pooled computing resources over the Internet C. an Internet-based service for delivering voice communication D. a dedicated server that delivers Web pages to client computers E. public networks that enable organizations to communicate with servers in remote locations

Computer Science & Information Technology