Description

A-08: BULLETPROOF SUM_FROM_X_TO_Y –

Unexpected input data makes your A-07 script “sum_from_x_to_y.php” produce wrong results.

In this age of computer viruses, trojan horses, spam, and a lot of other kinds of malicious attacks on servers, programs, and websites, it is a critical responsibility of any developer to program defensively. One must anticipate and proactively block ways in which any website or system could be compromised.

While your A-07 script has the basic functionality required in that assignment, it fails to prevent displaying misinformation or calculating some wrong results.

What did you miss? It is not what the spec said. (You got that part). It is what the spec did NOT say that you ignored or did not realize the developer must consider.

Your program likely produces the correct result in a narrow range of values, in particular for integers where the first integer is less than the second integer. If you are lucky in how you chose to set up your loop algorithm, your program might have the correct result when the first integer equals the second.

However, try at least these ordered value pairs (first, second) and look at the result of your program. Do you consider the result you are getting to be correct? You should also try other values of your choosing.
20 6
-5 10
10 -10
15 15
17 17.2
-8 -8
3.71 4.92
-8 9
5e+30 6e+30
-50 3
3 “9”
hello world
9 fifteen
6 20

Assignment A-08 is to take your program from A-07 and make it “bulletproof”. If the user enters something improper for this program, give the user a clear message explaining the specific issue with what the user typed; then let the user correct it and run the corrected values.

A-09 – TRIANGLE EVALUATOR –

Attached Files:

Implement a PHP application (one or more PHP scripts) that satisfies the attached spec for a Triangle Evaluator. Call its first script “triangle_1.php”.

Put you name as a comment near the top of each PHP file.

Put all files for your application in a folder named “triangle” on the nb9507 server. (Remember that Linux file and folder names are case-sensitive, i.e. “abc” and “Abc” are not the same.)

Test your application thoroughly.
Consider: What is the minimum number of test cases (data triplets for the sides) that you will need to test to ensure that all parts of your program are working correctly? What do these test cases need to be?

Leave your application on the server so the Instructor can test it there.