Problem:
Question 1: Write an algorithm to find maximum value in Array (ex: 3,2,7,8,2 the max value is 8) and big Oh. (Write a pseudocode)
Question 2: Explain in detail the difference between the two object declarations:
Employee employee 1;
new Employee;
Please describe in detail.