All of the following steps must be taken when a file is used by an application except ______.
a. the file must be opened. If the file does not exist, the file will be created.
b. the file must have a fully qualified path when opening the file.
c. data is either written to the file or read from the file.
d. when the application is finished using the file, the file is closed.
b. the file must have a fully qualified path when opening the file.
You might also like to view...
When Alight Right alignment is applied, the left margin is ________
Fill in the blank(s) with correct word
Describe the purpose of the items after the colon (:) in this code.
In the code for HourlyEmployee that is derived from Employee, the constructor code appears What will be an ideal response? ``` HourlyEmployee:: HourlyEmployee(string theName, string theNumber, double theWageRate, double theHours ) : Employee(theName, theNumber), wageRate(theWageRate), hours(theHours) { // deliberately empty } ```