There are 20 questions in the final Quiz pool and you can choose 10 or more questions as you experience and progress with programming hands-on. The task is to write a simple payroll program which contains the following 5 programming concepts: input (cin), output (cout), loop (while), decision making (if-else), data file (ifstream).
The requirements for the Programming Quiz is to have a personal experience which elaborate and demonstrate understanding of programming concepts.
For each of 10 or more questions (steps) write a short paragraph of your own experience/ engagement in addition to the snapshots by ctrl +prnt scrn and paste it (ctrl + v) or for Mac users command+shift+4 to screenshot and drag/drop to a word document for submission . Each question is worth 10 points
1) You need a language compiler to write a program for example C++ compiler. What is a language compiler and how would you download it. Answer the question and paste your snapshot(s) as evidence. ( +10 points)
2) How would you activate (start) the compiler and make a new file? Answer the question and paste your snapshot(s) as evidence +10 points
3) Write the simplest possible program (maximum 8 lines of code) which displays only your payrolls company name- which includes your name. Make sure your program is not completely correct. Answer the question and paste your snapshot(s) as evidence +10 points
4) How would you compile your simplest payroll program? Answer the question and paste your snapshot(s) as evidence +10 points.
5) How would you fix the syntax errors and add the necessary steps so that there would not be any syntax errors. At the end of trial and error, your program should include the followings that makes the basic block of any C++ program:
#include
using namespace std;
main(){
cout<< ..<
