How will you use save as option inn Vi ?
-
:w
-
:wq new_file
-
:w new_file
-
:q new_file
C
Correct answer
Explanation
The 'save as' operation in vi is done with :w followed by the new filename. The command :w new_file writes the current content to new_file without changing the original filename. The :wq new_file and :q new_file forms are not correct syntax for this operation.