Services
Discover
Homeschooling
Ask a Question
Log in
Sign up
Filters
Done
Question type:
Essay
Multiple Choice
Short Answer
True False
Matching
Topic
Computing
Study Set
PHP Programming
Quiz 6: Manipulating Arrays
Path 4
Access For Free
Share
All types
Filters
Study Flashcards
Practice Exam
Learn
Question 1
True/False
PHP creates indexed arrays by default with a starting element of 0.
Question 2
True/False
The internal array pointer is a way of keeping track of which element you are working with in an array.
Question 3
True/False
The
array_name
argument in the
array_splice()
function indicates the name of the array you want to eliminate.
Question 4
True/False
The
in_array()
function returns a Boolean value of TRUE if a value exists in an array.
Question 5
True/False
The
array_unique()
function removes elements that are unique to an array.
Question 6
True/False
If you use an iteration function to move the internal array pointer either before the first element or after the last element in an array, the only way to move the array pointer back to a valid element is to use the
unset()
function.