IF function has three parts
IF (condition_to_check , return_if_true , return_if_false)
IF function first checks condition. If it is true it returns first result. Otherwise it returns second result.
Condition to check:
B3>D5
After inserting numbers we get:
10>8
This is correct so the first result will be returned.
The given IF function returns "Closed".
Answer:
1. Input array of 100 numbers
mx = 0
for (int i = 0; i < 100; i++)
if (arr[i] > mx)
mx = arr[i]
Output mx
2. Input array of 100 numbers
mx = 0
for (int i = 0; i < 100; i++)
if (arr[i] > mx)
mx = arr[i]
mx = mx * 0.9
3. Input three numbers
if(firstNumber > secondNumber) {
swap(firstNumber, secondNumber)
}
if (firstNumber > thirdNumber) {
swap(firstNumber, thirdNumber)
}
if (secondNumber > thirdNumber) {
swap(secondNumber, thirdNumber)
}
output firstNumber, secondNumber, thirdNumber
Explanation:
Answer:
Broadcast message
Explanation:
The network models like OSI and TCP/IP suites have standard layers and protocols that governs the communication of end devices in a network.
The TCP/IP suite model has four layers which are application, transport, internet and network access layers. The network access does the work of both the data-link and physical layer of the OSI model.
When the packet is encapsulated in a data-link header and trailer, and needs to be sent to another unknown host, a broadcast message is sent to all the computers in the network to retrieve the remote host address for a unicast transmission to take place.
Answer:
I would say that if she is connected to the server and has grained access to the server, Wendy would have to use the command shortkey win+r (to run) or she could just use the "Type here to search" function.
Then you can type the words "cmd" to bring up the command prompt
Lastly, she would need to use the protocol scp to transfer files. Wendy might need to include a destination for the files to be directed to.