nerdexam
Zend

200-550 · Question #178

You want to access the 3rd character of a string, contained in the variable $test. Which of the following possibilites work? (Choose 2)

The correct answer is B. echo $test[2]; D. echo $test{2}. See the full explanation below for the reasoning.

Question

You want to access the 3rd character of a string, contained in the variable $test. Which of the following possibilites work? (Choose 2)

Options

  • Aecho $test(3);
  • Becho $test[2];
  • Cecho $test(2);
  • Decho $test{2};
  • Eecho $test{3};

How the community answered

(49 responses)
  • A
    10% (5)
  • B
    84% (41)
  • C
    4% (2)
  • E
    2% (1)

Community Discussion

No community discussion yet for this question.

Full 200-550 Practice