InterviewSolution
Saved Bookmarks
| 1. |
Which of the following is not a good practice to create a standard URI for a web service?(a) Maintain Backward Compatibility(b) Use HTTP Verb(c) Using spaces for long resource names(d) Use lowercase letters |
|
Answer» Correct option is (c) Using spaces for long resource names To elaborate: We must use hyphens (-) or underscores (_) instead of spaces to represent long resource names. It may lead to the resource to be less recognizable for the system if we use spaces instead. |
|