Find the error in the following pseudocode. Module main() Call raiseToPower(2, 1.5) End Module Module raiseToPower(Real value, Integer power) Declare Real result Set result = value^power Display...




Find the error in the following pseudocode.



Module main()



Call raiseToPower(2, 1.5)



End Module



Module raiseToPower(Real value, Integer power)



Declare Real result



Set result = value^power



Display result



End Module



2.    Find the error in the following pseudocode.



Module main()



Call getNames()



   End Module



Module getNames()



Declare Sting name



Display "What is the name of the first student?"



Input name



Declare String name



Display "What is the name of the second student?"



Input name



End Module



Find the potential error in the following pseudocode.



Module main()



   Call setDouble(10.5)



End Module



Module setDouble(Int Ref num)



Set num = num*2



Display num



End Module



Find the error in the following pseudocode.



Module main()



Declare Integer month



Call getMonth()



Display "Your birthday is in month “, month, “.”



End Module



Module getMonth()



Display "Enter the month of your birthday"



Input birthMonth



End Module


Nov 11, 2021
SOLUTION.PDF

Get Answer To This Question

Related Questions & Answers

More Questions »

Submit New Assignment

Copy and Paste Your Assignment Here