Upload Button Icon Add office photos

Accenture

Compare button icon Compare button icon Compare

Filter interviews by

Accenture Team Leader (Technical) Interview Questions and Answers

Updated 9 Oct 2024

6 Interview questions

A Team Leader (Technical) was asked
Q. What is a mixin?
Ans. 

Mixin is a way to reuse code in multiple classes without inheritance.

  • Mixin is a programming concept that allows code to be reused in multiple classes without inheritance.

  • It is achieved by including a module or class in another class.

  • Mixins are commonly used in object-oriented programming languages like Ruby and Python.

  • They help to reduce code duplication and improve code organization.

  • Example: A class for a car may...

A Team Leader (Technical) was asked
Q. How can you detect a web browser?
Ans. 

To detect web browser, use navigator.userAgent property.

  • Use navigator.userAgent property to get the user agent string.

  • Parse the user agent string to identify the browser.

  • Use conditional statements to execute browser-specific code.

  • Consider using a library like Modernizr or jQuery to simplify the process.

Team Leader (Technical) Interview Questions Asked at Other Companies

Q1. What is OSG what is v3f What DBG Divert wheel U r V shape best Wh ... read more
Q2. How do you ensure zero defects in your functional area?
asked in Birlasoft
Q3. How would you design a backup tool for enterprise infrastructure?
asked in SitusAMC
Q4. Explain Design patterns. and what are Singleton and Factory desig ... read more
asked in HCL Group
Q5. Given an array of numbers, find a pair of numbers that sum up to ... read more
🔥 Asked by recruiter 4 times
A Team Leader (Technical) was asked
Q. What is a closure?
Ans. 

Closure is a feature in programming languages that allows a function to access variables outside its scope.

  • Closure is a way to create a function inside another function and access the outer function's variables.

  • It allows for encapsulation and data privacy.

  • Closures are commonly used in event handlers and callbacks.

  • Example: function outer() { let x = 10; function inner() { console.log(x); } return inner; } const clo...

A Team Leader (Technical) was asked
Q. Write a program demonstrating inheritance in Kotlin.
Ans. 

Inheritance in Kotlin allows a class to inherit properties and methods from another class.

  • Use the 'open' keyword to mark the superclass as inheritable

  • Use the 'override' keyword to override a method or property in the subclass

  • Use the 'super' keyword to call the superclass's implementation of a method or property

  • Example: class SubClass : SuperClass() { override fun method() { super.method() } }

What people are saying about Accenture

View All
lavenderalmond
Verified Icon
1w
works at
Accenture
Which offer should I choose – BP vs UKG (SRE Role)?
Got two offers: 🔹 BP – ₹10 LPA (Pune, Hybrid) Stable MNC, decent WLB, slower growth In-hand ~₹62K/month 🔹 UKG – ₹20 LPA (Noida, Hybrid) Strong perks (₹6L insurance, wellness, equity, bonus), high pay In-hand ~₹1.4L/month, but higher expectations Looking for: SRE growth, WLB, learning, and long-term stability What would you pick and why? Any feedback from current/ex-employees is appreciated!
Got a question about Accenture?
Ask anonymously on communities.
A Team Leader (Technical) was asked 9mo ago
Q. Fundamentals of data formats used in spark
Ans. 

Data formats used in Spark include JSON, Parquet, Avro, and ORC.

  • JSON: Lightweight data interchange format

  • Parquet: Columnar storage format optimized for query performance

  • Avro: Compact, fast, and efficient binary format

  • ORC: Optimized Row Columnar format for large-scale data processing

A Team Leader (Technical) was asked 9mo ago
Q. Fundamentals of apache spark and kafka
Ans. 

Apache Spark is a fast and general-purpose cluster computing system. Apache Kafka is a distributed streaming platform.

  • Apache Spark is used for big data processing and analytics, providing in-memory computing capabilities.

  • Apache Kafka is used for building real-time data pipelines and streaming applications.

  • Apache Spark can be integrated with Apache Kafka for real-time data processing.

  • Both Apache Spark and Apache Ka...

Accenture Team Leader (Technical) Interview Experiences

4 interviews found

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
-

I appeared for an interview in Apr 2024.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Fundamentals of apache spark and kafka
  • Ans. 

    Apache Spark is a fast and general-purpose cluster computing system. Apache Kafka is a distributed streaming platform.

    • Apache Spark is used for big data processing and analytics, providing in-memory computing capabilities.

    • Apache Kafka is used for building real-time data pipelines and streaming applications.

    • Apache Spark can be integrated with Apache Kafka for real-time data processing.

    • Both Apache Spark and Apache Kafka a...

  • Answered by AI
  • Q2. Fundamentals of data formats used in spark
  • Ans. 

    Data formats used in Spark include JSON, Parquet, Avro, and ORC.

    • JSON: Lightweight data interchange format

    • Parquet: Columnar storage format optimized for query performance

    • Avro: Compact, fast, and efficient binary format

    • ORC: Optimized Row Columnar format for large-scale data processing

  • Answered by AI

Skills evaluated in this interview

Are these interview questions helpful?
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
Selected Selected
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 - Technical 

(2 Questions)

  • Q1. General salesforce questions for Salesforce team lead position
  • Q2. Apex related questions

Interview Preparation Tips

Interview preparation tips for other job seekers - NA

Interview Questionnaire 

3 Questions

  • Q1. How to detect web browser
  • Ans. 

    To detect web browser, use navigator.userAgent property.

    • Use navigator.userAgent property to get the user agent string.

    • Parse the user agent string to identify the browser.

    • Use conditional statements to execute browser-specific code.

    • Consider using a library like Modernizr or jQuery to simplify the process.

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

    Mixin is a way to reuse code in multiple classes without inheritance.

    • Mixin is a programming concept that allows code to be reused in multiple classes without inheritance.

    • It is achieved by including a module or class in another class.

    • Mixins are commonly used in object-oriented programming languages like Ruby and Python.

    • They help to reduce code duplication and improve code organization.

    • Example: A class for a car may incl...

  • Answered by AI
  • Q3. What is closure

Skills evaluated in this interview

I applied via Accenture and was interviewed in Nov 2020. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Kotlin, Threading, Latest Android components
  • Q2. Program for inheritance in kotlin
  • Ans. 

    Inheritance in Kotlin allows a class to inherit properties and methods from another class.

    • Use the 'open' keyword to mark the superclass as inheritable

    • Use the 'override' keyword to override a method or property in the subclass

    • Use the 'super' keyword to call the superclass's implementation of a method or property

    • Example: class SubClass : SuperClass() { override fun method() { super.method() } }

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and learn topic thoroughly not just basic level.

Interview questions from similar companies

I appeared for an interview before May 2016.

Interview Questionnaire 

2 Questions

  • Q1. Asked about bpo
  • Q2. Where do you see yourself after 10 years

Interview Preparation Tips

Round: Test
Experience: Firstly after arriving they took a test on general knowledge having 10 questions given 10 minutes of time
Duration: 10 minutes
Total Questions: 10

Round: Group Discussion
Experience: Shortly after test, gd began with 10 participants
Duration: 10 minutes

Round: HR Interview
Experience: I got shortlisted in GD therefore after 30 minutes, last round started and had a HR interview, they only asked 2 questions

Interview Questionnaire 

2 Questions

  • Q1. They asked basically for the technical knowledge of ITIL and the decision making capabilities. As a Major Incident Manager, you have to take the decision to restore the service quickly. They have asked rel...
  • Q2. They judged about the decision making power

I applied via Naukri.com and was interviewed before Sep 2021. 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 - One-on-one 

(2 Questions)

  • Q1. With L1 Manger of the project
  • Q2. Basic understanding of the process and system and other JD related questions
Round 3 - HR 

(1 Question)

  • Q1. Salary discussion and joining date
Round 4 - Behavioral 

(1 Question)

  • Q1. L2 Project manager one on one interview

Interview Preparation Tips

Interview preparation tips for other job seekers - Explain everything which have done . Be to the point and confident

I applied via Approached by Company and was interviewed before Oct 2021. 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 - Group Discussion 

Have confidence. Don't try to interrupt. Be clear and precise. Disagree in a polite way. Even if you don't know anything about the topic listen to what others speak and try gather points from it. You have to involve and make your voice get noticed. Silence won't work in GD.

Round 3 - Aptitude Test 

So, aptitude test depends on the organisation's criteria. Think in a broad way and answer. Nothing is new is the key to score in aptitude test.

Round 4 - HR 

(2 Questions)

  • Q1. Why you think you should be selected? Never lie. This is the place where most of us get caught. First understand your job Nature. Then you will automatically get answer for this question. Don't be one side...
  • Q2. What will be your contribution? Think on what objectives you can work even more broadly. This will help you to stand out.

Interview Preparation Tips

Topics to prepare for HCLTech Team Leader (Technical) interview:
  • Communication Skills
  • Body language
  • Critical thinking
Interview preparation tips for other job seekers - First of all don't worry
Be relax , be calm.
Yes you will definitely get a job.
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Basic .net questions
  • Q2. All basic only, you can clear it

Interview Preparation Tips

Interview preparation tips for other job seekers - Salary will not be changed, appraisal will be start after 2 years. Software for Laptop usage will be tracked for hours and logged

I applied via Naukri.com and was interviewed in Jul 2021. There was 1 interview round.

Interview Questionnaire 

3 Questions

  • Q1. What was the toughest development you worked on.
  • Q2. Question on strong areas on abap.
  • Ans. 

    ABAP expertise includes data manipulation, report generation, and custom development in SAP environments.

    • Proficient in developing custom reports using ABAP Report programming, e.g., creating ALV reports for better data visualization.

    • Experienced in enhancing standard SAP applications using user exits and BAdIs, such as modifying sales order processing.

    • Skilled in performance optimization techniques, like using internal t...

  • Answered by AI
  • Q3. Question on new technologies

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview question and approach depends on interviewer mostly. However be sure to have through knowledge on atleat 1,2 objects you designed. Have grip on overall technology and some basic idea on new technology.

Accenture Interview FAQs

How many rounds are there in Accenture Team Leader (Technical) interview?
Accenture interview process usually has 1-2 rounds. The most common rounds in the Accenture interview process are One-on-one Round, Resume Shortlist and Technical.
How to prepare for Accenture Team Leader (Technical) 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 Ajax, CSS, Html5, Javascript and UI Development.
What are the top questions asked in Accenture Team Leader (Technical) interview?

Some of the top questions asked at the Accenture Team Leader (Technical) interview -

  1. Fundamentals of data formats used in sp...read more
  2. How to detect web brow...read more
  3. Fundamentals of apache spark and ka...read more

Tell us how to improve this page.

Overall Interview Experience Rating

5/5

based on 2 interview experiences

Difficulty level

Easy 100%

Duration

Less than 2 weeks 100%
View more
Accenture Team Leader (Technical) Salary
based on 594 salaries
₹15.4 L/yr - ₹28.5 L/yr
26% more than the average Team Leader (Technical) Salary in India
View more details

Accenture Team Leader (Technical) Reviews and Ratings

based on 69 reviews

4.2/5

Rating in categories

4.2

Skill development

3.9

Work-life balance

3.6

Salary

4.2

Job security

4.1

Company culture

3.2

Promotions

3.7

Work satisfaction

Explore 69 Reviews and Ratings
Application Development Analyst
39.3k salaries
unlock blur

₹4.8 L/yr - ₹11 L/yr

Application Development - Senior Analyst
27.7k salaries
unlock blur

₹8.1 L/yr - ₹16.1 L/yr

Team Lead
26.7k salaries
unlock blur

₹12.6 L/yr - ₹22.5 L/yr

Senior Analyst
19.7k salaries
unlock blur

₹9.1 L/yr - ₹15.7 L/yr

Senior Software Engineer
18.5k salaries
unlock blur

₹10.2 L/yr - ₹18 L/yr

Explore more salaries
Compare Accenture with

TCS

3.6
Compare

Cognizant

3.7
Compare

Capgemini

3.7
Compare

Infosys

3.6
Compare
write
Share an Interview