I'll add the following link.
Query plan is selected based on statistics on the table and indexes involved (given the operations that need to be performed). Whether chosen query execution plan is the best depends on lot of factors - but the answer for your question is that MS SQL will produce the same plan regardless (it will consider the best order for all three conditions and will find the same result in the end).
However, it should be noted that planners are not perfect and that they only estimate the cost, so in some cases (providing you know how your query planner's limitations in details) you might be able to rewrite your query conditions to help the planner see a better path.
This (if even possible) should be attempted only for queries that are proven to be crucial and also note that this kind of optimization might slow things down when data statistics change.
Also, in most cases there are better ways (changing indexes) to optimize queries, and this should be left to the query planner.
One of the main points of RDBMS was not to specify how to retrieve data (declarative nature of queries) - and in most cases today's query planners will find a good plan for you.