Question: After the first pass through the While loop, what are the contents of the file Merged? Refer to the following pseudocode, which partially merges the
After the first pass through the While loop, what are the contents of the file Merged?
Refer to the following pseudocode, which partially merges the files with internal names FileOne and FileTwo into a third file named Merged. (Each record in FileOne and FileTwo contains a single field of string type.)

Suppose that the contents of FileOne and FileTwo are
FileOne: "Corinne""Marjorie""Shirley""Tamara"
FileTwo: "Arthur""Michael""Sam"
Read FileOne, Namel Read FileTwo, Name2 While (NOT EOF(FileOne)) AND (NOT EOF(FileTwo)) If Namel < Name2 Then Write Merged, Namel Read FileOne, Namel Else Write Merged, Name2 Read FileTwo, Name2 End If End While
Step by Step Solution
3.37 Rating (175 Votes )
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
