The length of the pencil would most likely be measured in centimeters.
Answer: Joystick is the only one that makes sense, a stylus and digitizer are both used on drawing tablets, not computer games.
False, absolute references have two dollar signs
Answer:
#include<iostream>
using namespace std;
int main()
{
int a,b,c;
cout<<"enter the value of a:";
cin>>a;
cout<<"enter the value of b:";
cin>>b;
cout<<"enter the value of c:";
cin>>c;
cout<<"product is:"<<(a*b*c);
return 0;
}
Explanation: