Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

Essentials of Software Engineering 4th Edition: Chapter 2- 2.6 Exercise question

ID: 3755403 • Letter: E

Question

Essentials of Software Engineering 4th Edition: Chapter 2- 2.6 Exercise questions:

5. (a) Write a program that reads 11 numbers, divides the sum of the first 10 numbers by the 11th number, and displays the result. (b) List all the questions you had in the process of programming part (a) of this question. (c) Discuss, in your view, what type of skills are needed to collect and specify the requirements of a system. 6. Discuss the three areas that need to be coordinated in a large software engineering project. Is any one of them more important than the others? Explain your conclusion

Explanation / Answer

5a.
#include<stdio.h>
main()
{

int numbers[10],j,total;

for (j=0;j<11;j++){

scanf("%d",&numbers[j]);
if ( j == 10 ){
total=total/numbers[j];
printf("Calculated Value : %d ",total);
}
else{
total += numbers[j];
}
}

}

5b.
How to read 11 numbers from command line.
which datatype should be use for storing value.
which header file should use.

5c.
Skills required to collect and specify the requirements of a sysytem are to get the business, mission , and opertaional needs from opertional users and other stakeholders. The other slillks are that one must be able to analyze, integrate, and transform these needs into system requirements to facilitate the customer. They must be able to use the requirements elicitation principle to different development methodologies

Hire Me For All Your Tutoring Needs
Integrity-first tutoring: clear explanations, guidance, and feedback.
Drop an Email at
drjack9650@gmail.com
Chat Now And Get Quote