Which one of the following statements opens a file for appending?
open(PASSWD, ">/etc/passwd");
open(PASSWD ">/etc/passwd");
open(PASSWD, ">>/etc/passwd");
open(PASSWD "+>/etc/passwd");
Submit