Cash-back offer from May 7th to 12th, 2024: Get a flat 10% cash-back credited to your account for a minimum transaction of $50.Post Your Questions Today!

Question DetailsNormal
$ 22.00

CMIS 102 Hands-On Lab Week 6 COMPLETE SOLUTION

Question posted by
Online Tutor Profile
request

1 CMIS 102 Hands-On Lab Week 6 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 and implementation with C code. The example provided uses sequential, repetition statements and nested repetition statements. Program Description This program will calculate the average of 3 exams for 5 students. The program will ask the user to enter 5 student names. For each of the students, the program will ask for 3 exam scores. The average exam score for each student will be calculated and printed. Analysis I will use sequential and repetition programming statements. I will define one String to store the student name: StudentName. I will define three Float numbers: Examvalue, Sum, Avg to store exam values the sum of the exams and the average of the exams. The sum will be calculated by this formula: Sum = Sum + Examvalue For example, if the first value entered was 80.0 and second was 90.0 and the third exam was 100.0: sum = sum + Examvalue = 0.0 + 80.0 sum = 80.0 + 90.0 = 170.0 sum = 170.0 + 100.0 = 270.0 Avg is then calculated as: Avg = sum/3.0 For example 270.0/3.0 = 90.0 A nested repetition loop can be used to loop through each of the 5 students and each of the 3 exams: For (students=0; students int main () { /* variable definition: */ char StudentName[100]; float ExamValue, Sum, Avg; int students,exams; // Loop through 5 Students for (students=0; students <5 ; students++) { // reset Sum to 0 Sum =0.0; printf("Enter Student Name \n"); scanf("%s", StudentName); // Nested Loop for Exams for (exams=0; exams < 3; exams++) { printf ("Enter exam grade: \n"); scanf("%f", &ExamValue); Sum += ExamValue; } Avg = Sum/3.0; printf( "Average for %s is %f\n",StudentName,Avg); } return 0; } 4 Setting up the code and the input parameters in ideone.com: Note the Student and ExamValues for this run were: John: 90.0 80.0 100.0 Jim: 80.0 70.0 90.0 Joe: 70.0 100.0 100.0 Sally: 100.0 95.0 91.0 Sam: 30.0 54.0 68.0 You can change these values to any valid integer values to match your test cases. 5 Results from running the programming at ideone.com Learning Exercises for you to complete 1. Modify the code to be able to input an undetermined number of students. You will still only have 3 exams for each student. Support your experimentation with screen captures 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 code you created after step 1. 3. What is the line of code doing? char StudentName[100]; (Hint: We haven’t covered arrays, but a String can be thought of as an array of characters) ? 6 4. What would happen if you moved the Set Sum = 0.0 from inside the for loop to right after the declaration. For example: // Declare variables Declare StudentName as String Declare ExamValue, Sum, Avg as Float // Initialize Sum Set Sum = 0.0; Support your experimentation with screen captures of executing the new code. Grading guidelines Submission Points Successfully demonstrates execution of this lab with online compiler. Includes a screen capture. 3 Modifies the code to be able to input an undetermined number of students. Support your experimentation with screen captures of executing the new code. 2 Provides a new test table with at least 3 distinct test cases listing input and expected output for the code you created after step 1. 1 Describes what the char array line is doing. 1 Described what would happen if you moved the Set Sum = 0.0 from inside the for loop to right after the declaration. Be sure to provide screen captures to document your analysis and results. 2 Document is well-organized, and contains minimal spelling and grammatical errors. 1 Total 10

Available Answer
$ 22.00

[Solved] CMIS 102 Hands-On Lab Week 6 COMPLETE SOLUTION

  • This Solution has been Purchased 1 time
  • Submitted On 26 May, 2016 10:42:33
Answer posted by
Online Tutor Profile
solution
1 CMIS 102 Hands-On Lab Week 6 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 and implementation with C code. The example provided uses sequential, repetition statements and nested repetition statements. Program Description This program will calculate the average of 3 exams for 5 students. The program will ask the user to enter 5 student names. For each of the students, the program will ask for 3 exam scores. The average exam score for each student will be calculated and printed. Analysis I will use sequential and repetition programming statements. I will define one String to store the student name: StudentName. I will define three Float numbers: Examvalue, Sum, Avg to store exam values the sum of the exams and the average of the exams. The sum will be calculated by this formula: Sum = Sum + Examvalue For example, if the first value entered was 80.0 and second was 90.0 and the third exam was 100.0: sum = sum + Examvalue = 0.0 + 80.0 sum = 80.0 + 90.0 = 170.0 sum = 170.0 + 100.0 = 270.0 Avg is then calculated as: Avg = sum/3.0 For example 270.0/3.0 = 90.0 A nested repetition loop can be used to loop through each of the 5 students and each of the 3 exams: For (students=0; students <5; students++) For (exams=0;exams<3;exams++...
Buy now to view the complete solution
Other Similar Questions
User Profile
Tutor...

University of Maryland CMIS 102 Hands-On Lab Week 8 Lab

CMIS 102 Week 8 Hands-On Lab 1. To successfully carry out this code I assigned the sum of rainfall to a variable called totalRain. This variable is defined as the rainfall of each month of the year in the array. I also decla...
User Profile
vpqnr...

CMIS 102 Hands-On Lab Week 5 complete solutions correct answers key

CMIS 102 Hands-On Lab Week 5 complete solutions correct answers key CMIS 102 Hands-On Lab Week 5 Overview This hands-on lab allows you to follow and experiment with the critical steps of developing a program including the ...
User Profile
vpqnr...

CMIS 102 Hands-On Lab Week 8 complete solutions correct answers key

CMIS 102 Hands-On Lab Week 8 complete solutions correct answers key CMIS 102 Hands-On Lab Week 8 Overview This hands-on lab allows you to follow and experiment with the critical steps of developing a program including the pr...
User Profile
vpqnr...

CMIS 102 Hands-On Lab Week 7 complete solutions correct answers key

CMIS 102 Hands-On Lab Week 7 complete solutions correct answers key CMIS 102 Hands-On Lab Week 7 Overview This hands-on lab allows you to follow and experiment with the critical steps of developing a program including the ...
User Profile
vpqnr...

CMIS 102 Hands-On Lab Week 6 complete solutions correct answers key

CMIS 102 Hands-On Lab Week 6 complete solutions correct answers key CMIS 102 Hands-On Lab Week 6 Overview This hands-on lab allows you to follow and experiment with the critical steps of developing a program including the ...

The benefits of buying study notes from CourseMerits

homeworkhelptime
Assurance Of Timely Delivery
We value your patience, and to ensure you always receive your homework help within the promised time, our dedicated team of tutors begins their work as soon as the request arrives.
tutoring
Best Price In The Market
All the services that are available on our page cost only a nominal amount of money. In fact, the prices are lower than the industry standards. You can always expect value for money from us.
tutorsupport
Uninterrupted 24/7 Support
Our customer support wing remains online 24x7 to provide you seamless assistance. Also, when you post a query or a request here, you can expect an immediate response from our side.
closebutton

$ 629.35