Upload Button Icon Add office photos

Incedo

Compare button icon Compare button icon Compare

Filter interviews by

Incedo Team Lead Interview Questions and Answers

Updated 11 May 2024

Incedo Team Lead Interview Experiences

1 interview found

Team Lead Interview Questions & Answers

user image Anonymous

posted on 11 May 2024

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

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

Round 1 - One-on-one 

(1 Question)

  • Q1. API architectures

Interview questions from similar companies

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

Some mcq questions and coding question. Both where easy to medium level. Prepare combination/permutation/Time complexity etc

Round 2 - Coding Test 

A question related to Binary search and some other follow ups.

Associate Interview Questions & Answers

CitiusTech user image Kshitija Bagul

posted on 10 Sep 2024

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 Sep 2023. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Explain random forest
  • Ans. 

    Random forest is an ensemble learning method that builds multiple decision trees and merges them to improve accuracy and prevent overfitting.

    • Random forest is a type of ensemble learning method.

    • It builds multiple decision trees during training.

    • Each tree is built using a subset of the training data and a random subset of features.

    • The final prediction is made by averaging the predictions of all the individual trees.

    • Random...

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

    Boosting is a machine learning ensemble technique where multiple weak learners are combined to create a strong learner.

    • Boosting is an iterative process where each weak learner is trained based on the errors of the previous learners.

    • Examples of boosting algorithms include AdaBoost, Gradient Boosting, and XGBoost.

    • Boosting is used to improve the accuracy of models and reduce bias and variance.

  • Answered by AI

Skills evaluated in this interview

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

I appeared for an interview before Feb 2024.

Round 1 - Assignment 

Basic speaking test, english

Round 2 - Technical 

(1 Question)

  • Q1. What is your analysis of the graphs?
  • Ans. 

    The graphs show a steady increase in sales over the past year.

    • Sales have been consistently rising month over month.

    • There was a significant spike in sales during the holiday season.

    • The overall trend is positive and indicates growth in the business.

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Org fit check questions

I applied via Referral and was interviewed before Jan 2021. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Explain OOPs concepts using real life example?
  • Ans. 

    OOPs concepts are used in real life to model objects and their behavior.

    • Encapsulation: A car's engine is encapsulated and can only be accessed through specific methods.

    • Inheritance: A sports car is a type of car that inherits properties and methods from the car class.

    • Polymorphism: A person can be a student, teacher, or employee, each with their own unique behavior.

    • Abstraction: A TV remote has buttons that abstract the c...

  • Answered by AI
  • Q2. Internal working of Hashmap?
  • Ans. 

    Hashmap is a data structure that stores key-value pairs and uses hashing to locate values based on their keys.

    • Hashmap uses an array of linked lists to store key-value pairs.

    • The hash function is used to convert the key into an index of the array.

    • If two keys have the same hash value, they are stored in the same linked list.

    • Hashmap provides constant time complexity for insertion, deletion, and retrieval of values.

    • Java's H...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Basic knowledge of core concepts will be a good to have.

Skills evaluated in this interview

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

I appeared for an interview in Jun 2024.

Round 1 - HR 

(1 Question)

  • Q1. General hr questions
Round 2 - Technical 

(1 Question)

  • Q1. Ab initio questions
Round 3 - One-on-one 

(1 Question)

  • Q1. With the project manager
Round 4 - Client Interview 

(1 Question)

  • Q1. Overall experience and technical questions
Round 5 - HR 

(1 Question)

  • Q1. Final salary and other talks
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. General technical questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Never joined here,these company recruiters the employees for time-being,they fire you any time.
Managements so burst,totally biased towards…..
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
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed in Jun 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 - One-on-one 

(3 Questions)

  • Q1. Print greater number using lambda function
  • Ans. 

    Use lambda function to print greater number

    • Define a lambda function that takes two parameters

    • Use the max() function inside the lambda to compare the two numbers

    • Call the lambda function with two numbers to print the greater one

  • Answered by AI
  • Q2. Explain OOPs concepts
  • Ans. 

    OOPs concepts refer to Object-Oriented Programming principles like inheritance, encapsulation, polymorphism, and abstraction.

    • Inheritance: Allows a class to inherit properties and behavior from another class.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit.

    • Polymorphism: Ability to present the same interface for different data types.

    • Abstraction: Hiding the complex implementation detail

  • Answered by AI
  • Q3. All major C++ topics were covered
Round 3 - One-on-one 

(2 Questions)

  • Q1. Singleton design pattern
  • Q2. Code for Fibonacci series -- both iterative and recursive
  • Ans. 

    Fibonacci series code in iterative and recursive methods

    • Iterative method: Use a loop to calculate Fibonacci numbers

    • Recursive method: Define a function that calls itself to calculate Fibonacci numbers

    • Example for iterative method: int fib(int n) { int a = 0, b = 1, c; for(int i = 2; i <= n; i++) { c = a + b; a = b; b = c; } return b; }

    • Example for recursive method: int fib(int n) { if(n <= 1) return n; return fib(n-1) + f

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

(2 Questions)

  • Q1. Print 1-10 using 2 threads, in correct order
  • Ans. 

    Use two threads to print numbers 1-10 in correct order

    • Create two threads, one for printing odd numbers and one for printing even numbers

    • Use synchronization mechanisms like mutex or semaphore to ensure correct order

    • Example: Thread 1 prints 1, 3, 5, 7, 9 and Thread 2 prints 2, 4, 6, 8, 10

  • Answered by AI
  • Q2. How to do Unit testing in C++
  • Ans. 

    Unit testing in C++ involves writing test cases for individual units of code to ensure they work as expected.

    • Use a unit testing framework like Google Test or Catch2 to write and run test cases

    • Create separate test files for each unit of code being tested

    • Use assertions to check the expected behavior of the code under test

    • Mock dependencies or use dependency injection to isolate units for testing

    • Run tests regularly to catc

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Iris Software Technical Lead interview:
  • Multithreading
Interview preparation tips for other job seekers - Nice interview process, helpful recruiters.

Skills evaluated in this interview

Interview experience
4
Good
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 

(1 Question)

  • Q1. SCD, PDL Conduct>IT Basic partitioning scenarios
Round 3 - Technical 

(1 Question)

  • Q1. Mostly Client round , technical questions
Round 4 - HR 

(1 Question)

  • Q1. Salary discussion and basic details

Interview Preparation Tips

Interview preparation tips for other job seekers - Basic Abinitio concepts should be clear.
No Advance skills required.
Questions from Conduct>IT
And basic Abinitio scenarios

Incedo Interview FAQs

How many rounds are there in Incedo Team Lead interview?
Incedo interview process usually has 1 rounds. The most common rounds in the Incedo interview process are One-on-one Round.
How to prepare for Incedo Team 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 Team Leading, People Management, Team Management, Investment Banking and voice process.

Tell us how to improve this page.

Incedo Team Lead Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more
Incedo Team Lead Salary
based on 79 salaries
₹6 L/yr - ₹23 L/yr
49% more than the average Team Lead Salary in India
View more details

Incedo Team Lead Reviews and Ratings

based on 14 reviews

3.2/5

Rating in categories

2.7

Skill development

3.3

Work-life balance

3.1

Salary

3.0

Job security

3.2

Company culture

2.9

Promotions

2.9

Work satisfaction

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

₹6.5 L/yr - ₹26.2 L/yr

Software Engineer
911 salaries
unlock blur

₹3.2 L/yr - ₹12.7 L/yr

Technical Lead
588 salaries
unlock blur

₹9.3 L/yr - ₹38 L/yr

Associate
284 salaries
unlock blur

₹3 L/yr - ₹6 L/yr

Senior Technical Lead
283 salaries
unlock blur

₹14.8 L/yr - ₹40 L/yr

Explore more salaries
Compare Incedo with

CitiusTech

3.4
Compare

Bounteous x Accolite

3.4
Compare

Altimetrik

3.8
Compare

Xoriant

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