1.

What will be the output of the following php code?
<?php
$Employee = array("Ajit" => array
( "Salary" => "2,40,000", "Designation" => "Software Engineer"),
"Sumi Sharma" => array( "Salary" => "3,00,000",
"Designation" => "Software Developer") );
echo $Employee["Ajit"]["Salary"];
?>

A. Error
B. Ajit 2,40,000
C. Ajit Sumi Sharma
D. 2,40,000
E. None of these
Answer» E. None of these


Discussion

No Comment Found