Skip to content

Commit

Permalink
fixed array pointer question
Browse files Browse the repository at this point in the history
  • Loading branch information
Mikhail Zhuravlev committed Aug 17, 2016
1 parent eea5c4b commit 35f834f
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions data/questions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -527,13 +527,14 @@ questions:
- {value: '$array_three = array_merge($array_one, $array_two);', correct: false}
- {value: '$array_three = array_reverse($array_one) + $array_two;', correct: false}
-
question: 'Which of the following functions are used with the internal array pointer to accomplish an action?'
question: 'Which of the following functions affects internal array pointer position?'
answers:
- {value: 'key', correct: true}
- {value: 'forward', correct: false}
- {value: 'key', correct: false}
- {value: 'end', correct: true}
- {value: 'prev', correct: true}
- {value: 'current', correct: true}
- {value: 'next', correct: next}
- {value: 'current', correct: false}
- {value: 'next', correct: true}
- {value: 'reset', correct: true}
-
question: |
Given the following array:
Expand Down

0 comments on commit 35f834f

Please sign in to comment.