answersLogoWhite

0

Under the File tab in applications like Microsoft Office, you typically find commands such as New, Open, Save, Save As, and Print. Additionally, there are options for sharing documents, accessing recent files, and adjusting document properties. The tab may also include settings for account management and application options. These commands facilitate document management and streamline workflow.

User Avatar

AnswerBot

6mo ago

What else can I help you with?

Related Questions

What are some commands in coemu online?

go here: http://www.coemu.net/index.php?site=Commands all commands are listed on the official website of CoEmu ;)


What is a differences between application and file?

an application runs a series of commands. a file is data stored in some retrievable way.


What are four file commands required to read and write a file?

these are not commands, but functions. Some of them are: open, close, read, write; fopen, fclose, fread, fwrite, fgets, fputs, fprintf, fscanf, fgetc, fputc.


What are the features of batch file programming?

Batch file programming is dos based programming you have to use dos commands .It is very good to perform some repetitive task in computer programming is easy you should only know the dos commands.


What are some commands in GW-BASIC?

Some commands are Save, Load, Auto etc.


Where can you find free images?

You can get some from the website listed below. See the page link, further down this page, listed under Sources and Related Links.


What type of companies are listed under the Trimark logo?

The types of companies that are listed under the Trimark logo are sports apparel and uniform companies. Some of the names of the companies that are under the Trimark Sportswear Group are Rivers End Trading Company and LA Loving.


What language are police dogs trained in?

Most service dogs used in the United States know commands in English. Some dogs are trained in Germany or in the United States under the "schutzhund" method, and learn commands in German.


What agency can you go to for information on treatment of cancer?

Your local library should have some literature listed under "Oncology".


What is the difference between the cat and more commands in Unix?

Both the 'more' and the 'cat' commands will list the contents of one or more files. In that case, the main difference between the two commands is that 'more' is a 'pager' program, meaning that it stops at the end of every page and waits for the user. The 'cat' command will list everything in the file without stopping. One other thing that 'cat' does that 'more' does not is to concatenate (add/merge) files together. 'more' is not designed to do that. Lastly, some versions of 'more' can traverse a file forwards and backwards and have simple searching capabilities, which 'cat' does not.


What file names are legal under the windows xp file naming rules?

See this URL for some discussion of Windows file names: http://msdn.microsoft.com/en-us/library/aa365247.aspx


Why do Unix commands perform simple tasks rather than more complex ones?

the unix phylosophy is "do a single job correctly" . due to this the authors / creatorscreated unix commands simpler. to do complex tasks the simpler commands are combined. for example head command is used to displasy the top ten or required number of lines from a file "file" tail commandis used to displasy the lastten or required number of lines from a file "file" but if i require to lines from 3rd line to 10th line i does not have the command to do this i combine head & tail commands head -10 file | tail -7 by rami reddy