ComputerScienceExpert

(11)

$18/per page/

About ComputerScienceExpert

Levels Tought:
Elementary,Middle School,High School,College,University,PHD

Expertise:
Applied Sciences,Calculus See all
Applied Sciences,Calculus,Chemistry,Computer Science,Environmental science,Information Systems,Science Hide all
Teaching Since: Apr 2017
Last Sign in: 103 Weeks Ago, 3 Days Ago
Questions Answered: 4870
Tutorials Posted: 4863

Education

  • MBA IT, Mater in Science and Technology
    Devry
    Jul-1996 - Jul-2000

Experience

  • Professor
    Devry University
    Mar-2010 - Oct-2016

Category > Programming Posted 09 May 2017 My Price 8.00

1CMIS 102 Hands-On LabWeek 2

Question is attached. Please be sure to provide screen captures of the work being executed. 

 

1CMIS 102 Hands-On LabWeek 2OverviewThis hands-on lab allows you to follow and experiment with the critical steps of developing a programincluding the program description, analysis, test plan, design, and implementation with C code.Program DescriptionThis program will sum two integer numbers to yield a third integer number. Once the calculations aremade the results of all the numbers will be printed to the output screen.AnalysisWe will use sequential programming statements.We will define 3 integer numbers: a, b, c.c will store the sum of a and b.Test PlanTo understand this program the following input numbers could be used for testing:a = 10b = 20c = a + b = 10 + 20 = 30In table format the following results are expected:Run #Input aInput bExpected Output1102030200031243564804-30-90-120Design using Pseudocode// This program will sum two integer numbers to yield a third integer number.// It will also divide two float numbers to yield a third float number.// Declare variablesDeclare a,b,c as Integer// Set values of IntegersSet a=10Set b=20Set c= a + b// Print a, b, cPrint a,b,c

Attachments:

Answers

(11)
Status NEW Posted 09 May 2017 07:05 AM My Price 8.00

-----------

Not Rated(0)