11. Which of the following are automatically opened by Perl? (Choose all that apply.)
12. In the following statement, when is “Could not open students file” displayed?
open (FILEIN, “students”) || warn “Could not open students
file \n” ;
13. When you make a Web page using HTML, what line do you start with to show that what follows
after that line consists of HTML tags?
14. Which of the following is an example of a scalar? (Choose all that apply.)
15. You have written the following line in a Perl program:
$filein = $ARGV[0];
What is the purpose of this line?
16. In Perl, the control sequence \n is used to ________________.
17. You are creating a data file for an inventory system. Which of the following is a common file
extension to show this is a data file?
18. Perl supports using which of the following logic structures? (Choose all that apply.)
19. In Perl, strings are surrounded by which of the following? (Choose all that apply.).
20. You colleague is creating an HTML-based Web page and wants the first line to have the largest
heading size, and so he uses the tag <LARGEHEAD>. This tag isn’t producing the expected
result. What tag should he use instead?
21. When you assign values for an array, what character should precede the name of the array?
22. What arithmetic operators are used in Perl scripts?
23. What is a filehandle in Perl?