Exam 1 practice. My code directory: ~jkinne/public_html/cs151-s2014/code/brandon 0. Make a directory under your handin named "exam1practice" 1. the file "syntax1.cpp" from my code directory has a single syntax error in it. Copy it to your exam practice directory and fix the error. 2. Do the same for "syntax2.cpp" . It has four errors. --FOUR ERRORS. 3. copy the file "exam1practice.cpp" from my code directory to your practice directory. As-is, the program adds up all the numbers from 1 to 100 and then prints the total. Change the program so that it prints out the total every time it is a multiple of 10. -Do not change the printing of the total at the end. 4. write a program from scratch. -name it "practice1.cpp" -it should: --Ask the user for two numbers. print out all the numbers from the first to the second, inclusive. -beware of negative numbers. --also remember that the second number may be smaller than the first.