Data processing is done in cpu of computer
The correct choices are:
having the user guess a number and keep guessing till they get it right
allowing the user to enter their best friends names without saying how many friends they can have
writing a program to average numbers without requiring the user to count the numbers.
The answer should be option A "<span>all be of equal length and line up at both margins." The justified option on Microsoft Word lines up the words at both margins, mainly used for types of writings and helped make the writing more neater or organized.
Hope this helps!</span>
Answer:
#include<ios>// HEADER FILe
#include<iomanip> // HEADER FILE
using namespace std;// namespace
int main() // main function
{
double tem=103.45632; // variable declaration
cout<<" The outside Temperature is:";
cout<<fixed<<setprecision(2)<<tem; // display
return 0;
}
Explanation:
<u>The following are the description of the program</u>.
- set the required header files and namespaces, then declare the main method and inside the main function.
- Set the double data type variable 'tem' and initialize the value '103.45632'.
- Finally, print the following message and print the output through the cout that is predefined function.