1. What arguments do you frequently use for the Perl interpreter and what do they mean? 2. What does the command ‘use strict’ do and why should you use it? 3. What do the symbols $ @ and % mean when prefixing a variable? 4. What elements of the Perl language could you use to structure your code to allow for maximum re-use and maximum readability? 5. What are the characteristics of a project that is well suited to Perl? 1. Why do you program in Perl? 2. Explain the difference between my and local. 3. Explain the difference between use and require. 4. What’s your favorite module and why? 5. What is a hash? 6. Write a simple (common) regular expression to match an IP address, e-mail address, city-state-zipcode combination. 7. What purpose does each of the following serve: -w, strict, -T ? 8. What is the difference between for & foreach, exec & system? 9. Where do you go for Perl help? 10. Name an instance where you used a CPAN module. 11. How do you open a file for writing? 12. How would you replace a char in string and how do you 13. store the number of replacements? 14. When would you not use Perl for a project?