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
  1. PerlPythonJavascript
  2. 245
  3. 425
  4. None of these

Answer: C) 425

Comments and Discussions!

Load comments ↻






Copyright © 2024 www.includehelp.com. All rights reserved.