Upload Button Icon Add office photos

Incedo

Compare button icon Compare button icon Compare

Filter interviews by

Clear (1)

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 Resume 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:
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 Resume 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
asked in Wipro
Q3. What automation framework have you worked on?
asked in Cognizant
Q4. 1. Type of documentation for computer system validation. 2.Please ... read more
Q5. What is REST API? And the difference between GET, PUT, POST, DELE ... 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:
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 Resume 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:
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 Resume 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)

 Lead Engineer

 (2)

 Test Lead

 (1)

 Senior Lead

 (1)

 Team Lead

 (1)

 Technical Support Engineer

 (2)

 Associate Technical Project Manager

 (1)

Interview questions from similar companies

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

Interview Questionnaire 

1 Question

  • Q1. Basic communication skills were tested. Sone techical questn too. Versant test is mandatory

Interview Preparation Tips

Interview preparation tips for other job seekers - Please never go for these third party vendors. They misguide you regarding profile . I went for this third party vendor named savantis solution and it really misguided me

I applied via LinkedIn and was interviewed in Sep 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. What happens if there is finally block inside an exception block?
  • Ans. 

    Finally block will always execute, even if an exception is thrown in the try or catch block.

    • Finally block is used to execute code that must always run, regardless of whether an exception was thrown or not.

    • If an exception is thrown in the try or catch block, the finally block will still execute.

    • Finally block is often used to release resources like file handles, database connections, etc.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - There were two rounds of technical discussion. First round took around 45 mins which mainly concentrated on Django related concepts. Second round was the customer interaction and the questions were mostly the scenario based and it was asked on Python concepts. Both the rounds carried its own weight. The key to clear any interview is "Be strong in your basics".

Skills evaluated in this interview

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

Interview Questionnaire 

4 Questions

  • Q1. Lifecycle methods of Angular
  • Ans. 

    Angular has several lifecycle methods that are called at different stages of a component's life.

    • ngOnInit() - called after the component is initialized

    • ngOnChanges() - called when the component's input properties change

    • ngDoCheck() - called during every change detection cycle

    • ngAfterViewInit() - called after the component's view has been initialized

    • ngOnDestroy() - called just before the component is destroyed

  • Answered by AI
  • Q2. What are pipes in angular?
  • Ans. 

    Pipes are a feature in Angular that allow for data transformation before displaying it in the view.

    • Pipes are used to format data in the view

    • They can be used to filter, sort, and transform data

    • Examples include the date pipe, currency pipe, and uppercase pipe

  • Answered by AI
  • Q3. How to do global error handling in angular?
  • Ans. 

    Global error handling in Angular can be done using ErrorHandler class.

    • Create a class that implements the ErrorHandler interface

    • Override the handleError() method to handle errors globally

    • Provide the ErrorHandler class in the providers array of AppModule

    • Use the error handling service to log errors or display error messages

  • Answered by AI
  • Q4. What are custom directives? What are their types? How to create with general example?
  • Ans. 

    Custom directives are a way to extend HTML with new attributes and functionality.

    • Types of custom directives are attribute, element, and class directives.

    • Attribute directives modify the behavior of existing HTML elements.

    • Element directives create new HTML elements.

    • Class directives modify the behavior of existing HTML elements based on their class.

    • To create a custom directive, use the directive() method of the AngularJS ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - 1. Be confident if you know the answers and frank if you don't.
2. Try to get your basics and core concepts to be clear clear.

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Apr 2021. There were 3 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. Oops
  • Q2. WebApi
  • Q3. C#
  • Q4. WCF

Interview Preparation Tips

Interview preparation tips for other job seekers - Nice

I applied via Campus Placement and was interviewed in Mar 2021. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. Introduction
  • Q2. Qualification, basic questions about customer service, empathy apology,how to handle angry customer..thats it

Interview Preparation Tips

Interview preparation tips for other job seekers - Just be fluent in English and Hindi ..
Give some good and creative answers that's all..😊.

Interview Questionnaire 

1 Question

  • Q1. Java c c++
Contribute & help others!
anonymous
You can choose to be anonymous

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. Technical questions and projects worked...read more
  3. Questions based on Technologies worked ...read more

Recently Viewed

DESIGNATION

INTERVIEWS

Wolters Kluwer

No Interviews

JOBS

Wolters Kluwer

No Jobs

SALARIES

Maintec Technologies

SALARIES

Maintec Technologies

SALARIES

Maintec Technologies

INTERVIEWS

Incedo

No Interviews

SALARIES

ZF Steering Gear

INTERVIEWS

Incedo

100 top interview questions

INTERVIEWS

Taylor & Francis

No Interviews

Tell us how to improve this page.

Incedo Technical Lead Interview Process

based on 5 interviews

3 Interview rounds

  • Resume Shortlist Round
  • Technical Round - 1
  • Technical Round - 2
View more
Incedo Technical Lead Salary
based on 586 salaries
₹9.3 L/yr - ₹38 L/yr
20% more than the average Technical Lead Salary in India
View more details

Incedo Technical Lead Reviews and Ratings

based on 76 reviews

3.3/5

Rating in categories

3.1

Skill development

3.4

Work-life balance

3.4

Salary

2.8

Job security

3.3

Company culture

3.0

Promotions

2.9

Work satisfaction

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

₹0 L/yr - ₹0 L/yr

Software Engineer
881 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Technical Lead
586 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Associate
283 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Technical Lead
283 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Incedo with

TCS

3.7
Compare

Infosys

3.6
Compare

Wipro

3.7
Compare

HCLTech

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