Given the following pseudocode, what is the internal name used to work with 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

c. stuffBought

Computer Science & Information Technology

You might also like to view...

As public-key cryptography is computationally intensive and drains the battery of Barack's device, he comes up with an alternative approach. First, he shares a secret key k with Hillary but not with Bill. Next, together with a joke x, he sends over the value d = h(k||x), where h is a cryptographic hash function. Does value d provide assurance to Hillary that Barack is the author of x and that x

was not modified by Bill? Justify your answer. What will be an ideal response?

Computer Science & Information Technology

A computer is generating a missing NTLDR error. From the Recovery Console, which of the following commands would BEST resolve this issue?

A. FORMAT B. DISKPART C. FDISK /MBR D. FIXMBR

Computer Science & Information Technology