Question: ALGORITHM WORKBENCH - PSEUDOCODE CLASS ONLY Write a pseudocode declaration for a string array initialized with the following strings: Einstein, , Copernicus, and Kepler. Assume

ALGORITHM WORKBENCH- PSEUDOCODE CLASS ONLY
Write a pseudocode declaration for a string array initialized with the following
strings: "Einstein", ,"Copernicus", and "Kepler".
Assume is an Integer array with 20 elements. Design a For loop that
displays each element of the array.
Assume the arrays
and numberArray2 each have 100 elements.
Design an algorithm that copies the values in numberArray1 to numberArray2.
Draw a flowchart showing the general logic for totaling the values in an array.
Draw a flowchart showing the general logic for finding the highest value in an
array.
Draw a flowchart showing the general logic for finding the lowest value in an array.
Assume the following declarations appear in a pseudocode program:
Constant Integer SIZE =100
Declare Integer firstArray[SIZE]
Declare Integer secondArray[SIZE]
Also, assume that values have been stored in each element of firstArray.
Design an algorithm that copies the contents of firstArray to secondArray.
Design an algorithm for a function that accepts an Integer array as an argument
and returns the total of the values in the array.
Write a pseudocode algorithm that uses the For Each loop to display all of the
values in the following array:
Constant Integer SIZE =10
Declare Integer values[SIZE]=1,2,3,4,5,6,7,8,9,10
ALGORITHM WORKBENCH - PSEUDOCODE CLASS ONLY Write

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!