Multiple choice technology

How will you use save as option inn Vi ?

  1. :w

  2. :wq new_file

  3. :w new_file

  4. :q new_file

Reveal answer Fill a bubble to check yourself
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.