making a selection in the Save in: box.<span>
</span>
Hello <span>Areyano7475
</span>
Question: T<span>he term drive app is used to describe applications stored on a computer true or false
Answer: False
Hope this helps
-Chris</span>
Answer:
my explanation is above my comment :)
Explanation:
Computer hardware is the physical components that a computer system requires to function.
Have a gr8 day ahead ✌️
Answer:
See explaination
Explanation:
#include <iostream>
using namespace std;
int main()
{
double h, w;
int s, a, b;
cout<<"height in feet: ";
cin>>h;
cout<<"width in feet: " ;
cin>>w;
cout<<"tile size in inches:";
cin>>s;
int height = h*12;
if(height%s==0)
a = height/s;
else
a = height/s + 1;
int width = w*12;
if(width%s==0)
b = width/s;
else
b = width/s + 1;
cout<<"Number of tiles: "<<a*b;
}