diff options
| author | mokha <mokha@cisco.com> | 2019-05-08 19:20:31 -0600 |
|---|---|---|
| committer | mokha <mokha@cisco.com> | 2019-05-08 19:20:31 -0600 |
| commit | 45cc3ed51321f3a735ceed7e3394ee3e6ab16af1 (patch) | |
| tree | cee4e78bc52a57e51a448ac237c372397ca38f46 /src/Q10 | |
| parent | 24f849e76ac46ef2a08c3904cecb195e4f7f85af (diff) | |
start program profile for each question
Diffstat (limited to 'src/Q10')
| -rw-r--r-- | src/Q10/README.md | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/src/Q10/README.md b/src/Q10/README.md new file mode 100644 index 0000000..3aeaa08 --- /dev/null +++ b/src/Q10/README.md @@ -0,0 +1,32 @@ +Learning Profile for Assignment #1, And Question #10 + +Name: Mo Khan +Student ID: 3431709 + +1. Problem Statement: +Modify the following program to the specifications given below: + +* Add a new status – + SingleParent – where the tax is computed as a SINGLE but with a further reduction of $5000 per child. +* Add a new tax condition – + if the income is greater than $249,999 for SINGLE, then add a tax of 25% on income amount above $150,000; + if the income is greater than $349,999 for MARRIED, then add a tax of 35% on income amount above $200,000. + +Unknown status – if the status doesn’t belong to SINGLE or MARRIED or SINGLE_PARENT, then compute a 33% tax on the income. + +2. Description of the Code: + +[Briefly describe how you solved the problem in your code. You should include short description of classes, methods, and variables (if necessary) that you used in your code.] + +3. Errors and Warnings: + +[Please enlist your Errors and Warnings (maximum five) that you encountered in your code and how you solved them. An example of this is shown in Table 1.] +Table 1: List of Errors and Warnings Encountered in the Program + + +4. Sample Input and Output: +[Provide some test cases with sample input and output of your program.] + +5. Discussion: + +[In this section, you may include some discussion about the debugging strategy that you used, e.g., searched the Web for a solution, contacted tutor, solved by self, used a debugging tool, posted in forum, talked to a friend, etc.] |
