Upload Button Icon Add office photos

Incedo

Compare button icon Compare button icon Compare

Filter interviews by

Clear (1)

Incedo Software Developer Trainee Interview Questions and Answers

Updated 28 Jan 2025

Incedo Software Developer Trainee Interview Experiences

4 interviews found

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

I was interviewed in Dec 2024.

Round 1 - Aptitude Test 

It consistered of multiple section including mental ability and English

Round 2 - Coding Test 

It was an easy question I was asked to write one easy dsa in anuy language

Round 3 - HR 

(1 Question)

  • Q1. Tell about your project
  • Ans. 

    Developed a web application for online shopping

    • Used HTML, CSS, and JavaScript for front-end development

    • Implemented a RESTful API using Node.js and Express for back-end

    • Integrated payment gateway for secure transactions

  • Answered by AI
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Aug 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

Reasoning, English grammar

Round 2 - Coding Test 

Get the duplicate numbers, what is api, what is XML file

Round 3 - HR 

(1 Question)

  • Q1. About yourself, projects, where do you see yourself in 5 years

Software Developer Trainee Interview Questions Asked at Other Companies

Q1. 1. Tell me about your self 2. Difference Between c & c++. 3. ... read more
Q2. What is a static keyword in java? Where are the static variables ... read more
Q3. 1.Do you use social media? What is the use of it? 2.Tell us about ... read more
Q4. 2.You are given a chess board and the position of queen find the ... read more
asked in CodeAegis
Q5. 4 pills are medicine, in which 2 pills for fever and 2 pills for ... read more
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Jan 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 Resume tips
Round 2 - Aptitude Test 

First round is written test which consists of Aptitude, verbal, coding question.

Round 3 - Technical 

(1 Question)

  • Q1. Intro do one try have two catches?(yes) Merge sort for given example
  • Ans. 

    Yes, one try can have two catches in a try-catch block.

    • A try block can have multiple catch blocks to handle different types of exceptions.

    • The catch blocks are executed in the order they are written.

    • If an exception is caught in the first catch block, the subsequent catch blocks are not executed.

    • Example: try { //code } catch (ExceptionType1 e) { //handle exception } catch (ExceptionType2 e) { //handle exception }

  • Answered by AI
Round 4 - HR 

(1 Question)

  • Q1. Behavioural questions .

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared, easy interview, i didnt prepare well for this, gave with the knowledge i had.

I applied via Campus Placement and was interviewed in Apr 2022. There were 3 interview rounds.

Round 1 - Aptitude Test 

There was normal apti questions ( quantitative, verbal, reasoning) and codes were given in which we have to correct error and run the code, and then there was behavioural questions

Round 2 - Technical 

(1 Question)

  • Q1. Introduction Project discussion Oops concept ( method overriding) DBMS ( normalization, 3rd NF, Indexing) Triggers Code - Fibonacci
Round 3 - HR 

(1 Question)

  • Q1. Intro Project discussion What u expect from organization Why incedo Strength and weakness And some behavioral questions

Interview Preparation Tips

Topics to prepare for Incedo Software Developer Trainee interview:
  • DBMS
  • OOPS
  • SQL
  • DSA
Interview preparation tips for other job seekers - Prepare basic coding, sorting and searching algos, DBMS , OOPs concept, SQL and do 1 project on any technology

Incedo interview questions for designations

 Software Engineer Trainee

 (10)

 Software Developer

 (9)

 Software Developer Intern

 (1)

 Trainee Software Engineer II

 (1)

 Developer

 (1)

 Software Engineer

 (28)

 Java Developer

 (2)

 Embedded Developer

 (1)

Interview questions from similar companies

I was interviewed before Sep 2020.

Round 1 - Coding Test 

(1 Question)

Round duration - 140 minutes
Round difficulty - Medium

Test timing was at 2:00 pm , it was conducted in a college and the environment was good for the test. Camera was a primary part of test, so no suspicious activity.

  • Q1. 

    Sum of Two Numbers Represented as Arrays

    Given two numbers in the form of two arrays where each element of the array represents a digit, calculate the sum of these two numbers and return this sum as an ar...

  • Ans. 

    Given two numbers represented as arrays, calculate their sum and return the result as an array.

    • Iterate through the arrays from right to left, adding digits and carrying over if necessary

    • Handle cases where one array is longer than the other by considering the remaining digits

    • Ensure the final sum array does not have any leading zeros

  • Answered by AI
Round 2 - Face to Face 

Round duration - 20 minutes
Round difficulty - Easy

The round was conducted at around 12 p.m. I was called at the college location and then it was conducted. The interviewer was quite polite and frank.

Round 3 - HR 

Round duration - 8 minutes
Round difficulty - Easy

This round was conducted right after finishing and clearing the technical round at the same place and on the same day.

Interview Preparation Tips

Eligibility criteriaAbove 60 %Wipro Limited interview preparation:Topics to prepare for the interview - OOPS, Data Structures, Database Concepts, Coding problemsTime required to prepare for the interview - 2-3 monthsInterview preparation tips for other job seekers

Tip 1 : Practice atleast 2-3 Coding problems daily so your logic building becomes stronger.
Tip 2 : Exercise problems based on OOPS concepts and others too.
Tip 3 : If you can have your own project built, then it's the major point and will act as a plus point.

Application resume tips for other job seekers

Tip 1 : Your resume should be in standard form, short and simple will be more effective.
Tip 2 : Whatever you have learned, you need to mention it in your resume as that will be your primary source of selection and having project on your resume is important.

Final outcome of the interviewSelected

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Jul 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. SOLID principals, oops, c# basics, SQL server, azure, design pattern

Interview Preparation Tips

Interview preparation tips for other job seekers - Clear basics of oops and design pattern

I applied via Job Portal and was interviewed before Apr 2021. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Solid principles in c#
  • Ans. 

    Solid principles are a set of design principles for writing maintainable and scalable code in C#.

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

    • Open/Closed Principle (OCP) - a class should be open for extension but closed for modification

    • Liskov Substitution Principle (LSP) - derived classes should be substitutable for their base classes

    • Interface Segregation Principle (ISP) - client...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - good company for freshers as well as beginners

Skills evaluated in this interview

I applied via Campus Placement and was interviewed before Feb 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Hr

Interview Preparation Tips

Interview preparation tips for other job seekers - You should be true to what you are putting before the interviewer . Try to put your ideas Add something you did well in your career like in projects /research which you know very well and versed in concepts about it for open interview so that interviewer can get bandwidth where he can ask questions from. This is simply a key .

I applied via Campus Placement and was interviewed in Dec 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. 1.Describe a situation where you have taken a quick decision and failed, and a situation where you succeeded. 2. What is a skill you have tried to achieve but failed? 3. Describe a decision you have taken ...

Interview Preparation Tips

Interview preparation tips for other job seekers - 1. Always try to take risk in small problems . When you face the consequences, you would be able to tackle bigger problems.
2. Every skill you learn, even if you didn't excel in it is not to be considered a waste of time/failure, you learn something simply by participating.

Interview Questionnaire 

1 Question

  • Q1. HTML, CSS, BOOTSTRAP, PHP. SQL
Contribute & help others!
anonymous
You can choose to be anonymous

Incedo Interview FAQs

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

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

  1. Intro do one try have two catches?(yes) Merge sort for given exam...read more
  2. Introduction Project discussion Oops concept ( method overriding) DBMS ( norma...read more
  3. Behavioural question...read more

Recently Viewed

JOBS

Browse jobs

Discover jobs you love

COMPANY BENEFITS

KNR Constructions

20 benefits

COMPANY BENEFITS

IRB Infrastructure

60 benefits

COMPANY BENEFITS

Dilip Buildcon

304 benefits

COMPANY BENEFITS

Dilip Buildcon

304 benefits

INTERVIEWS

BYJU'S

No Interviews

INTERVIEWS

Cognizant

No Interviews

INTERVIEWS

BHEL

No Interviews

INTERVIEWS

HLS Asia

No Interviews

INTERVIEWS

SG Analytics

No Interviews

Tell us how to improve this page.

Incedo Software Developer Trainee Interview Process

based on 3 interviews

Interview experience

4.3
  
Good
View more
Incedo Software Developer Trainee Salary
based on 15 salaries
₹5 L/yr - ₹7 L/yr
65% more than the average Software Developer Trainee Salary in India
View more details

Incedo Software Developer Trainee Reviews and Ratings

based on 1 review

4.0/5

Rating in categories

4.0

Skill development

4.0

Work-life balance

4.0

Salary

3.0

Job security

3.0

Company culture

4.0

Promotions

3.0

Work satisfaction

Explore 1 Review and Rating
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
Rate your experience using AmbitionBox
Terrible
Terrible
Poor
Poor
Average
Average
Good
Good
Excellent
Excellent