Answer:
#include using namespace std;
cout << quotient;
Explanation:
not #include ; using namespace std;
; doesn't belong
cout << quotient
forgot the ; at the end
Answer:
Replace /* Your code goes here */ with
for(i =0; i<NUM_VALS; i++)
{
printf("%d", origList[i]*offsetAmount[i]);
printf(";");
}
Explanation:
The first line is an iteration statement iterates from 0 till the last element in origList and offsetAmount
for(i =0; i<NUM_VALS; i++)
{
This line calculates and print the product of element in origList and its corresponding element in offsetAmount
printf("%d", origList[i]*offsetAmount[i]);
This line prints a semicolon after the product has been calculated and printed
printf(";");
Iteration ends here
}
Answer: A. System window and C. System Information window
Explanation:
Hi, RAM stands for Random Access Memory. RAM stores information about running programs in your computer, as long the computer is on.
To know how much RAM is installed on a system you can use the system window tool.
In windows 10 Right click on "Start Menu" and click on "System" in pop-up menu to open "System" window.
System window will show basic information of the computer, including the amount of RAM installed.
Also you can Type "System Information" in the search box, and select "System Information" from search results.
"System Information" window shows a more detailed system summary, of hardware resources and devices. Incluiding RAM.
Feel free to ask for more if needed or if you did not understand something.
Answer:
The equal sign "=" must be used.
Most, if not all, spreadsheet programs support formulas, but you must start them with an equal sign.