Correct options are:
A) ^(?:[0-9]{1,3}.){3}[0-9]{1,3}
B) ^(?:[0-9]f1,3}.){1,4}
C) ^(?:[0-9]{1,3}.)
D) ^([0-9]-{3})
Test and verify the correct option A at https://regex101.com/
A. ^(?:[0-9]{1,3}\.){3}[0-9]{1,3}
Explanation:
^: Asserts the start of the string.
(?:[0-9]{1,3}\.){3}: This non-capturing group matches three occurrences of digits 1 to 3 in length followed by a dot (.), representing the first three octets.
[0-9]{1,3}: Matches the fourth octet, consisting of digits 1 to 3 in length.
$: Asserts the end of the string.
This regular expression is designed to match the pattern of an IPv4 address and captures the IP address 192.168.20.232.
This section is not available anymore. Please use the main Exam Page.200-201 Exam Questions
Log in to ExamTopics
Sign in:
Community vote distribution
A (35%)
C (25%)
B (20%)
Other
Most Voted
A voting comment increases the vote count for the chosen answer by one.
Upvoting a comment with a selected answer will also increase the vote count towards that answer by one.
So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.
Pwned
Highly Voted 3 years agoanonymous1966
Highly Voted 2 years, 3 months agoRoBery
Most Recent 9 months, 3 weeks agoEng_ahmedyoussef
2 years ago