Which one of the following choices will replace all occurrences of the word perl with the word Perl?
s/Perl/perl/I;
s/"perl"/"Perl"/g;
s/"perl"/"Perl"/;
s/perl/Perl/g;
Submit