PHP Arrays
Array values are keyed by ______ values (called indexed arrays) or using ______ values (called associative arrays). Of course, these key methods can be combined as well.

Even number, string
Integer, string
String, Boolean
Float, string
Positive number, negative number

ANSWER DOWNLOAD EXAMIANS APP

PHP Arrays
What will be the output of the following PHP code?
$fruits = array ("mango", "apple", "peach", "pear");
$fruits = asort ($fruits);
printr ($fruits);

Array ( [1] => apple [0] => mango [3] => peach [2] => pear )
Array ( [1] => apple [0] => mango [2] => peach [3] => pear )
Error
Array ( [0] => apple [1] => mango [2] => peach [3] => pear )

ANSWER DOWNLOAD EXAMIANS APP