Class 1, Exercise 1 - Prog. for Bioinformatics IIWelcome to Intro. to Prog. for Bioinformatics II Class 1, Exercise 1 1. Find out the version of the Perl interpreter installed on your system. 2. Write your first Perl program called 'Nucleotides' to do the following. Please DO NOT write 3 separate programs. a. Print the 4 nucleotides with 4 spaces in between them, like this: Adenine Thymine Cytosine Guanine b. Now print the 4 nucleotides on 4 separate lines, using 4 print statements. c. Do the same as in (b), using the HERE document methodology.