Sunday, October 28, 2012

Deloitte Dotnet Interview Questions




Hi friends one of my friend Aryan  shared  below Dotnet interview question which he recently faced at Deloitte, Mumbai for 3 years of experience.


A. Scenario

  • We have one application which is hosted on 4 different server if suppose the one web server is down that time what will going to be happen for the user who is going to do transaction on that particular web server.Answer related to NBL and webfarms.
  • On IIS 7.5 , two web application hosted and both using the same application pool if suppose the one web app down for maintenance can it ll affect the another web application.

B.  General Programming


  1. Difference between HTML Control and Server Control
  2. Can you write down the Stack program in CSharp
  3. Can you write down the binary search algorithm
  4. Suppose int a=10; string b="xyz"; a=b will it compile the answer is no then the nxt q int a=10; string b="150"; a=Convert.toInt32(b); response.write(a); will it compile and if compile then what is output
  5. What is meaning of assembly
  6. how to make the assembly public write the strongly type commands
  7. if suppose i have class called testclass, e.g private class TestClass{} i compiled and make the dll of that particular calss and placed it in GAC folder so it will become public assembly can i used in my any other project but the class is private
  8. Difference between hashtable and arraylist
  9. What are Generics ? 

C.  SQL

  1. What is equijoin
  2. In SSRS, explain the grouping concept
  3. Suppose i have one table called Test1 having 2 rows and 2 coloumn

Test1

ID   Name
1     A
2     B

Test2

ID   Salary
1    10
2    20
3    30 
4    40

Select 
            b.name, a.salary
 From 
         Test2  as a
          right join 
          Test1 as b
   on
          a.id=b.id       
              OP???

4. Write the syntax of trigger?
5. Level of Nested Trigger?

Hi friends if any of you attended interviews recently ,please send your interview experiences  to my mail id  : nsubhash007@gmail.com

 

2 comments :