After the following code is executed what will be displayed on the screen? bool correntEmployee = true; double empSalary = 45000; if (correntEmployee) { if (empSalary < 45000) cout << "The employee needs a pay raise.\n"; else cout << "The employee pay rate is normal.\n"; } else cout << "This person is not an employee.\n";