Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

Need help with #35 Needs to be written in pseudocode-Similar to what #38 looks l

ID: 3569484 • Letter: N

Question

Need help with #35

Needs to be written in pseudocode-Similar to what #38 looks like. Thank you in advance.

33. If FileOne and FileTwo had been given in reverse alphabetical order, what changes would have to be made to this pseudocode to merge these files into a file that is in reverse alphabetical order? 4. If FileOne and FileTwo had been given in reverse alphabetical order and the pseudocode were changed as in Short Answer 33, what would be the con tents of Merged after the while loop is exited? or Exercises 35-37 assume that a file named "test" has 25 records of the following form: score 1 (Integer), score_2 (Integer), score_3 (Integer) Suppose we want to load the test file records into arrays ScorelScore2, and Scores. 35. Write a statement that declares these three arrays. 36. Write a program segment that loads the "test" file into the arrays. 37. Write a program segment that displays the contents of the arrays of Exercise 36 on 25 lines, each containing three test scores. For Exercise 38, suppose that the file "data" consists of the following records: "Huey", 1,2 "Dewey", 4, 5 "Louie",7,8 38. What is the output of code corresponding to the following pseudocode? Declare Ducks [10] As String Declare Numbers [10, 20] As Integer Open "data" For Input As DataFile For (K = 0; K

Explanation / Answer

int array1[25];
int array2[25];

int array3[25];

OR
int array1[25],array2[25],array3[25]; //declaration