Reference no: EM133844666
Case: For each of the code fragments below, identify the type of software flaw(s) found and suggest a way to fix the issue(s). It is recommended that you identify the problem without using a computer. After identifying the problem, you may use a computer to verify your answer. Place Your Order Now!
Code Fragment #1
for (int x=0; x<5; x++) {
cout <<"Value of x is " << x << endl;
return 0;
}
Code Fragment #2
const int val = 5;
int x=0;
while (x < 5)
cout <<"Value of x is " << x++ << endl;
return 0;
Code Fragment #3
const int x[5] = {1 , 2, 3, 4, 5};
for (int i=1; i<6; i++)
cout <<"Value of x[ "<< i << "] = " << x[i] << endl;
return 0;
Code Fragment #4
#include <iostream>
#include <limits>
using namespace std;
int main()
{
int x;
//find the maximum integer value and avoid an overflow
int imax = std::numeric_limits<int>::max();
cout <<"Enter a value for x: ";
cin >> x;
if (x > imax)
cout << "overflow\n";
else
cout << x;
return 0;
}
Submit a 2- to 3-page paper in APA format that contains the original code fragment, a description of the coding flaw in each, and your proposed solution to fix each flaw.
Your document should be 2-3 pages long (not including the list of references and cover page), but it is the quality of the work that is important, not the number of pages. Cite and reference all sources using APA format and style guidelines and submit in a single document.