Given the following pseudocode, what is the name of the file on disk?

```
Declare String item
Declare Integer numOrdered
Declare InputFile stuffBought
Open stuffBought "inventory.dat"
Display "Your orders:"
While NOT eof(stuffBought)
Read stuffBought item, numOrdered
Display item, ": " , numOrdered
End While
Close stuffBought

```

a. numOrdered
b. item.
c. stuffBought
d. inventory.dat

d. inventory.dat

Computer Science & Information Technology

You might also like to view...

A network collision happens when two devices attempt to communicate on the same physical segment at the same time.

a. true b. false

Computer Science & Information Technology

A(n) ________ is a structured document that includes fields, such as check boxes, that assist the user with entering information

Fill in the blank(s) with correct word

Computer Science & Information Technology