Dot Net Interview Questions - AXA

  1. What is the difference between Delete and Truncate in SQL.
  2. You have an SQL table and you have an XML file having same schema. How to display the data from SQL database and XML file together to the user?
  3. You have an SQL table ‘Employee’ having fields ‘Employee Number’ and ‘Employee Name’ and an XML file having ‘Phone Number’ and ‘Employee City’. How you will show data to a user having ‘Employee Number’, ‘Employee Name’, ‘Phone Number’ and ‘Employee City’ to the user.
  4. What is the difference between Clustered and Non-clustered index?
  5. What you use to have user defined event to fire before any of the application events? Options available are a) Global.asax b) HttpHandler c) HttpModule d) None of these.
  6. Write a query to select table without index. ‘Select * from table with (index=0)’
  7. How you will filter a dataset?
  8. How you will sort a dataset?
  9. What is done to remove dll hell?
  10. Which authentication is preferred for an application in internet?
  11. What are diffgrams?
  12. what is ‘yield’ in C#?
  13. What are nullable type?