Upload Button Icon Add office photos

Filter interviews by

Accenture Technology Analyst Interview Questions and Answers

Updated 17 Oct 2024

Accenture Technology Analyst Interview Experiences

7 interviews found

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Jun 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. In SQL, Union will have sorted records or not
  • Q2. Queries related highest salary emplyee

Technology Analyst Interview Questions & Answers

user image Abhishek mishra

posted on 17 Oct 2024

Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Time duration was 2 hours and question are related to dsa.

Round 2 - Group Discussion 

Time given was 2 minutes for each student

Interview Preparation Tips

Interview preparation tips for other job seekers - be confident

Technology Analyst Interview Questions Asked at Other Companies

Q1. Sort 0 and 1 Problem Statement Given an integer array ARR of size ... read more
Q2. Minimum Number of Vertices to Reach All Nodes Problem Statement I ... read more
Q3. Flatten a Multilevel Sorted Linked List You are given a linked li ... read more
asked in Infosys
Q4. An atomic spark job runs for 15 mins everyday ,one day it is runn ... read more
Q5. Box Stacking Problem Statement Consider you are provided with 'n' ... read more
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Nov 2022. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - One-on-one 

(2 Questions)

  • Q1. How do u explain class & object with a real time example
  • Ans. 

    A class is a blueprint for creating objects, while an object is an instance of a class.

    • A class defines the properties and behaviors that an object can have.

    • An object is created using the class as a template.

    • For example, consider a class called 'Car' that has properties like 'color', 'brand', and 'model'. An object of this class can be created as 'myCar' with specific values for these properties.

    • The class 'Car' can also...

  • Answered by AI
  • Q2. Multiple inheritance, method overloading, method overriding, jdbc, spring core
Round 3 - HR 

(1 Question)

  • Q1. Salary negotiation
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Jun 2023. There was 1 interview round.

Round 1 - Coding Test 

Python questions were easy

Interview Preparation Tips

Interview preparation tips for other job seekers - Just be confident

Accenture interview questions for designations

 Technology Security Analyst

 (3)

 Business Technology Analyst

 (2)

 Technology Consultant

 (3)

 Technology Specialist

 (1)

 Technology Architect

 (1)

 Technology

 (1)

 Senior Technology Security Analyst

 (3)

 Business Technology Analyst Intern

 (1)

Round 1 - One-on-one 

(1 Question)

  • Q1. Tell me about yourself
Round 2 - Assignment 

Coding in javascript. Simple functions etc

Interview Preparation Tips

Interview preparation tips for other job seekers - This company workculture is the best . Good for experience people.

I applied via Naukri.com and was interviewed in Aug 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Standby database, backup and recovery policies,performance tuning basics

Interview Preparation Tips

Interview preparation tips for other job seekers - Just be confident, and answer whatever you know..

I applied via Walk-in and was interviewed before Sep 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Tower of Hanoi implementation ?

Interview Preparation Tips

Interview preparation tips for other job seekers - Good interview. Be confident and prepare to answer the question

Skills evaluated in this interview

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
Selected Selected
Round 1 - Technical 

(2 Questions)

  • Q1. What is boxing and unboxing
  • Q2. What is garbage collection
Round 2 - Technical 

(2 Questions)

  • Q1. What is mvc and razor
  • Q2. What is software development
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Not Selected

I was interviewed in Jul 2024.

Round 1 - Coding Test 

Js questions , es6 , typescript, react , redux

Round 2 - Group Discussion 

Relevant experience , work experience,

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via LinkedIn and was interviewed in Aug 2023. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - Assignment 

It was a multiple questions test, 90 minutes test 43 questions technical question based on the position i have applied. It is intermediate level of test. I have cleared the test.

Round 3 - Technical 

(5 Questions)

  • Q1. After completed my Assessment test , I got a call from HR for technical round through WebEx. Yesterday interview done in that call panel asked about my role of my current company and asked about my project...
  • Q2. Put vs patch in restful
  • Ans. 

    In RESTful APIs, 'put' is used to update an entire resource, while 'patch' is used to update only specific fields of a resource.

    • PUT is used to update the entire resource, while PATCH is used to update specific fields

    • PUT requires the client to send the entire updated resource, while PATCH only requires the client to send the specific fields to be updated

    • PUT is idempotent, meaning multiple identical requests will have th...

  • Answered by AI
  • Q3. Different between restful and webclient
  • Ans. 

    Restful is an architectural style for designing networked applications, while WebClient is a class in Java used for making HTTP requests.

    • RESTful is an architectural style that uses HTTP methods like GET, POST, PUT, DELETE to perform operations on resources.

    • WebClient is a class in Java that provides a higher-level API for making HTTP requests and handling responses.

    • RESTful APIs are stateless and use standard HTTP status...

  • Answered by AI
  • Q4. Serialization and deserialization in java
  • Ans. 

    Serialization is the process of converting an object into a byte stream, while deserialization is the process of converting a byte stream back into an object in Java.

    • Serialization is achieved by implementing the Serializable interface in Java.

    • Deserialization is done by reading the byte stream and reconstructing the object using the readObject() method.

    • Example: ObjectOutputStream for serialization and ObjectInputStream

  • Answered by AI
  • Q5. What are functional interface in java8
  • Ans. 

    Functional interfaces in Java 8 are interfaces with a single abstract method, used for lambda expressions and method references.

    • Functional interfaces have only one abstract method, but can have multiple default or static methods.

    • They can be used with lambda expressions and method references.

    • Examples include java.lang.Runnable, java.util.Comparator, and java.util.function.Predicate.

  • Answered by AI

Skills evaluated in this interview

Accenture Interview FAQs

How many rounds are there in Accenture Technology Analyst interview?
Accenture interview process usually has 1-2 rounds. The most common rounds in the Accenture interview process are Coding Test, One-on-one Round and Technical.
How to prepare for Accenture Technology Analyst interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at Accenture. The most common topics and skills that interviewers at Accenture expect are AWS, Analytical skills, Automation, Azure and Business process.
What are the top questions asked in Accenture Technology Analyst interview?

Some of the top questions asked at the Accenture Technology Analyst interview -

  1. how do u explain class & object with a real time exam...read more
  2. Tower of Hanoi implementatio...read more
  3. Standby database, backup and recovery policies,performance tuning bas...read more

Tell us how to improve this page.

Accenture Technology Analyst Interview Process

based on 5 interviews

1 Interview rounds

  • Technical Round
View more
Accenture Technology Analyst Salary
based on 153 salaries
₹4.6 L/yr - ₹16 L/yr
41% more than the average Technology Analyst Salary in India
View more details

Accenture Technology Analyst Reviews and Ratings

based on 8 reviews

4.0/5

Rating in categories

3.6

Skill development

4.4

Work-life balance

2.7

Salary

3.7

Job security

3.8

Company culture

2.8

Promotions

3.3

Work satisfaction

Explore 8 Reviews and Ratings
Application Development Analyst
38.9k salaries
unlock blur

₹3 L/yr - ₹12 L/yr

Application Development - Senior Analyst
27.1k salaries
unlock blur

₹6.8 L/yr - ₹20.2 L/yr

Team Lead
24.2k salaries
unlock blur

₹7.1 L/yr - ₹25 L/yr

Senior Software Engineer
18.4k salaries
unlock blur

₹6 L/yr - ₹19.1 L/yr

Software Engineer
17.5k salaries
unlock blur

₹3.6 L/yr - ₹12.8 L/yr

Explore more salaries
Compare Accenture with

TCS

3.7
Compare

Cognizant

3.8
Compare

Capgemini

3.7
Compare

Infosys

3.6
Compare
Did you find this page helpful?
Yes No
write
Share an Interview