Answer in 200-300 questions:Look at the pseudocode below. What does the program do? Explain the purpose of each of the following statements in the pseudocode: Declare Input Set Write Call. Also identify the global variable(s) and the local variable(s
Answer in 200-300 questions:Look at the pseudocode below. What does the program do? Explain the purpose of each of the following statements in the pseudocode: Declare Input Set Write Call. Also identify the global variable(s) and the local variable(s) and explain how they are used differently.Main ModuleDeclare FirstName As StringDeclare LastName As StringCall Get Names ModuleCall Output Results ModuleEnd ProgramGet Names ModuleWrite Enter the persons first name:Input FirstNameWrite Enter the persons last name:Input LastName Output Results ModuleDeclare FullName As StringSet FullName = FirstName + + LastNameWrite FullName