Upload Button Icon Add office photos

Filter interviews by

Accenture Business Technology Associate Interview Questions and Answers

Updated 18 Nov 2024

Accenture Business Technology Associate Interview Experiences

4 interviews found

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Aptitude Test 

Easy to crack and results were out within a month

Round 2 - One-on-one 

(1 Question)

  • Q1. Self introduction
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
6-8 weeks
Result
Selected Selected

I applied via Company Website and was interviewed before Nov 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

Various tricky questions were there in the test

Round 2 - Technical 

(2 Questions)

  • Q1. Finance questions
  • Q2. Accounting questions

Business Technology Associate Interview Questions Asked at Other Companies

asked in BYJU'S
Q1. What exact meaning of follow ups in sale according to you
asked in Altisource
Q2. How to find common elements from two arrays using C
Q3. What is your nature to be characterised of to be told in three wo ... read more
asked in ZS
Q4. What are some of the window functions and their use?
asked in ZS
Q5. How many traffic lights are there in New Delhi (Guesstimate)
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via campus placement at Institute of Technology and Science, Ghaziabad and was interviewed before Nov 2022. There were 4 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 - Aptitude Test 

Basic Quant and reasoning questions.

Round 3 - Aptitude Test 

There was another test it is stream test. As I was from marketing domain so question were marketing related.

Round 4 - HR 

(4 Questions)

  • Q1. Basic intro of the both
  • Q2. Mostly questions was from CV and related to the internship experience and projects I have done in college.
  • Q3. Last question was why Accenture only.
  • Q4. How well this job fulfill your goal.
  • Ans. 

    This job aligns perfectly with my career goals and provides opportunities for growth and development.

    • The job allows me to apply my skills and knowledge in business and technology.

    • It offers a dynamic and challenging work environment.

    • There are opportunities for learning and professional development.

    • The job provides exposure to various aspects of business and technology.

    • I can contribute to the success of the organization ...

  • Answered by AI

I applied via Campus Placement and was interviewed in Aug 2021. There were 4 interview rounds.

Round 1 - Aptitude Test 

Test would include 3 sections reasoning english and apti

Round 2 - Technical 

(1 Question)

  • Q1. Technical round according to your stream preferences i opted for finance
Round 3 - Communication 

(1 Question)

  • Q1. Pearson communication test is happen
Round 4 - One-on-one 

(1 Question)

  • Q1. Question related to your job role, team conflicts

Interview Preparation Tips

Interview preparation tips for other job seekers - Be calm and explain your answer as it is what happens on real time basis

Accenture interview questions for designations

 Business Technology Analyst

 (2)

 Business Associate

 (10)

 Business Technology Analyst Intern

 (1)

 Technology

 (1)

 Business Operations Associate

 (8)

 Business Process Associate

 (7)

 new Business Associate

 (6)

 Business Development Associate

 (3)

Interview questions from similar companies

Interview Questionnaire 

1 Question

  • Q1. What about yourself
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is rdbms in sql
  • Ans. 

    RDBMS stands for Relational Database Management System in SQL.

    • RDBMS is a type of database management system that stores data in a structured format using rows and columns.

    • It allows users to establish relationships between different data sets.

    • SQL (Structured Query Language) is commonly used to interact with RDBMS.

    • Examples of RDBMS in SQL include MySQL, Oracle, and SQL Server.

  • Answered by AI
  • Q2. What is polymorphism
  • Ans. 

    Polymorphism is the ability of a single function or method to operate on different types of data.

    • Polymorphism allows objects of different classes to be treated as objects of a common superclass.

    • It enables a single interface to represent multiple data types.

    • Examples include method overloading and method overriding in object-oriented programming.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Good

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed in Jan 2024. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Tell me about a time a project was not successful & how you worked through it
  • Q2. What does success look like to you
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

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

I applied via Naukri.com and was interviewed in Jul 2023. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Aptitude Test 

All aptitude related questions they asked like quantity aptitude reasoning English

Round 3 - Coding Test 

All coding related questions from C and java language

Round 4 - HR 

(4 Questions)

  • Q1. HR normal level questions about your self and your past experience about your family
  • Q2. About your self About your family Your past experience Why you choose hcl
  • Q3. Where you learn all these skills
  • Q4. About there traning

Interview Preparation Tips

Topics to prepare for HCL Group Information Technology Support Engineer interview:
  • Core Java
  • C
  • Aptitude
  • Reasoning
  • English
Interview preparation tips for other job seekers - Easy not that much tough
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Dec 2023. There were 3 interview rounds.

Round 1 - Group Discussion 

Gd on general topics

Round 2 - Technical 

(2 Questions)

  • Q1. Question regarding course work
  • Q2. Questions regarding cv, projects and java related tech stack. Oops.
Round 3 - HR 

(2 Questions)

  • Q1. This round more of managerial round. Ask about projects, details of project.
  • Q2. Basic behavior questions

Accenture Interview FAQs

How many rounds are there in Accenture Business Technology Associate interview?
Accenture interview process usually has 3 rounds. The most common rounds in the Accenture interview process are Aptitude Test, Technical and One-on-one Round.
What are the top questions asked in Accenture Business Technology Associate interview?

Some of the top questions asked at the Accenture Business Technology Associate interview -

  1. Technical round according to your stream preferences i opted for fina...read more
  2. Pearson communication test is hap...read more
  3. Basic intro of the b...read more

Tell us how to improve this page.

Accenture Business Technology Associate Interview Process

based on 4 interviews

1 Interview rounds

  • Aptitude Test Round
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Cognizant Interview Questions
3.8
 • 5.6k Interviews
Capgemini Interview Questions
3.7
 • 4.8k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
Genpact Interview Questions
3.8
 • 3.1k Interviews
LTIMindtree Interview Questions
3.8
 • 3k Interviews
IBM Interview Questions
4.0
 • 2.4k Interviews
View all
Accenture Business Technology Associate Salary
based on 23 salaries
₹4.5 L/yr - ₹5.6 L/yr
60% less than the average Business Technology Associate Salary in India
View more details

Accenture Business Technology Associate Reviews and Ratings

based on 1 review

3.0/5

Rating in categories

1.0

Skill development

4.0

Work-life balance

4.0

Salary

1.0

Job security

5.0

Company culture

2.0

Promotions

3.0

Work satisfaction

Explore 1 Review and Rating
Application Development Analyst
38.9k salaries
unlock blur

₹3 L/yr - ₹12 L/yr

Application Development - Senior Analyst
27k salaries
unlock blur

₹6.8 L/yr - ₹20.2 L/yr

Team Lead
24.2k salaries
unlock blur

₹7.1 L/yr - ₹25.5 L/yr

Senior Software Engineer
18.3k salaries
unlock blur

₹6 L/yr - ₹19.4 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