answersLogoWhite

0

In computing, the "exit" command is typically used to terminate a program or a process, while the "close" command is used to shut down a file or a resource that is being used within a program. When you use the "exit" command, you are ending the entire program, whereas the "close" command is specifically used to release a specific file or resource that was previously opened or accessed. Essentially, "exit" is for ending the program, while "close" is for closing individual components within the program.

User Avatar

ProfBot

4mo ago

Still curious? Ask our experts.

Chat with our AI personalities

FranFran
I've made my fair share of mistakes, and if I can help you avoid a few, I'd sure like to try.
Chat with Fran
MaxineMaxine
I respect you enough to keep it real.
Chat with Maxine
RossRoss
Every question is just a happy little opportunity.
Chat with Ross
More answers

close button is to shut the workbook window only w/out terminating the excel program while the exit button is used to terminate the entire excel programing for running.

User Avatar

Wiki User

14y ago
User Avatar

Add your answer:

Earn +20 pts
Q: What is the difference between exit and close commands?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Basic Math

How big does a room have to be to class it as a bedroom?

This might be regulated by your local or state Departments of Health, OR Zoning Department - or other local body. Be advised that in some states it is not the size of the room but how it is equipped (does it have a closet - does it have a window or an exit to the outside - etc), that makes the difference.


What is the difference between the save option and the save as option in MSWord?

When you do a save, the changes are applied to the document you originally opened. When you do a 'save as', you have to choose a name and a location where a copy of the document will be saved; this copy will have changes you are currently making to the document. You can then exit the document without saving, and your original document is unchanged. The copy that you 'save as' is still intact, with changes. You can also do a 'save as' without making any changes, just to have another copy of the document existing with a new name and/or location.


How to beat level 13 on bloxorz?

https://www.youtube.com/watch?v=L6X2brrpiro


How do you beat Parking panic level 11 on cool math?

Oh honey, buckle up! To beat Parking Panic level 11 on Cool Math, you need to strategically move the cars to clear a path for the red car to exit. It's like a puzzle, but with cars instead of puzzle pieces. Just keep shuffling those vehicles around until you find the winning combination. Good luck, you'll need it!


Shell script to find a prime no?

i=2 rem=1 echo -e "Enter a number: \c" read num if [ $num -lt 2 ]; then echo -e "$num is not prime\n" exit 0 fi while [ $i -le `expr $num / 2` -a $rem -ne 0 ]; do rem=`expr $num % $i` i=`expr $i + 1` done if [ $rem -ne 0 ]; then echo -e "$num is prime\n" else echo -e "$num is not prime\n" fi