The world’s Largest Sharp Brain Virtual Experts Marketplace Just a click Away
Levels Tought:
Elementary,Middle School,High School,College,University,PHD
| Teaching Since: | Apr 2017 |
| Last Sign in: | 103 Weeks Ago, 3 Days Ago |
| Questions Answered: | 4870 |
| Tutorials Posted: | 4863 |
MBA IT, Mater in Science and Technology
Devry
Jul-1996 - Jul-2000
Professor
Devry University
Mar-2010 - Oct-2016
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: