Adding to the accepted answer with some more information I found after researching this problem:
http://www.ietf.org/rfc/rfc2396.txt
The authority component is preceded by a double slash "//" and is terminated by the next slash "/", question-mark "?", or by the end of the URI. Within the authority component, the characters ";", ":", "@", "?", and "/" are reserved
Based on this statement, the question-mark should indicate the end of the authority component, with or without the slash.
http://www.ietf.org/rfc/rfc1738.txt (tags replaced)
The {path} is optional, as is the {searchpart} and its preceding "?". If neither {path} nor {searchpart} is present, the "/" may also be omitted.
However, this statement says that the trailing slash can only be omitted if both the path and searchpart are not preset.
In the real world, I've previously been able to omit a trailing slash before a query value, but recently found a situation were that falls down. If you have a query such as this http://my.domain.com?do=something, and you view an html page in Internet Explorer, the link is fixed by IE. If you then click File, Send, Page by e-mail..., the link is added to the email with an invalid format. The issues vary by the content of the query value but we were able to create invalid URLs.
In summary, it should work, but falls down in edge cases.