Answer:
Chrome, Safari, Microsoft Edge
Explanation:
Web browsers such as Chrome, Safari, Microsoft Edge would allow you to visit a website
A. aaa
bbb
ccc
ddd
B. bbb
C. bbb
aaa
D. bbb
#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;
}
A