Essay CMIS 102 Week 3 Hands On Lab

Essay CMIS 102 Week 3 Hands On Lab

Essay CMIS 102 Week 3 Hands On Lab
Essay CMIS 102 Week 3 Hands On Lab

CMIS 102 Week 3 Hands On Lab

Overview
This hands-on lab allows you to follow and experiment with the critical steps of developing a program including the program description, analysis, test plan, design, pseudocode visualization, and implementation with C code. The example provided uses mathematical operators and variable types. Program

Description
This program will calculate the area of a right triangle. The program will ask the user to enter the base and height and then use these values to calculate and then print the area of the triangle. The design step will include pseudocode.

Analysis
I will use sequential programming statements. I will define two float numbers for the base and height: base, height. Float numbers were selected as opposed to integers to make sure triangles of all dimensions are possible and not just whole numbers.

Float number will store the area: area
The area will be calculated by this formula:
Area = ½ * (base * height)

For example if the base was 4.2 and the height was 5.3 the area would be calculated as:
Area = ½ * (4.2 * 5.3) = ½ * (22.26) = 11.13

Test Plan
To verify this program is working properly the following base and height values could be used for testing:

TEST caseInputExpected output
1Base=10.1 Height = 12.2Area = 61.61
2Base=2.67 Height = 3.23Area = 4.31
3Base=100.0 Height = 400.0Area =20000.0

Pseudocode 

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15// This program will calculate the area of a right triangle.// Declare variablesDeclare base, height, area asFloat// Ask User for InputsWrite “Enter triangle base:”Input baseWrite “Enter triangle height:”Input height// Set value of areaSet area=1/2*(base * height)// Print areaPrint“Area of triangle is “ + area

C Code
The following is the C Code that will compile in execute in the online compilers.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25// C code// This program will calculate the area of a right triangle.// Developer: Faculty CMIS102// Date: Jan 31, XXXX#include<stdio.h>int main (){    /* variable definition: */    float base, height, area;    /* Prompt user for base */    printf("Enter the base of the triangle: \n");    // Input the base    scanf("%f", &base);    /* Prompt user for height */    printf("Enter the height of the triangle: \n");    // Input the base    scanf("%f", &height);    // Calculate the Area    area= 0.5 * (base * height);    // Print the result    printf("Area is : %f\n", area);    return0;}

Learning Exercises to be complete (Setting up the code and the input parameters in ideone.com:)

  1. Change the C code to calculate the perimeter of a triangle. Support your experimentation with a screen capture of executing the new code
  2. Prepare a new test table with at least 3 distinct test cases listing input and expected output for the perimeter of a triangle.
  3. What is this line of code doing? 1 scanf("%f", &height); How would you change this line if you wanted to input an Integer as opposed to a float?
  4. What are the values of f and g after executing the following C? 1 2 3 4 5 6 7 8 9 10 11 12 #include<stdio.h>int main(void) {   int i,j;   float f,g;   i = 5; j = 2;   f = 3.0;   f = f + j / i;   g = (f + j )/i;   printf("value of f,g is %f,%f\n", f,g);   return0;} Describe specifically, and in your own words, why are the values of f and g different? Support your experimentation with a screen capture of executing the code.

Submission
Submit a neatly organized word (or PDF) document that demonstrates you successfully executed this lab on your machine using an online compiler. You should provide a screen capture of the resulting output.

Also, provide the answers, associated screen captures, C Code and descriptions of your successful completion of learning exercises 1, 2, 3 and 4.

The answers to the learning exercises, screen captures, C code and descriptions can be included in the same neatly organized document you prepared as you ran this lab. Note the code can be embedded in the word document. However; be sure all code compiles and runs perfectly before submitting the document.

Submit your document no later than the due date listed in the syllabus or calendar.

Get Fast Writing Help – No Plagiarism Guarantee!

Fastwritingservice.com is one of the best Online assignment writing websites that provide students with quality academic term papers, admission essays, annotated bibliographies, reports, essays, personal statements, research proposals, research papers, projects, presentations, movie and book reviews, application papers, among others.

Top-Rated Essay Writing Service | Flawless papers for All Your classes!

PLACE YOUR ORDER