C# (Sharp) Programming Language Question:
Between Windows Authentication and SQL Server Authentication, which one is trusted and which one is untrusted?

Answer:
Windows Authentication is trusted because the username and password are checked with the Active Directory, the SQL Server authentication is untrusted, since SQL Server is the only verifier participating in the transaction.
Previous Question | Next Question |
Explain ACID rule of thumb for transactions in C#. | What does the Initial Catalog parameter define in the connection string? |