The type of the value is called a(n) ______.

A. variable
B. function or procedure
C. argument
D. statement
E. data type

E. data type

Computer Science & Information Technology

You might also like to view...

Given the name of the file you want to open has been stored in the string object filename, which of the following will statements will correctly open the file.

A. inFile.open(filename); B. inFile.open(c_str.filename()); C. inFile.open(‘filename’); D. inFile.open("filename");

Computer Science & Information Technology

How can A send the date to B so that A does not have to do any conversion?

Process A sends to process B a single data item, a date. Process A uses the American date format: // (for example: 01/31/2001. Process B uses the European date format: //(for example:31/01/2001.) Suppose the same date has to be communicated to Process C, which uses a date format of --(for example; 2001-01-31).

Computer Science & Information Technology