Answer:
The computer will store 8.05 *10^10 bytes of information.
Explanation:
This is the same as saying that the computer will now have 80.51 Gigabytes ( 1gb = 1.000.000.000 bytes) of storage. In this case, the number is represented in its decimal form, and the previous one is displayed in Scientific Notation.
Answer:
Recorder
Hope this helped! I'm not 100% if this answer is correct, though
Answer:
// here is code in C++.
#include <bits/stdc++.h>
using namespace std;
// main function
int main()
{
// variables
int x=5,y=2,z=9;
int min;
// find the smallest value and assign to min
// if x is smallest
if(x < y && x < z)
// assign x to min
min=x;
// if y is smallest
else if(y < z)
// assign y to min
min=y;
// if z is smallest
else
// assign z to min
min=z;
// print the smallest
cout<<"smallest value is:"<<min<<endl;
return 0;
}
Explanation:
Declare and initialize variables x=5,y=2 and z=9.Then check if x is less than y and x is less than z, assign value of x to variable "min" .Else if value of y is less than value of z then smallest value is y, assign value of y to "min".Else z will be the smallest value, assign its value to "min".
Output:
smallest value is:2
Answer:
three
Explanation:
Since there are four grades to be represented, any three letter grades can correspond, with a one-to-one mapping, to the elements in the numeric array. Any point that is not represented can be given to the fourth letter grade.
This is also possible because it has been verified that all scores are between 0 and 10. Not more.
Hope this helps!
The best answer is B: you can select the Save button to save it with the same file name if it has been previously saved
This answer depends on whether or not the document has initially been saved. If it has, then clicking the save button every time will save the file with its current name. Clicking the save as button each time will only let you save the file with a new name and an option to save it in a new location.