Font size
WorksheetsPHP Quiz
Total questions: 10
Worksheet time: 50mins
What will appear in the browser when run? 17, "Anto" => 25, "Budi" => 20); rsort($arr); print_r($arr);
Array ( [Toni] => 17 [Budi] => 20 [Anto] => 25 )
Array ( [0] => 17 [1] => 20 [2] => 25 )
Array ( [Anto] => 25 [Budi] => 20 [Toni] => 17 )
Array ( [0] => 25 [1] => 20 [2] => 17 )
<?php
$a = 0100;
$b = 7;
$c = $a + $b;
echo "Nilai C adalah $c";
What will appear in the browser when run?
Nilai C adalah 107
Nilai C adalah 11
Nilai C adalah 71
Nilai C adalah 7100
What is the acronym of PHP ?
Personal Home Page
PHP: Hypertext Preprocessor
Pretext Hyper Preprocessor
No Answer
Which is the PHP Framework
Laravel
Spring
Codeigniter
Flask
When using the POST method will the data be displayed in the URL ?
True
False
What is correct way to create function in PHP ?
function MyFunction() {}
new MyFunction() {}
MyFunction() {}
create MyFunction() {}
What are the predefined variable in PHP to get data sent via URL ?
$_POST
$_GET
$_SERVER
$GLOBALS
<?php
function test(int ...$a) {
return $a[2] + $a[4];
}
$func = "test";
$result = $func(2,4,6,8,9);
echo "Result = $result";
What will appear in the browser when run?
What will appear in the browser when run?
12
17
15
8
How to make cookie in PHP ?
createCookie()
setCookie()
makeCookie()
cookie()
<?php
$int = -1;
$bool = (boolean)$int;
echo "Boolean value is $bool";
What will appear in the browser when run?
Boolean value is 1
Boolean value is True
Boolean value is 0
Boolean value is False
