Upload Button Icon Add office photos

Incedo

Compare button icon Compare button icon Compare

Filter interviews by

Incedo Interview Questions and Answers

Updated 21 May 2025
Popular Designations

118 Interview questions

A QA Engineer was asked
Q. What is encapsulation and loading process. Also write an code for reverse string
Ans. 

Encapsulation is the process of hiding internal implementation details and providing a public interface. Loading process refers to the steps involved in loading a program or data into memory.

  • Encapsulation helps in achieving data abstraction and information hiding.

  • It allows for better control over data and prevents unauthorized access.

  • Loading process involves steps like parsing, linking, and loading the program or ...

View all QA Engineer interview questions
A QA Engineer was asked
Q. What is encapsulation and loading process.also write an code for Reverse string
Ans. 

Encapsulation is the process of hiding internal details of an object and providing access only through defined methods.

  • Encapsulation helps in achieving data abstraction and data hiding.

  • It allows for better control over the data and prevents direct access to it.

  • Loading process refers to the process of loading a program or data into memory for execution.

  • Reverse string code example: function reverseString(str) { retu...

View all QA Engineer interview questions
A Software Engineer Trainee was asked
Q. 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);

View all Software Engineer Trainee interview questions
A Software Engineer was asked
Q. What is Event Loop? and how it works?
Ans. 

Event Loop is a mechanism in JavaScript that allows for asynchronous operations to be executed in a non-blocking way.

  • Event Loop is responsible for handling asynchronous operations in JavaScript.

  • It continuously checks the call stack for any functions that need to be executed.

  • If the call stack is empty, it checks the callback queue for any pending tasks.

  • It moves tasks from the callback queue to the call stack for ex...

View all Software Engineer interview questions
A Software Engineer was asked
Q. What is shadow DOM? what are synthetic Events? What is UNIT testing?
Ans. 

Shadow DOM is a way to encapsulate the styling and structure of a web component, synthetic events are events created by the browser to mimic real events, and unit testing is a method to test individual units or components of a software.

  • Shadow DOM allows for scoped styles and markup within a web component.

  • Synthetic events are events like 'click' or 'change' that are created by the browser to simulate user interacti...

View all Software Engineer interview questions
A Project Manager was asked
Q. What is database and scaling
Ans. 

Database is a structured collection of data, scaling refers to increasing capacity to handle more data or users.

  • Database is a structured collection of data organized for easy access, retrieval, and management

  • Scaling refers to the ability of a system to handle increased workload or growth

  • Scaling can involve adding more servers, increasing storage capacity, or optimizing performance

  • Examples of scaling in databases i...

View all Project Manager interview questions
A Senior Financial Analyst was asked
Q. How you do forecasting. Which excel functions do you use
Ans. 

I use various excel functions for forecasting such as TREND, FORECAST, and GROWTH.

  • I analyze historical data to identify trends and patterns

  • I use functions like TREND to project future values based on historical data

  • I use functions like FORECAST to estimate future values based on existing data

  • I use functions like GROWTH to project future values based on exponential growth

  • I also use other statistical functions like ...

View all Senior Financial Analyst interview questions
Are these interview questions helpful?
A Software Developer Trainee was asked
Q. 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 }

View all Software Developer Trainee interview questions
A Senior Software Engineer was asked
Q. Write code reverse link list ..? Write code to convert digital to binary format ?
Ans. 

Code to reverse a linked list and convert digital to binary format.

  • Create a new linked list and traverse the original list, adding each node to the beginning of the new list

  • To convert digital to binary, use the built-in function or write a function to divide the number by 2 and store the remainder in a stack until the quotient is 0, then pop the stack to get the binary representation

View all Senior Software Engineer interview questions
A Software Developer Intern was asked
Q. 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 initi...

View all Software Developer Intern interview questions

Incedo Interview Experiences

193 interviews found

Director Interview Questions & Answers

user image Anonymous

posted on 24 Feb 2025

Interview experience
1
Bad
Difficulty level
Hard
Process Duration
4-6 weeks
Result
No response

I appeared for an interview in Jan 2025.

Round 1 - Coding Test 

Find bug in snippet. Code snippet writing.

Round 2 - Technical 

(1 Question)

  • Q1. Coding concepts , best practices
Round 3 - Technical 

(1 Question)

  • Q1. Design pattern and app design
Round 4 - One-on-one 

(1 Question)

  • Q1. Project management
Round 5 - Behavioral 

(1 Question)

  • Q1. Job profile , Family question
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Recruitment Consulltant and was interviewed in Nov 2024. There were 4 interview rounds.

Round 1 - Assignment 

Some basic testing questions

Round 2 - Technical 

(2 Questions)

  • Q1. Selenium waits, java oops , priority vs severity
  • Q2. Write a selenium code by using assertions
  • Ans. 

    Selenium code using assertions verifies web application functionality through automated tests.

    • Use WebDriver to initialize the browser: `WebDriver driver = new ChromeDriver();`

    • Navigate to a webpage: `driver.get('http://example.com');`

    • Locate elements using locators: `WebElement element = driver.findElement(By.id('elementId'));`

    • Use assertions to validate conditions: `Assert.assertEquals('Expected Text', element.getText())...

  • Answered by AI
Round 3 - Technical 

(2 Questions)

  • Q1. Write selenium code and execute on screen
  • Ans. 

    Selenium code automates web browser interactions for testing applications.

    • Import necessary libraries: 'from selenium import webdriver'

    • Initialize the WebDriver: 'driver = webdriver.Chrome()'

    • Open a webpage: 'driver.get('http://example.com')'

    • Locate elements: 'element = driver.find_element_by_name('q')'

    • Perform actions: 'element.send_keys('Selenium')'

    • Submit forms: 'element.submit()'

    • Close the browser: 'driver.quit()'

  • Answered by AI
  • Q2. Write an sql query and get the desired output on screen
  • Ans. 

    An SQL query retrieves data from a database based on specified criteria.

    • Use SELECT to specify columns to retrieve. Example: SELECT name, age FROM users;

    • Use WHERE to filter results. Example: SELECT * FROM orders WHERE status = 'shipped';

    • Use JOIN to combine rows from two or more tables. Example: SELECT users.name, orders.amount FROM users JOIN orders ON users.id = orders.user_id;

    • Use GROUP BY to aggregate data. Example: S...

  • Answered by AI
Round 4 - HR 

(2 Questions)

  • Q1. Salary expectations
  • Q2. Notice period related

Skills evaluated in this interview

Associate Interview Questions & Answers

user image Anonymous

posted on 1 Feb 2025

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

I appeared for an interview in Jan 2025.

Round 1 - HR 

(2 Questions)

  • Q1. Can you please introduce yourself?
  • Ans. 

    I am a highly motivated and detail-oriented individual with a background in finance and a passion for problem-solving.

    • Background in finance

    • Highly motivated and detail-oriented

    • Passionate about problem-solving

  • Answered by AI
  • Q2. Why are you seeking a job change?
  • Ans. 

    Seeking new challenges and opportunities for growth.

    • Looking for new challenges to expand my skills and knowledge

    • Seeking opportunities for career advancement

    • Interested in working in a different industry or with a different team

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

(2 Questions)

  • Q1. Can you describe your past professional experience?
  • Ans. 

    I have over 5 years of experience in marketing and sales roles, with a focus on digital marketing strategies.

    • Managed social media campaigns for a tech startup, increasing engagement by 30%

    • Developed email marketing campaigns for a retail company, resulting in a 20% increase in sales

    • Led a team of sales representatives to exceed quarterly targets by 15%

  • Answered by AI
  • Q2. What process did you follow while working on your last project?
  • Ans. 

    I followed a structured process involving research, planning, execution, and evaluation.

    • Researched the topic thoroughly to gather relevant information

    • Created a detailed plan outlining tasks and timelines

    • Executed the project according to the plan, making adjustments as needed

    • Evaluated the outcomes to identify successes and areas for improvement

  • Answered by AI
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is LMS ?
  • Ans. 

    LMS stands for Learning Management System, a software application for the administration, documentation, tracking, reporting, and delivery of educational courses or training programs.

    • LMS helps organizations deliver online courses and training programs to employees or students.

    • It allows for the creation and management of courses, assessments, and learning materials.

    • LMS can track learner progress, generate reports, and p...

  • Answered by AI
  • Q2. What is shadow DOM
  • Ans. 

    Shadow DOM is a way to encapsulate the styling and structure of a web component, preventing styles from leaking out or clashing with the rest of the page.

    • Shadow DOM allows for creating self-contained components with their own styles and markup

    • It helps in preventing styles from the main document affecting the component and vice versa

    • Shadow DOM can be created using the 'shadowRoot' property of an element

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. What all exceptions you know ?
  • Ans. 

    Some common exceptions in Salesforce development include DMLException, QueryException, and LimitException.

    • DMLException: Thrown when an error occurs while performing DML operations like insert, update, delete.

    • QueryException: Thrown when an error occurs while querying data from the database.

    • LimitException: Thrown when governor limits are exceeded, such as SOQL query limit or CPU time limit.

  • Answered by AI
  • Q2. Have you worked on integration ?
  • Ans. 

    Yes, I have worked on integration in Salesforce development.

    • I have experience integrating Salesforce with external systems using REST and SOAP APIs.

    • I have worked on integrating Salesforce with third-party applications like MailChimp and DocuSign.

    • I have implemented custom integrations using tools like Salesforce Connect and MuleSoft.

    • I have experience with data mapping, transformation, and synchronization during integrat...

  • Answered by AI
Round 3 - Technical 

(2 Questions)

  • Q1. Why governor limits ?
  • Ans. 

    Governor limits are in place to ensure efficient use of resources and prevent abuse in Salesforce platform.

    • Governor limits help in maintaining system performance and preventing monopolization of resources.

    • They ensure fair usage of resources among all users on the platform.

    • Examples include limits on number of records retrieved in a single query, number of SOQL queries executed, and CPU time consumed.

    • Governor limits also...

  • Answered by AI
  • Q2. What is challenge you faced ?
  • Ans. 

    One challenge I faced was integrating a third-party API with Salesforce.

    • Had to understand the API documentation thoroughly

    • Encountered compatibility issues with Salesforce platform

    • Implemented custom code to bridge the gap between API and Salesforce

  • Answered by AI

Skills evaluated in this interview

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

I applied via Recruitment Consulltant and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - Technical 

(3 Questions)

  • Q1. Asked about information power centre
  • Q2. Asked about sql
  • Q3. Asked about my self
Round 2 - One-on-one 

(2 Questions)

  • Q1. Sql logical questions
  • Q2. Previous company experience

Interview Preparation Tips

Interview preparation tips for other job seekers - Had a great experience
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
1
Bad
Difficulty level
-
Process Duration
-
Result
No response
Round 1 - Coding Test 

It was medium level java coding questions along with springboot, mcqs

Round 2 - Technical 

(2 Questions)

  • Q1. ArrayList vs LinkedList
  • Ans. 

    ArrayList is better for random access and LinkedList is better for frequent insertions and deletions.

    • ArrayList uses dynamic array to store elements, allowing fast random access but slower insertions and deletions.

    • LinkedList uses doubly linked list to store elements, allowing fast insertions and deletions but slower random access.

    • Example: Use ArrayList when you need to frequently access elements by index. Use LinkedList...

  • Answered by AI
  • Q2. HashMap working
  • Ans. 

    HashMap is a data structure in Java that stores key-value pairs and allows fast retrieval of values based on keys.

    • HashMap is part of the Java Collections framework.

    • It allows null keys and values.

    • HashMap does not maintain insertion order.

    • Example: HashMap<String, Integer> map = new HashMap<>();

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - I would say this company is full of fraudster specially their HR ' Anurita Bisht' she is very unprofessional, non ethical, and stupid i would say. I had cleared all their rounds inspite of that didn't hear back for managerial round there was drive happend for that where 6-7 candidates got selected after that they didn't provide any further update on MR round and for HR discussion.
This was very unprofessional that you guys conduct drive and didn't provide any update even after the selection. Totally waste of time specially their HRs are worst no response on call or emails.

I think this company is full of jokers and they made joke with job seekers candidate they have speciality in wasting canddates valuable time. I think legal action should be taken against such type of worst organization and HRs like Anurita Bisht (if I would say any worst word exist then she deserve that).

Very terrible experience i had, if you guys want to save your time and carrier please don't ever attend their interviews or drives these jokers will feel you worst moments.

Skills evaluated in this interview

Interview experience
2
Poor
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Coding Test 

Online zoom coding test will be there - 4 questions - 2 about output of code & 2 about technical questions.

Round 2 - Technical 

(2 Questions)

  • Q1. Polymorphism and explain about virtual polymorphism
  • Ans. 

    Polymorphism is the ability of a single function or method to operate on different types of data.

    • Polymorphism allows objects of different classes to be treated as objects of a common superclass.

    • Virtual polymorphism is achieved through virtual functions in C++.

    • Virtual functions allow a function in a base class to be overridden in a derived class.

    • Example: Animal class with virtual function 'makeSound' overridden in Dog a...

  • Answered by AI
  • Q2. Write code for virtual polymorphism and explain
  • Ans. 

    Virtual polymorphism allows objects of different classes to be treated as objects of a common superclass.

    • Create a base class with virtual functions

    • Create derived classes that override the virtual functions

    • Use pointers or references of the base class to call the overridden functions

  • Answered by AI
Round 3 - HR 

(3 Questions)

  • Q1. About yourself should explain
  • Q2. Reason for job change
  • Ans. 

    I seek new challenges and opportunities for growth that align with my career goals and aspirations in software development.

    • Career Growth: I'm looking for a position that offers more opportunities for advancement, such as leading projects or mentoring junior developers.

    • Skill Development: I want to work with new technologies and frameworks that will enhance my skill set, like transitioning from Java to modern cloud techn...

  • Answered by AI
  • Q3. Salary negotiations and location

Interview Preparation Tips

Interview preparation tips for other job seekers - I have interviewed for c++ developer role in incedo company - please make sure you are completely aware of every functions and keywords relate to c++ concepts.

Skills evaluated in this interview

Fund Accountant Interview Questions & Answers

user image Narayan Giram

posted on 19 Jan 2025

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
-

I applied via Recruitment Consulltant and was interviewed in Dec 2024. There was 1 interview round.

Round 1 - HR 

(3 Questions)

  • Q1. HR round was good
  • Q2. Manager round was also good
  • Q3. The third round of my interview was focused on operations, during which the manager asked me two questions: first, "Why are you pursuing this job?" and second, "If you are not fulfilling your role, what im...
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - HR 

(2 Questions)

  • Q1. Private equity, hedge fund, alternative investments, concepts of finance and wealth management.
  • Q2. All are mentioned

Interview Preparation Tips

Interview preparation tips for other job seekers - Be ready with wealth management topic on tips and all management fee, gp-lp, private equity and mutual fund and other fund examples. Their differences are must.

Top trending discussions

View All
Interview Tips & Stories
2w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about Incedo?
Ask anonymously on communities.

Incedo Interview FAQs

How many rounds are there in Incedo interview?
Incedo interview process usually has 2-3 rounds. The most common rounds in the Incedo interview process are Technical, HR and One-on-one Round.
How to prepare for Incedo 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 Investment Banking.
What are the top questions asked in Incedo interview?

Some of the top questions asked at the Incedo interview -

  1. DSA - Nth Fibonacci no with memoization, Find duplicate node in Linked list, Bi...read more
  2. What is Capital market, define debt securities, are you comfortable working in...read more
  3. Write a query to find out the 2nd largest salary from Employ...read more
What are the most common questions asked in Incedo HR round?

The most common HR questions asked in Incedo interview are -

  1. What are your strengths and weakness...read more
  2. What are your salary expectatio...read more
  3. Tell me about yourse...read more
How long is the Incedo interview process?

The duration of Incedo interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Overall Interview Experience Rating

3.8/5

based on 158 interview experiences

Difficulty level

Easy 31%
Moderate 62%
Hard 7%

Duration

Less than 2 weeks 80%
2-4 weeks 15%
4-6 weeks 5%
View more

Interview Questions from Similar Companies

CitiusTech Interview Questions
3.3
 • 290 Interviews
Altimetrik Interview Questions
3.7
 • 240 Interviews
Xoriant Interview Questions
4.1
 • 213 Interviews
INDIUM Interview Questions
4.0
 • 198 Interviews
Globant Interview Questions
3.7
 • 183 Interviews
Iris Software Interview Questions
4.0
 • 178 Interviews
ThoughtWorks Interview Questions
3.9
 • 157 Interviews
Apexon Interview Questions
3.3
 • 150 Interviews
View all

Incedo Reviews and Ratings

based on 1.2k reviews

3.0/5

Rating in categories

2.9

Skill development

3.1

Work-life balance

3.1

Salary

2.8

Job security

2.9

Company culture

2.6

Promotions

2.8

Work satisfaction

Explore 1.2k Reviews and Ratings
Dot Net Backend Developer || 5-9 yrs || Chennai/Bangalore

Chennai,

Bangalore / Bengaluru

5-8 Yrs

Not Disclosed

Dot Net Fullstack Developer || 3-7 yrs || Bangalore

Bangalore / Bengaluru

3-7 Yrs

Not Disclosed

Explore more jobs
Senior Software Engineer
1.2k salaries
unlock blur

₹8.7 L/yr - ₹20.9 L/yr

Software Engineer
1k salaries
unlock blur

₹5.3 L/yr - ₹12.6 L/yr

Technical Lead
628 salaries
unlock blur

₹17.6 L/yr - ₹29.8 L/yr

Senior Technical Lead
284 salaries
unlock blur

₹21.8 L/yr - ₹39.1 L/yr

Associate
262 salaries
unlock blur

₹3 L/yr - ₹6 L/yr

Explore more salaries
Compare Incedo with

Xoriant

4.1
Compare

Photon Interactive

4.1
Compare

CitiusTech

3.3
Compare

Iris Software

4.0
Compare
write
Share an Interview