Upload Button Icon Add office photos

Filter interviews by

Incedo Technical Lead Interview Questions and Answers

Updated 10 Oct 2023

Incedo Technical Lead Interview Experiences

4 interviews found

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
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. Ask about project and related skills
  • Q2. Case scenario and problems
Round 3 - Technical 

(2 Questions)

  • Q1. About the tools and queries
  • Q2. About the experience
Round 4 - HR 

(2 Questions)

  • Q1. About the experience
  • Q2. And the package relocation and shift
Round 5 - One-on-one 

(1 Question)

  • Q1. One to one about the experience
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 - HR 

(2 Questions)

  • Q1. Had salary discussion with hr
  • Q2. Had discussion about job description
Round 3 - Technical 

(1 Question)

  • Q1. Had technical evaluation
Round 4 - Technical 

(1 Question)

  • Q1. Had technical evaluation
Round 5 - Technical 

(1 Question)

  • Q1. Had technical discussion and com skill check

Interview Preparation Tips

Interview preparation tips for other job seekers - It was good exp with incedo during interview. Enjoying work with organization

Technical Lead Interview Questions Asked at Other Companies

Q1. 1. Explain 5 mins the flow from requirement analysis to productio ... read more
asked in Infosys
Q2. Managerial: 1) Explain any one past issue and its mitigation stra ... read more
Q3. Longest Substring Without Repeating CharactersGiven a string 'S' ... read more
asked in Wipro
Q4. What automation framework have you worked on?
asked in Cognizant
Q5. 1. Type of documentation for computer system validation. 2.Please ... read more
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before Oct 2022. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Technical 

(1 Question)

  • Q1. Questions based on Technologies worked on.
Round 3 - Technical 

(1 Question)

  • Q1. In Depth Understanding of Basics
Round 4 - HR 

(1 Question)

  • Q1. Policy discussions.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed before Mar 2022. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Double-check your resume for any spelling mistakes. The recruiter may consider spelling mistakes as careless behavior or poor communication skills.
View all tips
Round 2 - Technical 

(2 Questions)

  • Q1. Related to your experience in technology
  • Q2. Expertise in which technology
  • Ans. 

    My expertise lies in Java and related technologies.

    • Proficient in Java programming language and its frameworks like Spring and Hibernate

    • Experience in developing web applications using HTML, CSS, JavaScript, and AngularJS

    • Familiarity with database technologies like MySQL and Oracle

    • Knowledge of software development methodologies like Agile and Scrum

    • Experience in leading and mentoring a team of developers

  • Answered by AI
Round 3 - One-on-one 

(1 Question)

  • Q1. Technical questions and projects worked on

Interview Preparation Tips

Interview preparation tips for other job seekers - Be good in communication skills, in technical answers.

Incedo interview questions for designations

 Senior Technical Lead

 (3)

 Technical Architect

 (1)

 Test Lead

 (1)

 Lead Engineer

 (1)

 Senior Lead

 (1)

 Team Lead

 (1)

 Technical Support Engineer

 (2)

 Associate Technical Project Manager

 (1)

Interview questions from similar companies

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

I applied via Recruitment Consulltant and was interviewed in Nov 2024. There were 3 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Basic knowledge of your skills
  • Q2. Scenario based questions.
Round 2 - Technical 

(2 Questions)

  • Q1. Scenario based questions
  • Q2. SQL technical question.
Round 3 - HR 

(1 Question)

  • Q1. Salary Discussion, joining date negotiation and Joining Bonus.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be perfect and ready with your skills whatever you have.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. React Life cycle methods
  • Q2. Machine coding with crypto price api
  • Ans. 

    Using a crypto price API to fetch and display real-time cryptocurrency prices in a machine coding project.

    • Utilize a crypto price API to fetch real-time cryptocurrency prices

    • Implement error handling for API requests

    • Display the fetched prices in a user-friendly format

  • Answered by AI
Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Mix of coding, theory and design questions
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(4 Questions)

  • Q1. Solid principle implemantion in c#
  • Ans. 

    Solid principles are a set of design principles that help make software more maintainable, flexible, and scalable.

    • Single Responsibility Principle (SRP) - A class should have only one reason to change.

    • Open/Closed Principle (OCP) - Software entities should be open for extension but closed for modification.

    • Liskov Substitution Principle (LSP) - Objects of a superclass should be replaceable with objects of its subclasses wi...

  • Answered by AI
  • Q2. Write a code for Entity framework DB connection
  • Ans. 

    Code snippet for Entity Framework DB connection

    • Install Entity Framework NuGet package

    • Create a DbContext class

    • Define DbSet properties for each entity

    • Configure connection string in app.config/web.config

    • Use DbContext to interact with the database

  • Answered by AI
  • Q3. Get 3 rd highest salary
  • Ans. 

    To get the 3rd highest salary, we can use a SQL query with the 'LIMIT' and 'OFFSET' keywords.

    • Use a SQL query with 'ORDER BY salary DESC' to sort salaries in descending order.

    • Use 'LIMIT 1 OFFSET 2' to skip the first two highest salaries and get the 3rd highest salary.

    • Example: SELECT salary FROM employees ORDER BY salary DESC LIMIT 1 OFFSET 2;

  • Answered by AI
  • Q4. Why we using interface in C#
  • Ans. 

    Interfaces in C# provide a way to define a contract for classes to implement, promoting code reusability and flexibility.

    • Interfaces allow for multiple inheritance in C# by allowing a class to implement multiple interfaces.

    • Interfaces help in achieving loose coupling between classes, making the code more maintainable and testable.

    • Interfaces are used to define common behavior that multiple classes can share, promoting cod...

  • Answered by AI
Round 2 - HR 

(1 Question)

  • Q1. Why you want to change the company

Skills evaluated in this interview

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

(1 Question)

  • Q1. Work experience
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed in Nov 2023. 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 - Coding Test 

Hackerrank test with combination of MCQ and java program coding.

Round 3 - Technical 

(1 Question)

  • Q1. L1 technical and L2 client technical rounds. Asked questions from core java, spring boot, micro service and some java coding questions.
Round 4 - HR 

(1 Question)

  • Q1. Basic questions on personal details and overview about company and salary discussion.

Interview Preparation Tips

Interview preparation tips for other job seekers - If you are looking for java development opportunity then prepare more java coding questions. Concentrate more on collection framework coding part.

Incedo Interview FAQs

How many rounds are there in Incedo Technical Lead interview?
Incedo interview process usually has 4-5 rounds. The most common rounds in the Incedo interview process are Technical, Resume Shortlist and HR.
How to prepare for Incedo Technical Lead 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 Incedo. The most common topics and skills that interviewers at Incedo expect are Java, Microservices, Spring Boot, Python and SQL.
What are the top questions asked in Incedo Technical Lead interview?

Some of the top questions asked at the Incedo Technical Lead interview -

  1. Expertise in which technol...read more
  2. Questions based on Technologies worked ...read more
  3. Technical questions and projects worked...read more

Tell us how to improve this page.

People are getting interviews through

based on 2 Incedo interviews
Company Website
50%
50% candidates got the interview through other sources.
Moderate Confidence
?
Moderate Confidence means the data is based on a sufficient number of responses received from the candidates
Incedo Technical Lead Salary
based on 591 salaries
₹10 L/yr - ₹37.9 L/yr
14% more than the average Technical Lead Salary in India
View more details

Incedo Technical Lead Reviews and Ratings

based on 72 reviews

3.3/5

Rating in categories

3.1

Skill development

3.4

Work-Life balance

3.4

Salary & Benefits

2.9

Job Security

3.2

Company culture

2.9

Promotions/Appraisal

3.0

Work Satisfaction

Explore 72 Reviews and Ratings
Senior Software Engineer
1.1k salaries
unlock blur

₹6.8 L/yr - ₹23.8 L/yr

Software Engineer
848 salaries
unlock blur

₹3 L/yr - ₹13 L/yr

Technical Lead
591 salaries
unlock blur

₹10 L/yr - ₹37.9 L/yr

Associate
287 salaries
unlock blur

₹2.7 L/yr - ₹6.1 L/yr

Senior Technical Lead
268 salaries
unlock blur

₹14.1 L/yr - ₹41 L/yr

Explore more salaries
Compare Incedo with

TCS

3.7
Compare

Infosys

3.7
Compare

Wipro

3.7
Compare

HCLTech

3.5
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview