Find the error the following code segment and explain how to correct it. unsigned int x = 1: while (x
Find the error the following code segment and explain how to correct it. unsigned int x = 1: while (x
(42)
(1) Value of variable x is initialized to 1.
(2) Semicolon at the end of while loop doesn’t execute the underlying body and continues to execute the while condition until it is satisfied.
(3) Given while condition (x <= 10) will never be true as statements in while body are skipped from execution.
(4) Control goes into infinite loop.
Correction’s Required:
(1) Remove the semicolon after while statement.
(2) Include value of x in output statement.
Updated Program:
#include <iostream>
int main()
{
unsigned int x = 1;
//Remove semicolon
while(x <= 10)
{
//Add x value to output
std::cout << “Value of x: ” << x << std::endl;
++x;
}
return 0;
}
Sample Run:
__________________________________________________________________________________________
(43)
Adding an appropriate type conversion operator:
#include <iostream>
using namespace std;
class JarType{
double numUnits;
public:
JarType( double n = 0 ) { numUnits = n; }
void Add(double n) { numUnits += n; }
void Quantity() { cout << “The Jar contains ” << numUnits << endl; }
//Type Conversion operator for converting JarType object to double
operator double()
{
//Returning double value
return numUnits;
}
};
void main()
{
JarType myJar(12.35);
double x;
x = myJar;
//Printing x value
cout << endl << “x value : ” << x << endl;
}
Sample Run:
Our Advantages
Plagiarism Free Papers
All papers are written by the best professional writers to ensure 100% originality. We always provide plagiarism reports whenever we deliver completed papers.
Free Revisions
All papers by Grand Paper Writers are completed and submitted on time. This timely delivery of papers gives you time to go through the paper before the official deadline.
Title-page
As an additional service, we will provide a title page that precedes the contents of your paper. Here, you will provide your personal details.
Bibliography
We also ensure that we provide an extra page for the references or bibliographies following referencing rules.
Originality & Security
At Grandpaperwriters.com, we guarantee students for the provision of security and original work. All your personal information is handled with confidentiality and is not shared with third parties. Additionally, we ensure that we provide original content with accompanying plagiarism reports to show originality.
24/7 Customer Support
Our customer support team is always available 24/7 to provide instant responses to any queries raised by students.
Try it now!
How it works?
Follow these simple steps to get your paper done
Place your order
Fill in the order form and provide all details of your assignment.
Proceed with the payment
Choose the payment system that suits you most.
Receive the final file
Once your paper is ready, we will email it to you.
Our Services
Grandpaperwriters.com has the best professional essay writers for quality services.
Pricing
Here, a Grandpaperwriters.com, we do not compromise on the time of our clients. We always deliver all completed papers on or before the deadlines.
Communication
Admission Help & Client-Writer Contact
Grandpaperwriters.com provides an interactive portal where students can communicate directly to their writers.
Deadlines
Paper Submission
Here, a Grandpaperwriters.com, we do not compromise on the time of our clients. We always deliver all completed papers on or before the deadlines.
Reviews
Customer Feedback
Grandpaperwriters.com appreciates feedback from our clients to help us improve the delivery of essay writing services. As such, we are constantly changing our policies to ensure maximum customer and writer satisfaction.