What is the Difference between file save and file save as command?

1 Answer

Answer :

File Save As will always ask you for the name and location youwant to save the file as.If you already saved the file before,"File Save" will overwrite the previous file. Otherwise, it worksexactly the same as "File Save As".In other words, "File Save As" allows you to make a new copy ofyour file.

Related questions

Description : The Assistant is -. 1) an application that allows you to take notes and save them in a file 2) an animated character that provides help and suggestions 3) a button on the standard Toolbar that executes the Print command 4) a collection of frequently misspelled words in a dictionary file

Last Answer : 2) an animated character that provides help and suggestions

Description : To find and load a file that has been saved - 1) select the Close command 2) select the New command 3) select the Save command 4) select the Open command

Last Answer : 4) select the Open command

Description : For creating a document, you use ..... command at File Menu. 1) Open 2) Close 3) New 4) Save

Last Answer : 3) New

Description : To find and load a file that has been saved on a computer, which of the given options is used ? (1) Select the close command (2) Select the new command (3) Select the save command (4) Select the open command

Last Answer :  Select the open command

Description : What is the keyboard command to display the Save As dialog box without displaying the Save As backstage area?

Last Answer : What is the answer ?

Description : Is there a unix command to reverse the lines in a file?

Last Answer : answer:tac tac (cat spelled backwards) works like cat, but reverse the order of the lines (last line is written out first).

Description : How to add the record number to each record in a file using awk command -Web-Development

Last Answer : answer:

Description : What command would you use to create a backup control file?

Last Answer : Alter database backup control file to trace.

Description : What is the use of FILE option in IMP command ?

Last Answer : The name of the file from which import should be performed.

Description : What use of command line parameter cmd file?

Last Answer : It is a command line argument that allows you to specify a file that contain a set of arguments for r20run.

Description : How do you generate documentation from the C# file commented properly with a command-line compiler? 

Last Answer : Compile it with the /doc switch. 

Description : How do you generate documentation from the C# file commented properly with a command-line compiler?

Last Answer : Compile it with the /doc switch.

Description : In SQL, the command(s) is (are)used tocreate an index for atable or cluster A. CREATE INDEX B. MODIFY INDEX C. SET INDEX TO FILE D. All of theabove E. None of the above

Last Answer : CREATE INDEX

Description : Which file in MS-DOS contains internal commands that are loaded during Booting process? 1) IO.SYS 2) MSDOS.SYS 3) COMMAND.COM 4) CONFIG.SYS

Last Answer : 4) CONFIG.SYS

Description : After booting process which file executes automatically 1) config.sys 2) command.com 3) autoexec.bat 4) io.sys

Last Answer : 3) autoexec.bat

Description : The hdfs command to create the copy of a file from a local system is a) CopyFromLocal b) copyfromlocal c) CopyLocal d) copyFromLocal

Last Answer : copyFromLocal

Description : Which file in MS-DOS contains internal commands that are loaded during Booting process? 1 IO.SYS 2 MSDOS.SYS 3 COMMAND.COM 4 CONFIG.SYS

Last Answer : 4 CONFIG.SYS

Description : After booting process which file executes automatically 1 config.sys 2 command.com 3 autoexec.bat 4 io.sys

Last Answer : 3 autoexec.bat

Description : Which command is used to display a file contents in octal form? A. cd B. od C. of D. oct E. None of the above

Last Answer : B. od

Description : Which command is used to count just the number of characters in a file? A. wc - 1 B. wc -c C. wc -w D. wc -r E. None of the above

Last Answer : B. wc -c

Description : Which command is used to remove a file? A. remove B. rm C. mv D. del E. None of the above

Last Answer : B. rm

Description : The command which transcribes the standard input to the standard output and also makes a copy of the same in a file is A. tee B. tr C. sort D. grep E. None of the above

Last Answer : A. tee

Description : The Octal number to be given alogn with chmod command to make a file readable, writable and executable to the owner, readable and executable to group and others is: A. 000 B. 755 C. 744 D. 555 E. None of the above

Last Answer : B. 755

Description : Which command is used to remove the read permission of the file 'note' from both the group and others? A. chmod go+r note B. chmod go+rw note C. chmod go-x note D. chmod go-r, 4-x note E. None of the above

Last Answer : D. chmod go-r, 4-x note

Description : Which command sends the word count of the file infile to the newfile. A. wc infile >newfile B. wc newfile C. wc infile - newfile D. wc infile | newfile E. None of the above

Last Answer : A. wc infile >newfile

Description : Which command is used to extract specific columns from the file? A. cat B. cut C. grep D. paste E. None of the above

Last Answer : B. cut

Description : Which command is used to display the top of the file? A. cat B. head C. more D. grep E. None of the above

Last Answer : B. head

Description : Which command is used to sort the lines of data in a file in reverse order A. sort B. sh C. st D. sort -r E. None of the above

Last Answer : D. sort -r

Description : What does the following command do? grep −vn abc x (A) It will print all of the lines in the file x that match the search string abc (B) It will print all of the lines in file x that do not ... (D) It will print the specific line numbers of the file x in which there is a match for string abc

Last Answer : (A) It will print all of the lines in the file x that match the search string “abc”

Description : What will be the output of the following Unix command ? $rm chap0\[1 - 3\] (A) Remove file chap0[1 - 3] (B) Remove file chap01, chap02, chap03 (C) Remove file chap\[1 - 3\] (D) None of the above

Last Answer : (A) Remove file chap0[1 - 3]

Description : In Unix, the command to enable execution permission for file “mylife” by all is ................ (A) Chmod ugo+X myfile (B) Chmod a+X myfile (C) Chmod +X myfile (D) All of the above

Last Answer : (D) All of the above

Description : What is the function of following UNIX command? WC - lb& (A) It runs the word count program to count the number of lines in its input, a, writing the result to b, as a foreground process. (B) It runs ... (D) It copies the l ' numbers of lines of program from file, a, and stores in file b.

Last Answer : (B) It runs the word count program to count the number of lines in its input, a, writing the result to b, but does it in the background.

Description : Unix command to change the case of first three lines of file “shortlist” from lower to upper (1) $ tr ‘[a-z]’ ‘[A-Z]’ shortlist | head-3 (2) $ head-3 shortlist | tr ‘[a-z]’ ‘[A-Z]’ (3) $ tr head-3 shortlist ‘[A-Z]’ ‘[a-z]’ (4) $ tr shortlist head-3 ‘[a-z]’ ‘[A-Z]’

Last Answer : (2) $ head-3 shortlist | tr ‘[a-z]’ ‘[A-Z]’ 

Description : Write Unix command for following: i)create a folder OSY ii) create a file FIRST in OSY folder iii) List/display all files and directories. iv) Write command to clear the screen

Last Answer : i) create a folder OSY: $mkdir OSY ii)create a file FIRST in OSY folder: $cd OSY $cat>FIRST or $ touch FIRST iii) List/display all files and directories: $ls iv) to clear screen: $clear

Description : I need to know the way to save a 450mb .txt file into my Kindle with 170mb of free space without deleting other files.

Last Answer : Defrag your disc. (Assuming your Kindle has such a thing, which I know nothing about.) Just a shot in the dark here…

Description : How do I save a GIF file to my computer to download on a Facebook post, complete with animation?

Last Answer : answer:Well, I found a way around it. I shared it directly to Facebook, then went back and edited and added my comments. I still want to save it to my computer for the future.

Description : Do you know of any online file system or repository where I can save all the URLs ?

Last Answer : How about trying the most simple method of bookmarking the websites you come across first? Just one button on the browser and you are done. Or you can even save the webpages. Just click Flie -> Save page as…

Description : What is the most recent Microsoft Word save file format?

Last Answer : Of those options, Microsoft Word 97/2000/XP is the most recent.

Description : When I save a file (overwrite the old one) can I still find the old one?

Last Answer : answer:As an ordinary user, I've done this and my experience is that once you save the file, all the old stuff is gone. Unless you have not closed it and can still Undo some of the changes ... to be. Someone else might have a technical hack but I remember googling this and getting no joy, sorry.

Description : How do you save pictures from email to a file you can use for piknik?

Last Answer : from what i have done you can save a picture anywhere in your documents to use on piknik, you just need to be able to find it once you want to use it. What you do is bring up the email and right click ... in, and then title it so you won't forget what it is called. The you go to piknik your picture

Description : How to shrink video file and save it to HDD ?

Last Answer : answer:I would split the file. This guide should show you how. http://www.linglom.com/2008/10/12/how-to-split-a-large-file-using-7-zip/

Description : How do I save a PDF file so that it opens larger?

Last Answer : It’s a viewing option, not a saving option. The people you send to can adjust the magnification in their own viewers.

Description : If you "Open from location" instead of "Save to Disk", does this mean the file is not really saved on your computer?

Last Answer : C;/Users/[username]/apps/roaming/temp

Description : What new icon to use for Save File?

Last Answer : An SSD or some other kind of flash memory?

Description : How do I retrieving a version of a file from before a 'save'?

Last Answer : I don't think there's much you can do, sorry. In the next version of Mac OS (Leopard), there may be a fix for this, but for now, the only access you have to history is undo/redo and saved ... 't too great. In th future, you can save files with version numbers and so forth, if you become paranoid.

Description : Why wont WMM save my project as a movie file?

Last Answer : answer:This could be a lot of things. What is your source material? Have you tried exporting your movie using different settings or to a different destination drive? Is there much editing and transitioning/effects? Or is it a pretty simple project?

Description : How do I save iTunes album art to the file itself?

Last Answer : To do this you must right click on each individual song or group of songs and choose Get Info'. In the Info panel you can add artwork in the Artwork' pane by clicking Add and then choosing ... file. This takes ages. Try iAlbumArt an application which searches Amazon and adds them to the ID3 tag.

Description : I have chopped a large block of audio into little pieces on garage band. is there a quick way to save each piece as a seperate wav file. If not, is there any other software that would do the job?

Last Answer : why not just use garageband to do it? delete all but one piece, save as, hit undo, delete all but the next piece, rinse, repeat.