Which of the following MIS reports usually lists just transactions?

A. Detailed
B. Summary
C. Exception
D. General

Answer: A

Computer Science & Information Technology

You might also like to view...

The default ________ spacing in OpenOffice Writer is single-spaced

Fill in the blank(s) with correct word

Computer Science & Information Technology

What is the code that associates the input file stream inf with the file myFile.txt?

a) … ifstream myFile.txt; inf.open (myFile.txt); b) #define aFile myFile.txt … ifstream aFile; inf.open (aFile); c) #define aFile “myFile.txt” … ifstream inf; inf.open (aFile); d) #define aFile “myFile.txt” … ifstream inf; inf.open (myFile.txt);

Computer Science & Information Technology