Pseudocode and JavaScript (Please make sure your code is working)
Hands-On Activity 8-1: Design a pseudocode program that asks the user for two numbers, and then sends these two numbers as arguments to four arithmetic functions: addition, multiplication, division, and modulus (the remainder after dividing one number by the other). The functions should return the values to the calling module, where they are displayed. (Note: The modulus operator is %.) Use Notepad to create the program, and save the file as "numberFunctions.txt".
Hands-On Activity 8-2: Convert the pseudocode file in Hands-On Activity 8-1 to JavaScript, and test your program. Save the file as "numberFunctions.html".