tr.badhan
Quiz by , created more than 1 year ago

Basic Quiz

26
0
0
tr.badhan
Created by tr.badhan over 8 years ago
Close

PHP Exam One

Question 1 of 2

1

How to display string?

Select one of the following:

  • echo

  • print

  • print_r

Explanation

Question 2 of 2

1

$array1 = array("test", "character", "code");
sort($array1);
print_r($array1);

What will show?

Select one of the following:

  • Nothing

  • Array("0" => "Test")

  • Array("0" => "code")

Explanation