Answer:
A. A quiet room
Explanation:
Because if you open the windows the will be noise
a huge room will echoe
a room with air conditioning will make noise
#include <stdio.h>
int main(void) {
// your code goes here
//unsigned a =float_times_four(0x80000000);
unsigned float_times_four(unsigned uf){
unsigned expn = (uf >> 23) & 0xFF;
printf(expn);
unsigned sign = uf & 0x80000000;
unsigned frac = uf & 0x007FFFFF;
if(expn == 255 ||(expn == 0 && frac ==0))
return uf;
if(expn){
expn<<2;
}else if(frac == 0x007FFFFF){
//here 0x7FFFFF given by you that is wrong you place this 0x007FFFFF will excute
frac>>2;
expn<<2;
}else{
frac<<=2;
}
return (sign) | (expn <<23) | (frac);
}
return 0;
}
Answer:
Port number is used at the transport layer to identify the receiving application
Explanation:
Transport layer is responsible for overall “end-to-end” communication. It provides communication service to the application process which might be running on “different hosts”.
TCP (Transmission Control Protocol) or UDP (User Data Protocol) is the protocol used in the Transport layer. The port number is essential so that the transport layer can carry packets to the right destination pointing to the right application.
A port number usually contains 16 bit integer. Normally this number will send along with the header. Port number plays a major role in Transport layer.
Answer:
Text watermarking involves adding the photographer's name at the corner of the image.
Explanation:
This was one of the correct answers when I took the test, I got it wrong because I didn't pick all the correct answers. I hope that this was helpful to you! If you know the other correct answer(s) please comment and let me know and i'll edit this answer! :)
Answer:
Microsoft Poweroint
Explanation:
this software helps people to present their projects.