Skip to content

Latest commit

 

History

History
51 lines (44 loc) · 888 Bytes

0069.md

File metadata and controls

51 lines (44 loc) · 888 Bytes

Consider the following PHP script:

$a = [
    '1' => "php",
    "Hypertext",
    "Preprocessor",
    "widely used" => [
        'general' => 'purpose',
        'scripting' => 'language',
        'that' => 'was',
        'originally' => [
            5 => 'designed',
            9 => 'for',
            'Web development',
            4 => 'purpose'
        ]
    ]
];
//write code here  

What should you write here to print the value 'Web development'?

  • A)
print $a['widely used']['originally'][10];
  • B)
print $a[widely used][originally][3];
  • C)
print $a[2][3][3];
  • D)
print $a['widely used']['originally'][0];
Answer

Answer: A