Array Questions
Array Questions
o Find and output the maximum value stored in a one-dimensional array Temperatures of size 12
o Input a name
o Use a linear search to determine if the name exists in the array
o Output "Found" or "Not Found" accordingly
o Sort the array in ascending order using the bubble sort algorithm
7. Modify your bubble sort pseudocode to count the number of passes needed to completely sort the array.
Output the pass count at the end.
8. Write pseudocode to sort an array of 10 integers in descending order using the bubble sort algorithm.