Answer:
computer is a set consisting of hardware and software that perform specific set of instructions
Explanation:
thy are used in hospitals, institute,hotels
Answer:
Program Start:
Declare Variables: Celsius and Fahrenheit as float
Input Celsius
Fahrenheit = (Celsius * 9/5) + 32
Print Celsius
Print Fahrenheit
End Program
Explanation:
Pseudo codes are false codes and are used to mimic actual programs.
So, the interpretation of the above code is as follows:
This line indicates the start of the program
Program Start:
The variables are declared, here
Declare Variables: Celsius and Fahrenheit as float
This line gets input for degree Celsius
Input Celsius
This line converts degree Celsius to Fahrenheit
Fahrenheit = (Celsius * 9/5) + 32
The next two lines print the degree Celsius and the equivalent degree Fahrenheit
Print Celsius
Print Fahrenheit
This indicates end of program
End Program
Answer: Java Virtual Machine(JVM)
Explanation: In java,there is the process of the management of the memory by own self or automation , this is known as the garbage collection .The program in it compile to be executed by the java virtual machine(JVM).During this process , object get together in a sort of heap and then unnecessary object are detected which are of no use and delete them to make space for the memory . Therefore, garbage collection is carried out by java virtual machine(JVM).