Answer:
An intranet is a private - internal - business network that enables your employees to share information, collaborate, and improve their communications. An extranet enables your business to communicate and collaborate more effectively with selected business partners, suppliers and customers.
Since you wrote a program to compare the portion of drivers who were on the phone. The statements are true are option 2, 3, 4 and 5:
2. You could modify the program to allow the user to enter the data.
3. A different set of observations might result in a larger portion of male drivers being on the phone.
4. Even when confident that the mathematical calculations are correct, you still need to be careful about how you interpret the results.
5. It is important to test your program with a small enough set of data that you can know what the result should be.
<h3>What use does a driver program serve?</h3>
A computer software known as a driver, sometimes known as a device driver, that serves as a bridge between the operating system and a device such a disk drive, or keyboard. The device's collection of specific commands must be thoroughly understood by the driver.
In software, a driver offers a programming interface for managing and controlling particular lower-level interfaces that are frequently connected to a particular kind of hardware or other low-level service.
Therefore, based on the fact that the code you have made is okay, you can make some a notes on what is good and not and then make adjustments.
Learn more about program drivers from
brainly.com/question/28027852
#SPJ1
CGI is the part of the Web server that can communicate with other programs running on the server.
<h3>What is The Common Gateway Interface? </h3>
The Common Gateway Interface (CGI) provides middleware between WWW servers and external databases and information sources. The World Wide Web Consortium (W3C) defined the Common Gateway Interface (CGI) and also defined how a program interacts with an HTTP (Hyper Text Transfer Protocol) server.
The body of the message is sent to the CGI program by the server through the stanard input pipe. Using the value of content_length, which indicates the length of the body, the CGI program can parse the input and obtain the values of the data entered by the user.
See more about CGI at brainly.com/question/12972374
#SPJ1
Answer:
Check the explanation
Explanation:
CODE:
static int findEvenQueue(Queue<Integer> numbers)
{
//loop runs till the queue has atleast one element
while(numbers.size() > 0)
{
//Checking the head of the queue whether it is even
int temp = numbers.peek();
if(temp % 2 == 0)
{
//if the head is even then return it
return temp;
}
else
{
//else remove the number at head
int removed = numbers.poll();
}
}
//if no even number present in the Queue then return -1
return -1;
}