Answer:Start with the algorithm you are using, and phrase it using words that are easily transcribed into computer instructions.
Indent when you are enclosing instructions within a loop or a conditional clause Avoid words associated with a certain kind of computer language.
Explanation:
Answer:
Ans1.
double calc_a;
calc_a=Math.pow(3.0,2.0)+Math.sqrt(9);
Ans2.
double calc_b;
calc_b=((12.0/3.0)-(2.0*4.0));
Ans 3.
double calc_c;
calc_c=(Math.sqrt(16.0)*(7.0+9.0));
Ans 4.
double calc_d;
calc_d=Math.pow(7.0,2.0)/Math.sqrt(49.0);
Explanation:
The expressions are done with Java in answer above.
they us websites to look thing up that are need
hope this helps
Answer
The senders PC is using UDP protocol
Explanation
UDP is the User Datagram Protocol which is used as an alternative communication protocol to the TCP which is used primarily for establishing low latency and loss of tolerating connections between applications on the internet UDP is normally used by the programs running on different computers on a network. Its purposes is to send short messages which are datagrams. It is not much reliable because of its occasional loss of packet. Due to this packet loss the recipient is not guaranteed that the data being streamed will not get interrupted. This is because If a router on the Internet starts getting overloaded, or a packet gets corrupted due to interference or anything, the packet will be dropped unlike the TCP (Transmission control protocol)which resend the packets and keeps re sending. The UDP does not resend the packets which are dropped. Once they are dropped that all.