<span>C. Documents that convey buyers, sellers, and purchases made</span>
Answer:
The missing part is
if ( !inFile )
Explanation:
The full codes are as follows:
- ifstream inFile;
- inFile.open("myfile.dat");
- if ( !inFile )
- {
- cout << "Cannot open input file." << endl;
- return 1;
- }
- return 0;
Given that inFile is an ifstream object. When inFile is used to open "myfile.data", there will be possibility where myfile.dat is not available. If so, !inFile will be interpolated as true in the if condition and generate the message "Cannot open input file". This is one very simple way to check if the file exist when we try to read it from our program.
Answer: Keyboard hardware & the operating system
Explanation:Keystroke loggers is also referred as the monitoring system which is a for the inspection of the every key pressed on an operating system. This technology monitors the activities of keypad devices such as smart phones etc. It is also used for the surveillance of the unauthorized activities that are done by the hackers or criminals.
Thus the correct option is keyboard hardware and the operating system is the location of the placement of the key loggers.