Identify the steps you would take to carry out each of the following operations on an array data
structure and then implement an algorithm in pseudocode to solve problem as guided by the steps you
have identified.
1. Insert an element into array data structure. Write appropriate message to indicate any condition
that may arise.
1
Expert's answer
2021-09-23T12:13:01-0400
Start
Declare array numbers[100]
Declare variable counter=0
Read the number from the keyboard
numbers[counter]=number
counter=counter+1
Print message: "The number has been added"
Stop
Comments
Leave a comment