Answer: For this type of application, it should be more appropriate a circuit-switched network.
Explanation: As the data are transmitted at a steady rate (x bits per second, for instance), and it's not transmitted in bursts, but during a relatively long period of time, it makes more sense to use a circuit-switched network instead of a packet-switched network, more useful when data shows in bursts (short intervals of data, followed by idle time, that can be filled with other data).
Photosynthesis is illustrated in the cells to the right of the fourth column
Answer:
"@page" is the correct answer for the above question.
Explanation:
- "@page" is a syntax of CSS which will affect that page which is converted from the hard copy from the soft copy. It means it affects the page which will render the output.
- So If the Thelma wants to set the margins on the output page then he can do this by the help of the "@page" tag which is defined in the CSS, and then the margin is set to this tag by the help of margin statement.
Answer:
The Proper codes in Line a and Line b is given below
average=Sum/3
print (" Average is = ", average)
Explanation:
In the given question it calculated the sum but the program does not calculate the average of the 3 numbers.The average of the 3 number is calculated by using average=Sum/3 statement so we add this code in Line a then After that print the value of average by using the print function so we add this code in Line b.