SlideShare une entreprise Scribd logo
1  sur  5
Accenture Dotnet Interview Questions




1.Tell about your Current project? How the security is implemented , which architecture does
you used ?
2. What are the various technologies you used in current and in previous projects

I said: VS2005,VS2008, Sql server 2000,2005,java script ,Ajax, j queries, WCF.

3. What is the difference between abstract class and interface? Where we use abstract class and
interface?

4. I want a method which it should return a string variable, Boolean variable and integer
variables, how do you implement that method?

Eg: I'm passing date time to method that method should return date , hrs,minutes and it should
check date should not less than today's date and return as boolean.
I said yes we can implement such a methods, by using key word “out “.

 public string getdatetime(string frmDatetime, string out date,int out hrs,int out
mints,Boolean Isvalid)

5. Can we use “out” for the methods of type void? Does it give any compilation or run time
error?

I said: yes we can use for methods of type void also. I does not give any type of errors.

6. What are sealed classes and static classes?

7. What is boxing and unboxing?

8. Why do I'm get an error while try to declare the method?

public static staticMethod (mainStatic obj)

I said: yes it will give compilation error without specifying return type.
         public static void staticMethod (mainStatic obj)

9.Let's consider a scenario, I have a Text box when user enter a number in text box, I need to
display the employee's details based on empid; if user enters a string value I need to display
based on emp name.

10. Does C# supports the properties for array types?
I said : yes ,it supports
for eg:
class Class1
{
   private string[] MyAssesrts;

    public string[] SubhashProperties
    {
      get { return MyAssesrts; }
      set { MyAssesrts = value; }
    }
}



class MainClass
{
   public static int Main(string[] args)
   {
     Class1 c = new Class1();

        string[] arr = new string[] {"car", "villa",”land”};
        c. SubhashProperties = arr;
        Console.WriteLine(c.SubhashProperties [0]);

        return 0;
    }
}

12. You worked on jquries right? What are the various features it overcomes from JavaScript and
Ajax?

13. How to find the text box of id txtname in jquery?

14. What is SOA? Difference between web services and WCF?

15. How do you deploy the web services and WCF in production server?

16. What are the page life cycle events?

17. In Page load () Does it possible to identify , by which control or event causes post back
I said: up to my knowledge No, we cannot identify, in page load all the controls and events will
be loaded.
I'm not sure whether it is a right answer or not?

17. What are http handlers? Where we use?

18. I need to insert the data of uploaded excel file to sqlserver, In how many ways we insert?
I said:
First we need to open the oledb connection, query the excel sheet and get excel data to data table
or dataset.

 A. we can loop each row form a insert query a string and Executenonquery ().
B.loop each row collect the data in array lists after looping the all records we can pass the array
values to stored procedure.
C. We can use sql bulk upload utility class, where we insert all the data at a time from data table
to backend DB.

19. So, among these which one is the best you feel?

I Said: obviously, third one gives the better performance.

20. How do you validate the data before inserting the data through sql bulk upload?

21. I’m uploading a large amount of data, my excel sheet contains @ 60000 to one lakh records,

22. What happens if I got any connection time out error or some other error occurs, how do you
handles this error.
I said: I faced this situation in my project, first of all we should not allow to the uploading large
amount of data we should consider the file size before user uploading, better to allow uploading
the small chunks of data , we should also consider production server configuration,

Sqlserver:
21. How do you handle errors in stored procedures?

I Said: In sql server 2005 and 2008 have a better error handling capable when compare to
sqlserver2000, we can use try catch blocks in stored procedures.
And also we can use @@Error which is a global variable;
I explained about error_message (), error_seveority, error_description ().error_id()

22. Why we need to specify NoLock? Do we use Nolock while performing the DML operations,
what happened if use?
I said: Nolock should specify after the table name while performing the select statement, by
default while executing the select statement sqlserver lock the table, for eg my query takes 6 sec
to execute these 6 sec sq server will not allow to perform the any other DML Operations on that
table


i don't know whether this is a right or not....

Project Manager Round
How much years of experience do you have?
Where you’re working, from how many years your working with present company?
What are projects you handled, what is the project you feel this is very tough project?
What you feel that much of toughness in this project?
Did you interact with the client at any time?
How Do you get the domain knowledge?




     Accenture Dotnet Interview Questions

     Accenture Dotnet Interview Question , Bangalore April,2010, Shyam Kumar gone through Accenture

     Explain ur current project ... role and responsibiltes

1.     What are the interested areas that u worked in ur current project

2.     Explain ASP.Net page LifeCycle.

3.     What are the New features .net 3.5 ?

4.     What is an interface

5.     What are the Oops Concepts that are used in ur project..

6.     What is abstract classes in which scenario u choose abstract clases over an interface.. ?

7.     What is the use Static classes.. ?

8.     How do u implement Encapusaltion in dotnet.. ?

9.     Difference between gridview and datagrid.. /

10. If you enable the EnableViewState and disable all the controls What it happens.

11. How can we install dll explicitly in .Net.

12. Solve this

     Int a=5;

     String str ;

     Str = a; // We have to convert the int into string.

     Will the program gets executed or else whats the error u rgetting how can u clear it.



                    a. Does Object is Value type or reference type.
                    b. What is stack and Queue.Examples of these.
13. Use of garbage collector ?
14. CTS .. ?

15. Can we use insert statement into the cursor or we had only direct insert statement.

16. What is meant by View state

17. Is it possible to view the data in view state..

18. Diiference between Storedprocedure and function .. ?

19. Can we write.. an update statement in function ?

Contenu connexe

Tendances

OOP interview questions & answers.
OOP interview questions & answers.OOP interview questions & answers.
OOP interview questions & answers.Questpond
 
VB.NET:An introduction to Namespaces in .NET framework
VB.NET:An introduction to  Namespaces in .NET frameworkVB.NET:An introduction to  Namespaces in .NET framework
VB.NET:An introduction to Namespaces in .NET frameworkRicha Handa
 
Exception Handling in C#
Exception Handling in C#Exception Handling in C#
Exception Handling in C#Abid Kohistani
 
Multithreading in java
Multithreading in javaMultithreading in java
Multithreading in javaRaghu nath
 
C# Exceptions Handling
C# Exceptions Handling C# Exceptions Handling
C# Exceptions Handling sharqiyem
 
Java interfaces & abstract classes
Java interfaces & abstract classesJava interfaces & abstract classes
Java interfaces & abstract classesShreyans Pathak
 
Exception Handling In Java
Exception Handling In JavaException Handling In Java
Exception Handling In Javaparag
 
Learn C# Programming - Decision Making & Loops
Learn C# Programming - Decision Making & LoopsLearn C# Programming - Decision Making & Loops
Learn C# Programming - Decision Making & LoopsEng Teong Cheah
 
Introduction to Node js
Introduction to Node jsIntroduction to Node js
Introduction to Node jsAkshay Mathur
 
React Context API
React Context APIReact Context API
React Context APINodeXperts
 
Exception handling in java
Exception handling in javaException handling in java
Exception handling in javapooja kumari
 
React new features and intro to Hooks
React new features and intro to HooksReact new features and intro to Hooks
React new features and intro to HooksSoluto
 
Java string handling
Java string handlingJava string handling
Java string handlingSalman Khan
 
Java Persistence API (JPA) Step By Step
Java Persistence API (JPA) Step By StepJava Persistence API (JPA) Step By Step
Java Persistence API (JPA) Step By StepGuo Albert
 

Tendances (20)

OOP interview questions & answers.
OOP interview questions & answers.OOP interview questions & answers.
OOP interview questions & answers.
 
VB.NET:An introduction to Namespaces in .NET framework
VB.NET:An introduction to  Namespaces in .NET frameworkVB.NET:An introduction to  Namespaces in .NET framework
VB.NET:An introduction to Namespaces in .NET framework
 
Exception Handling in C#
Exception Handling in C#Exception Handling in C#
Exception Handling in C#
 
Multithreading in java
Multithreading in javaMultithreading in java
Multithreading in java
 
C# Exceptions Handling
C# Exceptions Handling C# Exceptions Handling
C# Exceptions Handling
 
Java interfaces & abstract classes
Java interfaces & abstract classesJava interfaces & abstract classes
Java interfaces & abstract classes
 
Exception handling in java
Exception handling  in javaException handling  in java
Exception handling in java
 
Exception Handling In Java
Exception Handling In JavaException Handling In Java
Exception Handling In Java
 
Java Quiz
Java QuizJava Quiz
Java Quiz
 
Learn C# Programming - Decision Making & Loops
Learn C# Programming - Decision Making & LoopsLearn C# Programming - Decision Making & Loops
Learn C# Programming - Decision Making & Loops
 
Java annotations
Java annotationsJava annotations
Java annotations
 
Exception handling
Exception handlingException handling
Exception handling
 
Introduction to Node js
Introduction to Node jsIntroduction to Node js
Introduction to Node js
 
React Context API
React Context APIReact Context API
React Context API
 
Exception handling in java
Exception handling in javaException handling in java
Exception handling in java
 
NodeJS for Beginner
NodeJS for BeginnerNodeJS for Beginner
NodeJS for Beginner
 
React new features and intro to Hooks
React new features and intro to HooksReact new features and intro to Hooks
React new features and intro to Hooks
 
Java 8 features
Java 8 featuresJava 8 features
Java 8 features
 
Java string handling
Java string handlingJava string handling
Java string handling
 
Java Persistence API (JPA) Step By Step
Java Persistence API (JPA) Step By StepJava Persistence API (JPA) Step By Step
Java Persistence API (JPA) Step By Step
 

En vedette

Dot net interview questions
Dot net interview questionsDot net interview questions
Dot net interview questionsNetra Wable
 
Top 15-asp-dot-net-interview-questions-and-answers
Top 15-asp-dot-net-interview-questions-and-answersTop 15-asp-dot-net-interview-questions-and-answers
Top 15-asp-dot-net-interview-questions-and-answerssonia merchant
 
Cts informatica interview question answers
Cts informatica interview question answersCts informatica interview question answers
Cts informatica interview question answersSweta Singh
 
DotNet & Sql Server Interview Questions
DotNet & Sql Server Interview QuestionsDotNet & Sql Server Interview Questions
DotNet & Sql Server Interview QuestionsNeeraj Kaushik
 
important DotNet Questions For Practicals And Interviews
important DotNet Questions For Practicals And Interviewsimportant DotNet Questions For Practicals And Interviews
important DotNet Questions For Practicals And InterviewsRahul Jain
 
Accenture informatica interview question answers
Accenture informatica interview question answersAccenture informatica interview question answers
Accenture informatica interview question answersSweta Singh
 
Top 100 SQL Interview Questions and Answers
Top 100 SQL Interview Questions and AnswersTop 100 SQL Interview Questions and Answers
Top 100 SQL Interview Questions and Answersiimjobs and hirist
 
29 Essential AngularJS Interview Questions
29 Essential AngularJS Interview Questions29 Essential AngularJS Interview Questions
29 Essential AngularJS Interview QuestionsArc & Codementor
 
Net experience-resume-sample
Net experience-resume-sampleNet experience-resume-sample
Net experience-resume-sampleAmit Sawant
 
Sql queries with answers
Sql queries with answersSql queries with answers
Sql queries with answersvijaybusu
 

En vedette (13)

Dot net interview questions
Dot net interview questionsDot net interview questions
Dot net interview questions
 
Top 15-asp-dot-net-interview-questions-and-answers
Top 15-asp-dot-net-interview-questions-and-answersTop 15-asp-dot-net-interview-questions-and-answers
Top 15-asp-dot-net-interview-questions-and-answers
 
Interview questions on asp
Interview questions on aspInterview questions on asp
Interview questions on asp
 
HTML & XHTML Basics
HTML & XHTML BasicsHTML & XHTML Basics
HTML & XHTML Basics
 
Cts informatica interview question answers
Cts informatica interview question answersCts informatica interview question answers
Cts informatica interview question answers
 
DotNet & Sql Server Interview Questions
DotNet & Sql Server Interview QuestionsDotNet & Sql Server Interview Questions
DotNet & Sql Server Interview Questions
 
important DotNet Questions For Practicals And Interviews
important DotNet Questions For Practicals And Interviewsimportant DotNet Questions For Practicals And Interviews
important DotNet Questions For Practicals And Interviews
 
Accenture informatica interview question answers
Accenture informatica interview question answersAccenture informatica interview question answers
Accenture informatica interview question answers
 
Top 100 SQL Interview Questions and Answers
Top 100 SQL Interview Questions and AnswersTop 100 SQL Interview Questions and Answers
Top 100 SQL Interview Questions and Answers
 
29 Essential AngularJS Interview Questions
29 Essential AngularJS Interview Questions29 Essential AngularJS Interview Questions
29 Essential AngularJS Interview Questions
 
Net experience-resume-sample
Net experience-resume-sampleNet experience-resume-sample
Net experience-resume-sample
 
Sql queries with answers
Sql queries with answersSql queries with answers
Sql queries with answers
 
2017 Digital Yearbook
2017 Digital Yearbook2017 Digital Yearbook
2017 Digital Yearbook
 

Similaire à Dot Net Accenture

Working Effectively With Legacy Code
Working Effectively With Legacy CodeWorking Effectively With Legacy Code
Working Effectively With Legacy CodeNaresh Jain
 
JavaScript Interview Questions with Answers
JavaScript Interview Questions with AnswersJavaScript Interview Questions with Answers
JavaScript Interview Questions with AnswersAK Deep Knowledge
 
Sql interview question part 8
Sql interview question part 8Sql interview question part 8
Sql interview question part 8kaashiv1
 
Latest .Net Questions and Answers
Latest .Net Questions and Answers Latest .Net Questions and Answers
Latest .Net Questions and Answers Narasimhulu Palle
 
50 common web developer interview questions [2020 updated] [www.full stack....
50 common web developer interview questions [2020 updated]   [www.full stack....50 common web developer interview questions [2020 updated]   [www.full stack....
50 common web developer interview questions [2020 updated] [www.full stack....Alex Ershov
 
Web technologies-course 12.pptx
Web technologies-course 12.pptxWeb technologies-course 12.pptx
Web technologies-course 12.pptxStefan Oprea
 
Repository Pattern in MVC3 Application with Entity Framework
Repository Pattern in MVC3 Application with Entity FrameworkRepository Pattern in MVC3 Application with Entity Framework
Repository Pattern in MVC3 Application with Entity FrameworkAkhil Mittal
 
From Legacy to Hexagonal (An Unexpected Android Journey)
From Legacy to Hexagonal (An Unexpected Android Journey)From Legacy to Hexagonal (An Unexpected Android Journey)
From Legacy to Hexagonal (An Unexpected Android Journey)Jose Manuel Pereira Garcia
 
Php interview questions
Php interview questionsPhp interview questions
Php interview questionssekar c
 
The First C# Project Analyzed
The First C# Project AnalyzedThe First C# Project Analyzed
The First C# Project AnalyzedPVS-Studio
 
Salesforce integration questions
Salesforce integration questionsSalesforce integration questions
Salesforce integration questionsDebabrat Rout
 
Java interview-questions-and-answers
Java interview-questions-and-answersJava interview-questions-and-answers
Java interview-questions-and-answersbestonlinetrainers
 
Guidelines to understand durable functions with .net core, c# and stateful se...
Guidelines to understand durable functions with .net core, c# and stateful se...Guidelines to understand durable functions with .net core, c# and stateful se...
Guidelines to understand durable functions with .net core, c# and stateful se...Concetto Labs
 
Tdd is not about testing (OOP)
Tdd is not about testing (OOP)Tdd is not about testing (OOP)
Tdd is not about testing (OOP)Gianluca Padovani
 

Similaire à Dot Net Accenture (20)

Working Effectively With Legacy Code
Working Effectively With Legacy CodeWorking Effectively With Legacy Code
Working Effectively With Legacy Code
 
C# interview
C# interviewC# interview
C# interview
 
JavaScript Interview Questions with Answers
JavaScript Interview Questions with AnswersJavaScript Interview Questions with Answers
JavaScript Interview Questions with Answers
 
Sql interview question part 8
Sql interview question part 8Sql interview question part 8
Sql interview question part 8
 
Ebook8
Ebook8Ebook8
Ebook8
 
Latest .Net Questions and Answers
Latest .Net Questions and Answers Latest .Net Questions and Answers
Latest .Net Questions and Answers
 
50 common web developer interview questions [2020 updated] [www.full stack....
50 common web developer interview questions [2020 updated]   [www.full stack....50 common web developer interview questions [2020 updated]   [www.full stack....
50 common web developer interview questions [2020 updated] [www.full stack....
 
Spring boot
Spring bootSpring boot
Spring boot
 
Web technologies-course 12.pptx
Web technologies-course 12.pptxWeb technologies-course 12.pptx
Web technologies-course 12.pptx
 
Repository Pattern in MVC3 Application with Entity Framework
Repository Pattern in MVC3 Application with Entity FrameworkRepository Pattern in MVC3 Application with Entity Framework
Repository Pattern in MVC3 Application with Entity Framework
 
XP through TDD
XP through TDDXP through TDD
XP through TDD
 
From Legacy to Hexagonal (An Unexpected Android Journey)
From Legacy to Hexagonal (An Unexpected Android Journey)From Legacy to Hexagonal (An Unexpected Android Journey)
From Legacy to Hexagonal (An Unexpected Android Journey)
 
Need 4 Speed FI
Need 4 Speed FINeed 4 Speed FI
Need 4 Speed FI
 
Php interview questions
Php interview questionsPhp interview questions
Php interview questions
 
The First C# Project Analyzed
The First C# Project AnalyzedThe First C# Project Analyzed
The First C# Project Analyzed
 
Best interview questions
Best interview questionsBest interview questions
Best interview questions
 
Salesforce integration questions
Salesforce integration questionsSalesforce integration questions
Salesforce integration questions
 
Java interview-questions-and-answers
Java interview-questions-and-answersJava interview-questions-and-answers
Java interview-questions-and-answers
 
Guidelines to understand durable functions with .net core, c# and stateful se...
Guidelines to understand durable functions with .net core, c# and stateful se...Guidelines to understand durable functions with .net core, c# and stateful se...
Guidelines to understand durable functions with .net core, c# and stateful se...
 
Tdd is not about testing (OOP)
Tdd is not about testing (OOP)Tdd is not about testing (OOP)
Tdd is not about testing (OOP)
 

Dernier

Understanding Jainism Beliefs and Information.pptx
Understanding Jainism Beliefs and Information.pptxUnderstanding Jainism Beliefs and Information.pptx
Understanding Jainism Beliefs and Information.pptxjainismworldseo
 
Topmost Black magic specialist in Saudi Arabia Or Bangali Amil baba in UK Or...
Topmost Black magic specialist in Saudi Arabia  Or Bangali Amil baba in UK Or...Topmost Black magic specialist in Saudi Arabia  Or Bangali Amil baba in UK Or...
Topmost Black magic specialist in Saudi Arabia Or Bangali Amil baba in UK Or...baharayali
 
Topmost Kala ilam expert in UK Or Black magic specialist in UK Or Black magic...
Topmost Kala ilam expert in UK Or Black magic specialist in UK Or Black magic...Topmost Kala ilam expert in UK Or Black magic specialist in UK Or Black magic...
Topmost Kala ilam expert in UK Or Black magic specialist in UK Or Black magic...baharayali
 
No.1 Amil baba in Pakistan amil baba in Lahore amil baba in Karachi
No.1 Amil baba in Pakistan amil baba in Lahore amil baba in KarachiNo.1 Amil baba in Pakistan amil baba in Lahore amil baba in Karachi
No.1 Amil baba in Pakistan amil baba in Lahore amil baba in KarachiAmil Baba Naveed Bangali
 
No.1 Amil baba in Pakistan amil baba in Lahore amil baba in Karachi
No.1 Amil baba in Pakistan amil baba in Lahore amil baba in KarachiNo.1 Amil baba in Pakistan amil baba in Lahore amil baba in Karachi
No.1 Amil baba in Pakistan amil baba in Lahore amil baba in KarachiAmil Baba Naveed Bangali
 
The Chronological Life of Christ part 097 (Reality Check Luke 13 1-9).pptx
The Chronological Life of Christ part 097 (Reality Check Luke 13 1-9).pptxThe Chronological Life of Christ part 097 (Reality Check Luke 13 1-9).pptx
The Chronological Life of Christ part 097 (Reality Check Luke 13 1-9).pptxNetwork Bible Fellowship
 
Asli amil baba in Karachi Pakistan and best astrologer Black magic specialist
Asli amil baba in Karachi Pakistan and best astrologer Black magic specialistAsli amil baba in Karachi Pakistan and best astrologer Black magic specialist
Asli amil baba in Karachi Pakistan and best astrologer Black magic specialistAmil Baba Mangal Maseeh
 
Amil baba in uk amil baba in Australia amil baba in canada
Amil baba in uk amil baba in Australia amil baba in canadaAmil baba in uk amil baba in Australia amil baba in canada
Amil baba in uk amil baba in Australia amil baba in canadaamil baba kala jadu
 
No.1 Amil baba in Pakistan amil baba in Lahore amil baba in Karachi
No.1 Amil baba in Pakistan amil baba in Lahore amil baba in KarachiNo.1 Amil baba in Pakistan amil baba in Lahore amil baba in Karachi
No.1 Amil baba in Pakistan amil baba in Lahore amil baba in KarachiAmil Baba Mangal Maseeh
 
Study of the Psalms Chapter 1 verse 1 - wanderean
Study of the Psalms Chapter 1 verse 1 - wandereanStudy of the Psalms Chapter 1 verse 1 - wanderean
Study of the Psalms Chapter 1 verse 1 - wandereanmaricelcanoynuay
 
Unity is Strength 2024 Peace Haggadah + Song List.pdf
Unity is Strength 2024 Peace Haggadah + Song List.pdfUnity is Strength 2024 Peace Haggadah + Song List.pdf
Unity is Strength 2024 Peace Haggadah + Song List.pdfRebeccaSealfon
 
No.1 Amil baba in Pakistan amil baba in Lahore amil baba in Karachi
No.1 Amil baba in Pakistan amil baba in Lahore amil baba in KarachiNo.1 Amil baba in Pakistan amil baba in Lahore amil baba in Karachi
No.1 Amil baba in Pakistan amil baba in Lahore amil baba in KarachiAmil Baba Mangal Maseeh
 
No.1 Amil baba in Pakistan amil baba in Lahore amil baba in Karachi
No.1 Amil baba in Pakistan amil baba in Lahore amil baba in KarachiNo.1 Amil baba in Pakistan amil baba in Lahore amil baba in Karachi
No.1 Amil baba in Pakistan amil baba in Lahore amil baba in KarachiAmil Baba Mangal Maseeh
 
Seerah un nabi Muhammad Quiz Part-1.pdf
Seerah un nabi  Muhammad Quiz Part-1.pdfSeerah un nabi  Muhammad Quiz Part-1.pdf
Seerah un nabi Muhammad Quiz Part-1.pdfAnsariB1
 
No 1 astrologer amil baba in Canada Usa astrologer in Canada
No 1 astrologer amil baba in Canada Usa astrologer in CanadaNo 1 astrologer amil baba in Canada Usa astrologer in Canada
No 1 astrologer amil baba in Canada Usa astrologer in CanadaAmil Baba Mangal Maseeh
 
Unity is Strength 2024 Peace Haggadah_For Digital Viewing.pdf
Unity is Strength 2024 Peace Haggadah_For Digital Viewing.pdfUnity is Strength 2024 Peace Haggadah_For Digital Viewing.pdf
Unity is Strength 2024 Peace Haggadah_For Digital Viewing.pdfRebeccaSealfon
 
原版1:1复刻莫纳什大学毕业证Monash毕业证留信学历认证
原版1:1复刻莫纳什大学毕业证Monash毕业证留信学历认证原版1:1复刻莫纳什大学毕业证Monash毕业证留信学历认证
原版1:1复刻莫纳什大学毕业证Monash毕业证留信学历认证jdkhjh
 
No.1 Amil baba in Pakistan amil baba in Lahore amil baba in Karachi
No.1 Amil baba in Pakistan amil baba in Lahore amil baba in KarachiNo.1 Amil baba in Pakistan amil baba in Lahore amil baba in Karachi
No.1 Amil baba in Pakistan amil baba in Lahore amil baba in KarachiAmil Baba Mangal Maseeh
 
Do You Think it is a Small Matter- David’s Men.pptx
Do You Think it is a Small Matter- David’s Men.pptxDo You Think it is a Small Matter- David’s Men.pptx
Do You Think it is a Small Matter- David’s Men.pptxRick Peterson
 

Dernier (20)

young Whatsapp Call Girls in Adarsh Nagar🔝 9953056974 🔝 escort service
young Whatsapp Call Girls in Adarsh Nagar🔝 9953056974 🔝 escort serviceyoung Whatsapp Call Girls in Adarsh Nagar🔝 9953056974 🔝 escort service
young Whatsapp Call Girls in Adarsh Nagar🔝 9953056974 🔝 escort service
 
Understanding Jainism Beliefs and Information.pptx
Understanding Jainism Beliefs and Information.pptxUnderstanding Jainism Beliefs and Information.pptx
Understanding Jainism Beliefs and Information.pptx
 
Topmost Black magic specialist in Saudi Arabia Or Bangali Amil baba in UK Or...
Topmost Black magic specialist in Saudi Arabia  Or Bangali Amil baba in UK Or...Topmost Black magic specialist in Saudi Arabia  Or Bangali Amil baba in UK Or...
Topmost Black magic specialist in Saudi Arabia Or Bangali Amil baba in UK Or...
 
Topmost Kala ilam expert in UK Or Black magic specialist in UK Or Black magic...
Topmost Kala ilam expert in UK Or Black magic specialist in UK Or Black magic...Topmost Kala ilam expert in UK Or Black magic specialist in UK Or Black magic...
Topmost Kala ilam expert in UK Or Black magic specialist in UK Or Black magic...
 
No.1 Amil baba in Pakistan amil baba in Lahore amil baba in Karachi
No.1 Amil baba in Pakistan amil baba in Lahore amil baba in KarachiNo.1 Amil baba in Pakistan amil baba in Lahore amil baba in Karachi
No.1 Amil baba in Pakistan amil baba in Lahore amil baba in Karachi
 
No.1 Amil baba in Pakistan amil baba in Lahore amil baba in Karachi
No.1 Amil baba in Pakistan amil baba in Lahore amil baba in KarachiNo.1 Amil baba in Pakistan amil baba in Lahore amil baba in Karachi
No.1 Amil baba in Pakistan amil baba in Lahore amil baba in Karachi
 
The Chronological Life of Christ part 097 (Reality Check Luke 13 1-9).pptx
The Chronological Life of Christ part 097 (Reality Check Luke 13 1-9).pptxThe Chronological Life of Christ part 097 (Reality Check Luke 13 1-9).pptx
The Chronological Life of Christ part 097 (Reality Check Luke 13 1-9).pptx
 
Asli amil baba in Karachi Pakistan and best astrologer Black magic specialist
Asli amil baba in Karachi Pakistan and best astrologer Black magic specialistAsli amil baba in Karachi Pakistan and best astrologer Black magic specialist
Asli amil baba in Karachi Pakistan and best astrologer Black magic specialist
 
Amil baba in uk amil baba in Australia amil baba in canada
Amil baba in uk amil baba in Australia amil baba in canadaAmil baba in uk amil baba in Australia amil baba in canada
Amil baba in uk amil baba in Australia amil baba in canada
 
No.1 Amil baba in Pakistan amil baba in Lahore amil baba in Karachi
No.1 Amil baba in Pakistan amil baba in Lahore amil baba in KarachiNo.1 Amil baba in Pakistan amil baba in Lahore amil baba in Karachi
No.1 Amil baba in Pakistan amil baba in Lahore amil baba in Karachi
 
Study of the Psalms Chapter 1 verse 1 - wanderean
Study of the Psalms Chapter 1 verse 1 - wandereanStudy of the Psalms Chapter 1 verse 1 - wanderean
Study of the Psalms Chapter 1 verse 1 - wanderean
 
Unity is Strength 2024 Peace Haggadah + Song List.pdf
Unity is Strength 2024 Peace Haggadah + Song List.pdfUnity is Strength 2024 Peace Haggadah + Song List.pdf
Unity is Strength 2024 Peace Haggadah + Song List.pdf
 
No.1 Amil baba in Pakistan amil baba in Lahore amil baba in Karachi
No.1 Amil baba in Pakistan amil baba in Lahore amil baba in KarachiNo.1 Amil baba in Pakistan amil baba in Lahore amil baba in Karachi
No.1 Amil baba in Pakistan amil baba in Lahore amil baba in Karachi
 
No.1 Amil baba in Pakistan amil baba in Lahore amil baba in Karachi
No.1 Amil baba in Pakistan amil baba in Lahore amil baba in KarachiNo.1 Amil baba in Pakistan amil baba in Lahore amil baba in Karachi
No.1 Amil baba in Pakistan amil baba in Lahore amil baba in Karachi
 
Seerah un nabi Muhammad Quiz Part-1.pdf
Seerah un nabi  Muhammad Quiz Part-1.pdfSeerah un nabi  Muhammad Quiz Part-1.pdf
Seerah un nabi Muhammad Quiz Part-1.pdf
 
No 1 astrologer amil baba in Canada Usa astrologer in Canada
No 1 astrologer amil baba in Canada Usa astrologer in CanadaNo 1 astrologer amil baba in Canada Usa astrologer in Canada
No 1 astrologer amil baba in Canada Usa astrologer in Canada
 
Unity is Strength 2024 Peace Haggadah_For Digital Viewing.pdf
Unity is Strength 2024 Peace Haggadah_For Digital Viewing.pdfUnity is Strength 2024 Peace Haggadah_For Digital Viewing.pdf
Unity is Strength 2024 Peace Haggadah_For Digital Viewing.pdf
 
原版1:1复刻莫纳什大学毕业证Monash毕业证留信学历认证
原版1:1复刻莫纳什大学毕业证Monash毕业证留信学历认证原版1:1复刻莫纳什大学毕业证Monash毕业证留信学历认证
原版1:1复刻莫纳什大学毕业证Monash毕业证留信学历认证
 
No.1 Amil baba in Pakistan amil baba in Lahore amil baba in Karachi
No.1 Amil baba in Pakistan amil baba in Lahore amil baba in KarachiNo.1 Amil baba in Pakistan amil baba in Lahore amil baba in Karachi
No.1 Amil baba in Pakistan amil baba in Lahore amil baba in Karachi
 
Do You Think it is a Small Matter- David’s Men.pptx
Do You Think it is a Small Matter- David’s Men.pptxDo You Think it is a Small Matter- David’s Men.pptx
Do You Think it is a Small Matter- David’s Men.pptx
 

Dot Net Accenture

  • 1. Accenture Dotnet Interview Questions 1.Tell about your Current project? How the security is implemented , which architecture does you used ? 2. What are the various technologies you used in current and in previous projects I said: VS2005,VS2008, Sql server 2000,2005,java script ,Ajax, j queries, WCF. 3. What is the difference between abstract class and interface? Where we use abstract class and interface? 4. I want a method which it should return a string variable, Boolean variable and integer variables, how do you implement that method? Eg: I'm passing date time to method that method should return date , hrs,minutes and it should check date should not less than today's date and return as boolean. I said yes we can implement such a methods, by using key word “out “. public string getdatetime(string frmDatetime, string out date,int out hrs,int out mints,Boolean Isvalid) 5. Can we use “out” for the methods of type void? Does it give any compilation or run time error? I said: yes we can use for methods of type void also. I does not give any type of errors. 6. What are sealed classes and static classes? 7. What is boxing and unboxing? 8. Why do I'm get an error while try to declare the method? public static staticMethod (mainStatic obj) I said: yes it will give compilation error without specifying return type. public static void staticMethod (mainStatic obj) 9.Let's consider a scenario, I have a Text box when user enter a number in text box, I need to display the employee's details based on empid; if user enters a string value I need to display based on emp name. 10. Does C# supports the properties for array types? I said : yes ,it supports for eg:
  • 2. class Class1 { private string[] MyAssesrts; public string[] SubhashProperties { get { return MyAssesrts; } set { MyAssesrts = value; } } } class MainClass { public static int Main(string[] args) { Class1 c = new Class1(); string[] arr = new string[] {"car", "villa",”land”}; c. SubhashProperties = arr; Console.WriteLine(c.SubhashProperties [0]); return 0; } } 12. You worked on jquries right? What are the various features it overcomes from JavaScript and Ajax? 13. How to find the text box of id txtname in jquery? 14. What is SOA? Difference between web services and WCF? 15. How do you deploy the web services and WCF in production server? 16. What are the page life cycle events? 17. In Page load () Does it possible to identify , by which control or event causes post back I said: up to my knowledge No, we cannot identify, in page load all the controls and events will be loaded. I'm not sure whether it is a right answer or not? 17. What are http handlers? Where we use? 18. I need to insert the data of uploaded excel file to sqlserver, In how many ways we insert?
  • 3. I said: First we need to open the oledb connection, query the excel sheet and get excel data to data table or dataset. A. we can loop each row form a insert query a string and Executenonquery (). B.loop each row collect the data in array lists after looping the all records we can pass the array values to stored procedure. C. We can use sql bulk upload utility class, where we insert all the data at a time from data table to backend DB. 19. So, among these which one is the best you feel? I Said: obviously, third one gives the better performance. 20. How do you validate the data before inserting the data through sql bulk upload? 21. I’m uploading a large amount of data, my excel sheet contains @ 60000 to one lakh records, 22. What happens if I got any connection time out error or some other error occurs, how do you handles this error. I said: I faced this situation in my project, first of all we should not allow to the uploading large amount of data we should consider the file size before user uploading, better to allow uploading the small chunks of data , we should also consider production server configuration, Sqlserver: 21. How do you handle errors in stored procedures? I Said: In sql server 2005 and 2008 have a better error handling capable when compare to sqlserver2000, we can use try catch blocks in stored procedures. And also we can use @@Error which is a global variable; I explained about error_message (), error_seveority, error_description ().error_id() 22. Why we need to specify NoLock? Do we use Nolock while performing the DML operations, what happened if use? I said: Nolock should specify after the table name while performing the select statement, by default while executing the select statement sqlserver lock the table, for eg my query takes 6 sec to execute these 6 sec sq server will not allow to perform the any other DML Operations on that table i don't know whether this is a right or not.... Project Manager Round How much years of experience do you have? Where you’re working, from how many years your working with present company? What are projects you handled, what is the project you feel this is very tough project? What you feel that much of toughness in this project? Did you interact with the client at any time?
  • 4. How Do you get the domain knowledge? Accenture Dotnet Interview Questions Accenture Dotnet Interview Question , Bangalore April,2010, Shyam Kumar gone through Accenture Explain ur current project ... role and responsibiltes 1. What are the interested areas that u worked in ur current project 2. Explain ASP.Net page LifeCycle. 3. What are the New features .net 3.5 ? 4. What is an interface 5. What are the Oops Concepts that are used in ur project.. 6. What is abstract classes in which scenario u choose abstract clases over an interface.. ? 7. What is the use Static classes.. ? 8. How do u implement Encapusaltion in dotnet.. ? 9. Difference between gridview and datagrid.. / 10. If you enable the EnableViewState and disable all the controls What it happens. 11. How can we install dll explicitly in .Net. 12. Solve this Int a=5; String str ; Str = a; // We have to convert the int into string. Will the program gets executed or else whats the error u rgetting how can u clear it. a. Does Object is Value type or reference type. b. What is stack and Queue.Examples of these.
  • 5. 13. Use of garbage collector ? 14. CTS .. ? 15. Can we use insert statement into the cursor or we had only direct insert statement. 16. What is meant by View state 17. Is it possible to view the data in view state.. 18. Diiference between Storedprocedure and function .. ? 19. Can we write.. an update statement in function ?