Perl Programming quiz, level Intermediate, question 36
| Question: | What would happen if you ran the following Perl statment:
$phone[7187511770] = "New York Office"; |
| Answer 1: | The program is likely to fail because the computer won't have enough memory. This was the CORRECT answer |
| Answer 2: | A list called @phone would be created, and element 7187511770 would be set to the text "New York Office" |
| Answer 3: | A hash called %phone would be created, and the element called "7187511770" would be set to the text "New York Office" |
| Answer 4: | The statement is invalid; a syntax error would be reported |
This was a question from our quiz ... but we have now provided you with
the answer (above) - we prefer to provide you with information rather than to
puzzle you.
|
|