This certification validates practical skills in system administration and infrastructure, including deployment, administration, troubleshooting, and resilience. It is intended for professionals operating dependable enterprise technology environments.
You want to access the 3rd character of a string, contained in the variable $test. Which of the following possibilites work? (Choose 2)
Premium Content
Create a free account to preview more questions, or enroll for full access.
Get Started FreeWhich sentence describes the following regular expression match? preg_match('/^\d+(?:\.[0-9]+)?$/', $test);
Premium Content
Create a free account to preview more questions, or enroll for full access.
Get Started FreeYou need to escape special characters to use user input inside a regular expression. Which functions would you use? (Choose 2)
Premium Content
Create a free account to preview more questions, or enroll for full access.
Get Started FreeHow many elements does the $matches array contain after the following function call is performed? preg_match('/^(\d{1,2}([a-z]+))(?:\s*)\S+ (?=201[0-9])/', '21s...
Premium Content
Create a free account to preview more questions, or enroll for full access.
Get Started FreeHow many elements does the array $matches from the following code contain? $str = "The cat sat on the roof of their house."; $matches = preg_split("/(the)/i", $...
Premium Content
Create a free account to preview more questions, or enroll for full access.
Get Started Free