In the following pseudocode, the value for TRANSCODE is an example of a(n)?

```
Start
Read TRANSCODE
CASENTRY TRANSCODE
CASE “Receipt”
Process B000
CASE “Order”
Process B010
CASE “Withdrawal”
Process B020
CASE “Adjustment”
Process B030
ENDCASE
Write GRADE
Stop

```

a) character string
b) character-string constant
c) alphabetic variable
d) both a and b


a) character string

Computer Science & Information Technology

You might also like to view...

A runnable thread enters the ________ state (sometimes called the dead state) when it successfully completes its task or otherwise terminates (perhaps due to an error).

a. extinct b. defunct c. terminated d. aborted

Computer Science & Information Technology

The CUMPRINC function requires both starting and ending evaluation dates

Indicate whether the statement is true or false

Computer Science & Information Technology

Write the code for a Sub procedure namedCalculateAveragethat receives four decimal variables (the first three by value and the last one by reference). The procedure should use the first three variables to calculate the average and then store the result in the fourth variable.

What will be an ideal response?

Computer Science & Information Technology

When a function simply receives copies of the values of the arguments and must determine where to store these values before it does anything else, this is known as a ____.

A. pass by value B. pass by reference C. stub D. function declarator

Computer Science & Information Technology