easy
Single Answer
0Which character signifies the starting point for a series of request query parameters in a URI string?
Answer Options
A
Backslash
B
Forward slash
C
Question mark
D
Ampersand
Correct Answer: C
Explanation
The question mark signifies the starting point for a series of request query parameters in a Uniform Resource Identifier (URI) string. For example, the URI string might look something like this: https://server/path/api?para1=test1¶2=test2. The backslash is not used in a URI. The forward slash helps delimit the various components of a URI. The ampersand delimits the various request query parameters if there is more than one.
uri
url
query-parameters
rest-api