Answer:use spell check
proofread messages
use appropriate punctuation
be brief
use correct grammar
Explanation:
the following C++ function will return true if the given non - negative number is multiple of 5 or 3 else it will return false.
bool function( int x ){
// variable to check if it is multiple of both or not
int number =0;
if(3%x == 0){
number++;
}
if(5%x == 0){
number++;
}
// Now returning by deciding
if( number <=1)
return true;
else
return false
}
Answer:
Cleo would choose the option "Forward"
Explanation:
Reply means reply to a single person
Reply All means to reply to the entire thread
Forward means to send the email to another
Copy means to copy the email, but it doesn't send
What are the options for this answer?
Answer:Circuit switching and packet switching
Explanation: Circuit switching is the switching technique through the connection from the source port to the destination port.Packet switching is also a switching techniques in connectionless form for the data packets. Both these switching techniques helps in communication between end and start ports.
Other option are incorrect as the access networks provide the access to the network and throughput is the input passing in the network.Thus, the correct option is circuit switching and packet switching
.