What are we supposed to find? Help us
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.
Booting would be complete if the normal, runtime environment has been achieved. A boot loader is a program that loads operating system for the computer after the completion of power on tests. The boot manager is a program that displays graphics and loading screens during the boot process.
Answer:
Check the explanation
Explanation:
public String replace(String sentence){
if(sentence.isEmpty()) return sentence;
if(sentence.charAt(0) == ' ')
return '*' + replace(sentence.substring(1,sentence.length()));
else
return sentence.charAt(0) + replace(sentence.substring(1,sentence.length()));
Answer:
do it to me watch this
Explanation:
trailing zeros in a whole number with no decimal shown are NOT significan