<?php
$colors = array('Red' => 1, 'Green' => 2, 'Blue' => 3);
asort($colors);
foreach ($colors as $color => $value) {
echo '$color: $value ';
}
?
What is the correct syntax for creating a multidimensional array in PHP?
A). $array = array(array(1, 2, 3), array(4, 5, 6), array(7, 8, 9));
B). $array = array([1, 2, 3], [4, 5, 6], [7, 8, 9]);
C). $array = array{1, 2, 3}, {4, 5, 6}, {7, 8, 9};
D). $array = array{{1, 2, 3}, {4, 5, 6}, {7, 8, 9}};
What will be the output of the following PHP code?<?php
$info = array('name' => 'John', 'age' => 30, 'city' => 'New York');
echo array_key_exists('age', $info) ? 'Yes' : 'No';
?
A). Yes
B). No
C). John
D). 30
What type of index do indexed arrays in PHP use?
A). String
B). Integer
C). Key-value pairs
D). Floating-point number
What will be the output of the following PHP code?<?php
$arr = array(10, 20, 30, 40, 50);
$slice = array_slice($arr, 2);
foreach ($slice as $item) {
echo $item . ' ';
}
?
A). 10 20 30 40 50
B). 10 20
C). 30 40 50
D). 30 40 50
What will be the output of the following PHP code?<?php
$colors = array('Red', 'Green', 'Blue');
array_push($colors, 'Yellow', 'Orange');
foreach ($colors as $color) {
echo $color . ' ';
}
?
A). Red Green Blue Yellow Orange
B). Yellow Orange Red Green Blue
C). Green Blue Red Yellow Orange
D). Yellow Orange
Which PHP function is used to determine the number of elements in an array?
A). size()
B). count()
C). length()
D). elements()
Which PHP function is used to remove the last element from an array?
A). remove()
B). pop()
C). delete()
D). unset()
What will be the output of the following PHP code?<?php
$numbers = array(10, 20, 30, 40, 50);
echo count($numbers);
?
A). 10
B). 20
C). 5
D). 50
What is the output of the following PHP code?<?php
$colors = array('Red', 'Green', 'Blue');
echo $colors[1];
?
A). Red
B). Green
C). Blue
D). 1
Which PHP function is used to sort an array in ascending order, maintaining the key-value pairs?
A). sort()
B). ksort()
C). asort()
D). rsort()