COMP 122 DEVRY ENTIRE COURSE,COMP 122 DEVRY ENTIRE CLASS,COMP 122 DEVRY TUTORIAL,COMP 122 DEVRY ASSIGNMENT Flashcards Preview

ASH BUS 660 / assignmentclick.com > COMP 122 DEVRY ENTIRE COURSE,COMP 122 DEVRY ENTIRE CLASS,COMP 122 DEVRY TUTORIAL,COMP 122 DEVRY ASSIGNMENT > Flashcards

Flashcards in COMP 122 DEVRY ENTIRE COURSE,COMP 122 DEVRY ENTIRE CLASS,COMP 122 DEVRY TUTORIAL,COMP 122 DEVRY ASSIGNMENT Deck (8)
Loading flashcards...
1
Q

DEVRY COMP 122 Entire Course

Check this A+ tutorial guideline at

http://www.assignmentclick.com/comp-122/comp-122-entire-course

For more classes visit
http://www.assignmentclick.com

COMP 122 Lab 1 Lab Report and Source Code
COMP 122 Lab 2 Lab Report and Source Code
COMP 122 Lab 3 Lab Report and Source Code
COMP 122 Lab 4 Lab Report and Source Code
COMP 122 Lab 5 Lab Report and Source Code
COMP 122 Lab 6 Lab Report and Source Code
COMP 122 Lab 7 Lab Report and Source Code

A

Check this A+ tutorial guideline at

http://www.assignmentclick.com/comp-122/comp-122-entire-course

For more classes visit
http://www.assignmentclick.com

2
Q

DEVRY COMP 122 Lab 1 Lab Report and Source Code

Check this A+ tutorial guideline at

http://www.assignmentclick.com/comp-122/comp-122-lab-1-lab-report-and-source-code

For more classes visit
http://www.assignmentclick.com

COMP 122 Week 1 iLab - Part 1
Follow the instructions in COMP 122_W1_iLab_Part1_instructions.docx.
COMP 122 Week 1 iLab - Part 2
Complete the following two programs:
Programming Problem 1
John wants to know the values of the area and perimeter of a rectangle. John can take measurements of the length and width of the rectangle in inches. John’s measurements are expected to be accurate to within 0.1 inch.
1. Identify the inputs and outputs of the problem.
2. Identify the processing needed to convert the inputs to the outputs.
3. Design an algorithm in pseudo code to solve the problem. Make sure to include steps to get each input and to report each output.
4. Identify two test cases, one using whole number values, and one using decimal number values. For each of the two test cases show what inputs you will use and what your expected outputs should be.
5. Write the program to implement your algorithm. Test your program using your test cases. Did your program produce the values predicted in your test cases? Explain.

A

Check this A+ tutorial guideline at

http://www.assignmentclick.com/comp-122/comp-122-lab-1-lab-report-and-source-code

For more classes visit
http://www.assignmentclick.com

3
Q

DEVRY COMP 122 Lab 2 Lab Report and Source Code

Check this A+ tutorial guideline at

http://www.assignmentclick.com/comp-122/comp-122-lab-2-lab-report-and-source-code

For more classes visit
http://www.assignmentclick.com

COMP 122 Week 2 iLab
Complete the following two programs:
Programming Problem 1
Write a program that calculates and outputs the monthly paycheck information for an employee, including all the amounts deducted from an employee’s gross pay, and the net pay that is due to the employee. The user of your program will know the employee’s name and the gross pay for the employee. Each employee has the following deductions taken from his gross pay:
Federal Income Tax: 15%
State Tax: 3.5%
Social Security + Medicare Tax: 8.5%
Health Insurance $75
The output from your program should be structured as is displayed below:
Bill Robinson
Gross Amount: ………… $3575.00
Federal Tax: …………. $ 536.25
State Tax: …………… $ 125.13
Social Sec / Medicare: … $ 303.88
Health Insurance: …….. $ 75.00
Net Pay: …………….. $2534.75
Your program should deal with erroneous input values. Gross salary should always be a positive number. Make sure that you deal with the possibility that the user may have entered a non-numeric input value. Have your program output appropriate error messages in these cases.
1. Identify the inputs and outputs of the problem.
2. Identify the processing needed to convert the inputs to the outputs.
3. Design an algorithm in pseudo code to solve the problem. Make sure to include steps to get each input and to report each output. Include steps to deal with error cases.
4. Identify three test cases, one using a positive number, and one using a negative number, and one using incorrect input (ie. Input a letter rather than a digit for the numeric input). For each of the three test cases show what inputs you will use and what your expected outputs should be.
5. Write the program to implement your algorithm. Test your program using your test cases.
Programming Problem 2
In a right triangle, the square of the length of one side is equal to the sum of the squares of the lengths of the other two sides. Stephanie has the integer lengths of three sides of a triangle and needs to know if it is a right triangle.
Write a program to solve this problem. NOTE: The user must be allowed to input the values of the sides in ANY ORDER!
1. Identify the inputs and outputs of the problem.
2. Identify the processing needed to convert the inputs to the outputs.
3. Design an algorithm in pseudocode to solve the problem. Make sure to include steps to get each input and to report each output.
4. Identify five significant test cases including one for incorrect input (ie. Input a letter rather than a digit for the numeric input). (Think about what impact changing the order of the input values should have on your program!) For each of the five test cases show what inputs you will use and calculate what your expected outputs should be.

A

Check this A+ tutorial guideline at

http://www.assignmentclick.com/comp-122/comp-122-lab-2-lab-report-and-source-code

For more classes visit
http://www.assignmentclick.com

4
Q

DEVRY COMP 122 Lab 3 Lab Report and Source Code

Check this A+ tutorial guideline at

http://www.assignmentclick.com/comp-122/comp-122-lab-3-lab-report-and-source-code

For more classes visit
http://www.assignmentclick.com

COMP 122 Week 3 iLab
Complete the following two programs:
Programming Problem 1
Write a program that generates all the factors of a number entered by the user. For instance, the number 12 has the factors 2 * 2 * 3. This program has the following requirements:
A. The user must enter a positive integer. If the user enters something else, your program should output an error message and let the user enter a new value. Use a do/while loop to make sure the user input is successful.
B. The factors must be output in increasing order. The lowest factor your program should report is 2.
C. Your program should output 4 factors per line, each factor in a field of 10 characters. (Hint: the number of factors output determines when to output endl!)
D. You will need a while loop to report the factors. Here are some helpful hints:
1. If (a % b == 0) then a is a factor of b.
2. When you have found a factor, output the factor and then reduce the number you are working with by dividing the number by the factor… ie) / a;
1. Design an algorithm in pseudocode to solve the problem. Make sure to include steps to get each input and to report the output. Include steps to deal with error cases as specified above.
2. Identify three test cases, one using a number with 4 factors, one using a negative number, and one using a number with more than 4 factors. For each of the three test cases show what inputs you will use and what your expected outputs should be.
3. Write the program to implement your algorithm. Test your program using your test cases.
Programming Problem 2
This program is designed to analyze the growth of two cities. Each city has a starting population and annual growth rate. The smaller city has the larger growth rate (required). Show the comparative populations of each city year by year until the smaller city has grown larger than the bigger city.
As an example, Dogville has a population of 5000 growing at 20% annually while Cattown has a population of 7000 growing at 10% annually. The projected populations are:
Year DogvilleCattown
1 6000 7700
2 7200 8470
3 8640 9317
4 10368 10249
1. Identify the inputs and outputs of the problem.
2. Identify the processing needed to convert the inputs to the outputs
3. Design an algorithm in pseudocode to solve the problem. Make sure to include steps to get each input and to report each output.
4. Identify three significant test cases including one for incorrect input (ie Small town has lower growth rate). For each of the three test cases show what inputs you will use and calculate what your expected outputs should be.
5. Write the program to implement your algorithm. Test your program using your test cases.

A

Check this A+ tutorial guideline at

http://www.assignmentclick.com/comp-122/comp-122-lab-3-lab-report-and-source-code

For more classes visit
http://www.assignmentclick.com

5
Q

DEVRY COMP 122 Lab 4 Lab Report and Source Code

Check this A+ tutorial guideline at

http://www.assignmentclick.com/comp-122/comp-122-lab-4-lab-report-and-source-code

For more classes visit
http://www.assignmentclick.com

COMP 122 Week 4 Lab Part 1
Part 1 of this week’s lab will give you an opportunity to use the debugging capabilities of Visual Studio. Part 2 will present a problem for which you will need to create a test plan and actually test an executable program to determine if it behaves correctly.
Part 1 – Using the Debugger
To begin this exercise, create a VC++ project and copy the following code into your project. Make sure that the project compiles successfully.
#include
using namespace std;
int main()
{
int input;
int , ;
int ;
cout
cout
cin>> input;
while (input 
{
cout
cin>> input;
}
if (input > 2)
{
for(int ; i 
{
;
;
\+ back2;
}
}
cout
cin.ignore(2);
return 0;
}
Part 2 – Black Box Testing
A customer has requested a program be developed to meet the following criterion:
1. The program needs to convert from celcius temperatures to fahrenheit temperatures.
2. The user should be able to enter temperatures containing fractional degrees (ie. 12.3)
3. The converted temperatures should be accurate to within 1/10th of a degree.
4. The user should be able to enter the number of temperatures to be converted up to a maximum of 10.
5. The output should be tabular with each row including the input and converted temperature.
Write a test plan to thoroughly test this program. The executable for this program is included in with this lab. You should have test cases which verify that the program does all of what is required in the problem specification above. You should also test to see how robust the program is, that is, how does it handle inputs outside the expected ranges.
Document your test plan in a table. For each test case, document the expected program behavior and the actual program behavior. If the program does not behave according to your prediction, write a brief explanation of what the program did wrong.
A

Check this A+ tutorial guideline at

http://www.assignmentclick.com/comp-122/comp-122-lab-4-lab-report-and-source-code

For more classes visit
http://www.assignmentclick.com

6
Q

DEVRYCOMP 122 Lab 5 Lab Report and Source Code

Check this A+ tutorial guideline at

http://www.assignmentclick.com/comp-122/comp-122-lab-5-lab-report-and-source-code

For more classes visit
http://www.assignmentclick.com
COMP 122 Week 5 iLab
Objectives
Apply structured and modular design principles to write programs that meet written specifications and requirements. Develop a pseudo-code design using appropriate program structure (sequence, selection, repetition and nesting) to solve a given programming problem. Use appropriate selection and repetition statements to implement the design. Create user-defined functions to implement a modular design. Use appropriate parameter passing mechanisms for passing data into and getting data back from functions. Use ostream and iomanip formatting manipulators to display tabulated data. Design and implement a menu-driven interface.
A

Check this A+ tutorial guideline at

http://www.assignmentclick.com/comp-122/comp-122-lab-5-lab-report-and-source-code

For more classes visit
http://www.assignmentclick.com

7
Q

DEVRY COMP 122 Lab 6 Lab Report and Source Code

Check this A+ tutorial guideline at

http://www.assignmentclick.com/comp-122/comp-122-lab-6-lab-report-and-source-code

For more classes visit
http://www.assignmentclick.com
COMP 122 Week 6 iLab
You are to design a program that will allow some number of grades (up to a max of 100) to be input by the user. After the data has been collected, your program should calculate and output the mean and median of the collected data, as well as the sorted grade information.
Design Constraints
Use an integer constant of 100 to specify the number of elements in the array you will use to collect the grade information. Do not use any global variables in your program. Declare any arrays you need in your main function and pass the arrays as needed into the functions described below. The main function is the only function permitted to do any output to the console!!! Do not do cout operations inside of any other function.

A

Check this A+ tutorial guideline at

http://www.assignmentclick.com/comp-122/comp-122-lab-6-lab-report-and-source-code

For more classes visit
http://www.assignmentclick.com

8
Q

DEVRY COMP 122 Lab 7 Lab Report and Source Code

Check this A+ tutorial guideline at

http://www.assignmentclick.com/comp-122/comp-122-lab-7-lab-report-and-source-code

For more classes visit
http://www.assignmentclick.com
COMP 122 Week 7 iLab
The focus of this lab is on using strings. You will have an opportunity to work with both C style strings and the string data type. This lab also gives you an opportunity to use what you have learned previously, including using functions, array processing, repetition, and selection. You will also have an opportunity to work with file input and output.

A

Check this A+ tutorial guideline at

http://www.assignmentclick.com/comp-122/comp-122-lab-7-lab-report-and-source-code

For more classes visit
http://www.assignmentclick.com

Decks in ASH BUS 660 / assignmentclick.com Class (21):