Home »
MCQs »
Perl Programming MCQs
What will be the output of the following Perl code (4)?
92. What will be the output of the following Perl code?
%lang = ('Perl' => 4, 'Python' => 2, 'Javascript' => 5);
@arr = values %lang;
print @arr
- PerlPythonJavascript
- 245
- 425
- None of these
Answer: C) 425