Upload Button Icon Add office photos

Incedo

Compare button icon Compare button icon Compare

Filter interviews by

Incedo Software Developer Intern Interview Questions and Answers

Updated 1 Nov 2022

Incedo Software Developer Intern Interview Experiences

1 interview found

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

Round 1 - Aptitude Test 

There was apti round with good apti questions and also code debugging

Round 2 - Technical 

(3 Questions)

  • Q1. About polymorphism ,code polymorphism and inheritance
  • Ans. Coded it in cpp in notepad
  • Answered Anonymously
  • Q2. 3 apti question and also discussion on resume
  • Q3. Angle between hands of clock on 10:25? Trains traveling towards eachother give speed where will they collide?
  • Ans. 

    Angle between hands of clock at 10:25 is 147.5 degrees. Trains will collide at midpoint of their initial positions.

    • To calculate angle between hands of clock, use formula: |(30*H)-(11/2)*M|

    • For 10:25, H=10 and M=25, so angle = |(30*10)-(11/2)*25| = 147.5 degrees

    • When two trains are traveling towards each other, their relative speed is added to get the collision speed.

    • The collision point is the midpoint of their initial po...

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. General resume based
  • Q2. Strength and weakness

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident it depends on interviewer what he would ask

Interview questions from similar companies

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

I applied via Campus Placement and was interviewed in Jun 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Technical MCQ questions on core computer science subjects were asked.

Round 2 - One-on-one 

(2 Questions)

  • Q1. How to find whether the given linked list has loop in it?
  • Q2. Explain osi model with example of browser.
Interview experience
3
Average
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Google updates and was interviewed before Oct 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 tips
Round 2 - Technical 

(1 Question)

  • Q1. There are three technical rounds one round will be tough
Round 3 - HR 

(2 Questions)

  • Q1. They didn't ask me anything
  • Q2. Will give U false promises and showoff about the company

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well for DSA , but with that knowledge try for any product based company not only one in limelight you can try any other but not Accolite, because though you clear all those 3 rounds and get hired , there is nothing in this company other than false promises and mere showoff. They are either terminating or extending the internship for of no reason amid doing projects, and also you will not get the work you are trained and desired for , they will use U for QA testing rather being hired as developer
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. .Net Core 7 & MVC

I was interviewed in Mar 2022.

Round 1 - Coding Test 

(1 Question)

Round duration - 60 minutes
Round difficulty - Medium

Mcq + Data structures questions

  • Q1. 

    Maximum Sum Subarray Problem Statement

    Given an array of integers, find the maximum sum of any contiguous subarray within the array.

    Example:

    Input:
    array = [34, -50, 42, 14, -5, 86]
    Output:
    137
    Exp...
  • Ans. Brute Force Approach
    1. Create a nested loop. The outer loop will go from i = 0 to i = n - k. This will cover the starting indices of all k-subarrays
    2. The inner loop will go from j = i to j = i + k - 1. This will cover all the elements of the k-subarray starting from index i
    3. Keep track of the maximum element in the inner loop and print it.
    Space Complexity: O(1)Explanation:

    O(1) because the extra space being used (looping vari...

  • Answered Anonymously
Round 2 - Video Call 

(1 Question)

Round duration - 70 minutes
Round difficulty - Medium

Standard System Design round

  • Q1. Design a Doctor Appointment System and provide some test cases.
  • Ans. 

    Tip 1 : Implement using OOPs 
    Tip 2 : Try to tell your approach to the interviewer as much as you can side by side

  • Answered Anonymously
Round 3 - Video Call 

(4 Questions)

Round duration - 90 minutes
Round difficulty - Medium

Interview of DSA + OOPS + Databse(SQL query) + Operating System

  • Q1. 

    Left View of a Binary Tree

    Given a binary tree, your task is to print the left view of the tree. The left view of a binary tree contains the nodes visible when the tree is viewed from the left side.

    Inpu...

  • Ans. Recursive Approach

    This problem can be solved through recursion.We will maintain max_level variable which will keep track of maxLevel and will pass current level in recursion as argument. Whenever we see a node whose current level is more than maxLevel then we will print that node as that will be first node for that current level. Also update maxLevel with current level.

    Space Complexity: O(n)Explanation:

    O(N), where ‘N’...

  • Answered Anonymously
  • Q2. What is the difference between CHAR and VARCHAR2 data types in SQL?
  • Q3. What are the various types of constructors in C++?
  • Q4. What is the difference between overloading and overriding?
Round 4 - HR 

(1 Question)

Round duration - 60 minutes
Round difficulty - Easy

Hr round - normal hr questions + situational 

Thoughtworks community discussion

  • Q1. Why should we hire you?
  • Ans. 

    Tip 1 : Read all Thoughtworks community page and be honest


    Tip 2 : Be open-minded and answer whatever you are thinking, in these rounds I feel it is important to have opinion.


    Tip 3 : The cross-questioning can go intense sometimes, think before you speak.

  • Answered Anonymously

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in GurgaonEligibility criteriaAbove 7 CGPAThought Works interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, System Design, Aptitude, OOPSTime required to prepare for the interview - 4 monthsInterview preparation tips for other job seekers

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.

Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.

Tip 3 : Do at-least 2 good projects and you must know every bit of them.


 

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.

Tip 2 : Every skill must be mentioned.

Tip 3 : Focus on skills, projects and experiences more.


 

Final outcome of the interviewSelected

Skills evaluated in this interview

I applied via Recruitment Consulltant and was interviewed in Jan 2022. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Design Patters, C#, SOLID Principles
Round 2 - Technical 

(1 Question)

  • Q1. Design Patterns,C#,SOLID Principles
Round 3 - Technical 

(1 Question)

  • Q1. Application Architecture, Coding Standards

Interview Preparation Tips

Interview preparation tips for other job seekers - Round 1 and 2 were all related to my skillset and it was really good.
Round 3 was taken by some guy who was 10 minutes late to the interview and was pretentious. He was asking questions which arent in my skillset and was a total waste of time. He was reading the resume as we were talking during the interview.

Make sure to react if someone is being arrogant to you as we are also spending effort when attending the interview.

I applied via LinkedIn and was interviewed in Sep 2021. There were 4 interview rounds.

Round 1 - Coding Test 

There were 4 sections-
1.Big data-some multiple choice questions
2.Python-2 basic programming questions
3.SQL-4 case questions on SQL queries
4.Pyspark-Basic multiple choice questions

Round 2 - Coding Test 

Same as round 1 but there were no multiple choice questions,it was a subjective paper where they check your thought process and your approach.

Round 3 - Technical 

(1 Question)

  • Q1. Technical interview was based on -Your project discussion -Big data terminologies,Spark framework,working and architecture -Some case study questions and how you could have optimized it. -SQL basic querie...
Round 4 - HR 

(4 Questions)

  • Q1. Share details of your previous job.
  • Q2. Why are you looking for a change?
  • Q3. What are your salary expectations?
  • Q4. Tell me about yourself.

Interview Preparation Tips

Topics to prepare for Tiger Analytics Senior Software Engineer interview:
  • Pyspark
  • Spark
  • Azure data factory
  • SQL
  • Python
  • Big data
Interview preparation tips for other job seekers - Just focus on spark,big data terminologies and architecture,spark architecture,SQL queries,Python basics,Azure data factory terminologies

I applied via Naukri.com and was interviewed in Jul 2021. There were 5 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Basic Java questions asked in technical round and behavioural questions and some of the technical questions asked in managerial round
  • Q2. All Oops concepts is important

Interview Preparation Tips

Interview preparation tips for other job seekers - Be calm and Chase your goals, everything is possible if you prepared well.

I applied via Naukri.com and was interviewed in Sep 2021. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. In depth concepts of selenium and java.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be strong with the basic fundamentals and make sure you have complete idea on the skills that you have mentioned in your resume.

I applied via Recruitment Consultant and was interviewed in Oct 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Da and algorithm related questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Always be confident while answering and be strong in basics

Incedo Interview FAQs

How many rounds are there in Incedo Software Developer Intern interview?
Incedo interview process usually has 4 rounds. The most common rounds in the Incedo interview process are Resume Shortlist, Aptitude Test and Technical.
What are the top questions asked in Incedo Software Developer Intern interview?

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

  1. Angle between hands of clock on 10:25? Trains traveling towards eachother give ...read more
  2. About polymorphism ,code polymorphism and inherita...read more
  3. 3 apti question and also discussion on res...read more

Tell us how to improve this page.

Incedo Software Developer Intern Salary
based on 4 salaries
₹5 L/yr - ₹7.8 L/yr
15% more than the average Software Developer Intern Salary in India
View more details
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