Hello!
My best guess is you would have to use mediocre satellites that float over for internet connection.
Answer:
// program in C++.
// headres
#include <bits/stdc++.h>
using namespace std;
// main function
int main()
{
// array
int temperatures[7];
// count variable
int count=0;
cout<<"Enter the temperature of all days:";
for(int a=0;a<7;a++)
{
// read temperature of 7 days
cin>>temperatures[a];
// find temperature is extreme or not
if(temperatures[a]<-10||temperatures[a]>25)
// count
count++;
}
// print count of extreme temperature
cout<<"number of days of extreme temperature:"<<count<<endl;
return 0;
}
Explanation:
Create an array of size 7 to store the temperature of all days of week.Read the temperature of each day.If the temperature is less than -10 or greater than 25 then increment the count.This will count the number of days of extreme temperature.Print the count.
Output:
Enter the temperature of all days:-20 12 18 30 32 -15 15
number of days of extreme temperature:4
Answer:
The technician needs to adjust the quality of service tool.
Explanation:
Quality of Service (QoS) tool is a feature in routers and switches which prioritizes traffic so that more important traffic can pass first which results in an improved performance for critical network traffic.
So whenever a complaint is made to the technician that a particular user is using much of the browsing speed which is slowing down the browsing speed of others, The technician needs to adjust the Quality of Service tool of the router that allows the router to share the bandwith among users.
Answer
Hi,
The mistake could be the #DIV/0! error , or a #REF! error
Explanation
When changing the data in a cell that’s used in a formula, a #DIV/0! Error can occur when the formula attempts to divide a number by 0 or an empty cell. To rectify this, you will need to change the value of that cell to a value not equal to 0. In some cases, the #REF! error could be displayed. This means that the formula refers to a cell that is not valid.
Hope this Helps!