You have to make sure that the site is safe to post to avoid phishing. There are some options available in social media that can help you customize the settings of your viewers. It can give you more control to choose whether you wanted it to be seen in public, by friends or just yourself.
Answer: Close or disable all unused running apps.
Explanation: when unused apps keep runningon the device, it will make the device to keep lagging, thereby reducing it efficiency. But once those apps are disabled or closed and the system is probably restarted, the device will regain it efficiency back.
The answer is 2. Three. The automatic number of worksheets that appear when you open a blank Excel workbook is three. <span>Excel automatically fills it with three blank worksheets named Sheet1, Sheet2, and Sheet3. Oftentimes, you'll work with the first worksheet (Sheet1), and not realizing that you have two more blank worksheets to work with—not to mention that you could add more.</span>
Answer:
Cultural bias
Explanation:
Certain verifiable studies have been made across the United States of America on traffic stops, which revealed significant cases of cultural/racial bias. Black people were 20 percent more likely to be stopped and searched by the police than white people.
Within a six-year period, starting from 2011, researchers studied over 100 million traffic stops cases which were carried out by twenty-one state patrol agencies.
Answer:
int main()
{
double pH;
int neutral;
int base;
int acid;
cout<<"Enter a pH Value";
cin>> pH;
if(pH<7.0){
neutral =0;
base=0;
acid= 1;
}
else if (pH=7.0){
neutral =1;
base=0;
acid= 0;
}
else{
neutral =0;
base=1;
acid= 0;
}
cout <<"The neutral, Base and Acid Values are: "<<neutral<<","<<base<<","<<acid<<" Respectively"<<endl;
return 0;
}
Explanation:
Using multiple if/elseif/else statement the following problem is solved with C++