Upload Button Icon Add office photos

Incedo

Compare button icon Compare button icon Compare

Filter interviews by

Incedo Software Engineer Trainee Interview Questions, Process, and Tips

Updated 24 Nov 2024

Top Incedo Software Engineer Trainee Interview Questions and Answers

Incedo Software Engineer Trainee Interview Experiences

10 interviews found

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

I applied via Naukri.com and was interviewed in Oct 2024. There were 4 interview rounds.

Round 1 - Aptitude Test 

Basic things.. same as any company

Round 2 - Coding Test 

Basic coding, 2 codes asked.

Round 3 - Technical 

(2 Questions)

  • Q1. Project discussion
  • Q2. Skills in my resule
  • Ans. 

    My skills include programming languages like Java, Python, and C++, as well as experience with databases and problem-solving.

    • Proficient in Java, Python, and C++ programming languages

    • Experience with databases such as MySQL and MongoDB

    • Strong problem-solving skills demonstrated through projects and coding challenges

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

(2 Questions)

  • Q1. Why incedo? Why job switch?
  • Ans. 

    Incedo offers exciting opportunities for growth and learning in the software engineering field. Job switch for new challenges and career advancement.

    • Incedo provides a dynamic work environment with cutting-edge technologies.

    • Opportunity to work on diverse projects and enhance skills.

    • Career growth prospects and learning opportunities at Incedo.

    • Desire for new challenges and professional development.

    • Alignment of career goal

  • Answered by AI
  • Q2. How re you useful for our organization

Interview Preparation Tips

Topics to prepare for Incedo Software Engineer Trainee interview:
  • Resume
Interview preparation tips for other job seekers - Be confident. Prepare basics very well.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Normal Leetcode easy to medium Question

Round 2 - Technical 

(2 Questions)

  • Q1. Leetcode easy - palindrome
  • Q2. Leetcode medium - second largest number
Round 3 - HR 

(1 Question)

  • Q1. Questions were around leadership

Software Engineer Trainee Interview Questions Asked at Other Companies

asked in HSBC Group
Q1. Palindromic Linked List Problem Statement Given a singly linked l ... read more
asked in HSBC Group
Q2. Search in a 2D Matrix Given a 2D matrix MAT of size M x N, where ... read more
asked in GlobalLogic
Q3. Slot Game Problem Statement You are given a slot machine with fou ... read more
Q4. 1. Explain oops and its 4 pillars 2. Explain polymorphism with re ... read more
asked in HSBC Group
Q5. Maximum Level Sum in a Binary Tree Given a Binary Tree with integ ... read more
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Remove errors from code snippet and aptitude

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

Basic questions on quants and reasoning and also includes 7 automate fix questions

Round 2 - Technical 

(1 Question)

  • Q1. 30 min technical interview basic coding questions
Round 3 - HR 

(2 Questions)

  • Q1. Fibonacci series, Armstrong number
  • Q2. General coding questions like hcl

Interview Preparation Tips

Interview preparation tips for other job seekers - It will be medium ranged interview

Incedo interview questions for designations

 Software Developer Trainee

 (4)

 Trainee Software Engineer II

 (1)

 Software Engineer

 (28)

 Senior Software Engineer

 (7)

 Associate Software Engineer

 (1)

 Software Development Engineer

 (1)

 Senior Software Engineer 2

 (1)

 Software Developer

 (9)

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Basic to medium dsa questions.

Round 2 - Technical 

(2 Questions)

  • Q1. Linkedlist insertion deletion
  • Q2. Array questions
Round 3 - HR 

(2 Questions)

  • Q1. Intro and goals
  • Q2. Aptitude question hcm lcf
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

AMCAT based 2 hour aptitude test

Round 2 - Technical 

(1 Question)

  • Q1. Resume based questions
Round 3 - HR 

(1 Question)

  • Q1. Generic HR questions along with technical overview questions from my resume
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

(1 Question)

  • Q1. Given Pseudo Code. We have to correct this code.

Interview Preparation Tips

Interview preparation tips for other job seekers - First Round was Online Test
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 - Aptitude Test 

Questions was in sections : logical, analytical, mathematical, technical, automata fix etc. Must take this test seriously because further rounds are very easy.

Round 3 - Technical 

(1 Question)

  • Q1. Intro sql query to print all unique values from table what are operations of stack data structure.
  • Ans. 

    SQL query to print all unique values from a table and operations of stack data structure.

    • For SQL query, use SELECT DISTINCT column_name FROM table_name.

    • Stack data structure operations include push, pop, peek, and isEmpty.

    • Example: SELECT DISTINCT city FROM customers;

    • Example: Pushing an element onto the stack: stack.push(5);

  • Answered by AI
Round 4 - HR 

(1 Question)

  • Q1. Typical hr questions were asked and dont lie tell them true hobbies only

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via campus placement at Maulana Azad National Institute of Technology (NIT), Bhopal and was interviewed before Feb 2023. There were 3 interview rounds.

Round 1 - Coding Test 

Easy coding test like string reverse anagrams

Round 2 - Technical 

(1 Question)

  • Q1. Basics like oops and simple coding questions
Round 3 - HR 

(1 Question)

  • Q1. Basic hr questions like what are your aspirations

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

Interview Questionnaire 

4 Questions

  • Q1. Oops-general theory questions C++
  • Q2. Palindrome number program in c++
  • Ans. 

    Palindrome number program in C++

    • A palindrome number is a number that remains the same when its digits are reversed

    • To check if a number is palindrome, we can compare the original number with its reverse

    • We can use a loop to reverse the number and then compare it with the original number

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

    Polymorphism is the ability of an object to take on many forms.

    • Polymorphism allows objects of different classes to be treated as if they are of the same class.

    • It can be achieved through method overloading or method overriding.

    • Example: A shape class can have different subclasses like circle, square, etc. and all can be treated as shapes.

    • Polymorphism helps in achieving code reusability and flexibility.

  • Answered by AI
  • Q4. What is abstraction
  • Ans. 

    Abstraction is the process of hiding complex implementation details and exposing only necessary information.

    • Abstraction allows us to focus on the essential features of an object or system.

    • It helps in reducing complexity and increasing efficiency.

    • Examples of abstraction include encapsulation, inheritance, and interfaces in object-oriented programming.

    • Abstraction is used in various fields such as software engineering, ma

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - All good.general tech interview questions.if u prepare moderately for tech interviews you should be good to go

Skills evaluated in this interview

Incedo Interview FAQs

How many rounds are there in Incedo Software Engineer Trainee interview?
Incedo interview process usually has 2-3 rounds. The most common rounds in the Incedo interview process are Technical, HR and Aptitude Test.
What are the top questions asked in Incedo Software Engineer Trainee interview?

Some of the top questions asked at the Incedo Software Engineer Trainee interview -

  1. intro sql query to print all unique values from table what are operations of st...read more
  2. Palindrome number program in ...read more
  3. What is polymorph...read more

Tell us how to improve this page.

Incedo Software Engineer Trainee Interview Process

based on 9 interviews

3 Interview rounds

  • Aptitude Test Round
  • Technical Round
  • HR Round
View more
Incedo Software Engineer Trainee Salary
based on 85 salaries
₹5 L/yr - ₹8 L/yr
39% more than the average Software Engineer Trainee Salary in India
View more details

Incedo Software Engineer Trainee Reviews and Ratings

based on 9 reviews

3.8/5

Rating in categories

3.4

Skill development

4.1

Work-life balance

3.7

Salary

4.2

Job security

4.2

Company culture

3.5

Promotions

3.8

Work satisfaction

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

₹6.5 L/yr - ₹23 L/yr

Software Engineer
883 salaries
unlock blur

₹3.2 L/yr - ₹13 L/yr

Technical Lead
584 salaries
unlock blur

₹9.3 L/yr - ₹38 L/yr

Senior Technical Lead
286 salaries
unlock blur

₹14.1 L/yr - ₹39.2 L/yr

Associate
267 salaries
unlock blur

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