Upload Button Icon Add office photos

Filter interviews by

Incedo Interview Questions, Process, and Tips

Updated 19 Jan 2025

Top Incedo Interview Questions and Answers

View all 108 questions

Incedo Interview Experiences

Popular Designations

178 interviews found

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
Round 3 - Technical 

(2 Questions)

  • Q1. Write selenium code and execute on screen
  • Q2. Write an sql query and get the desired output on screen
Round 4 - HR 

(2 Questions)

  • Q1. Salary expectations
  • Q2. Notice period related

Test Engineer Interview Questions asked at other Companies

Q1. 1. What is the frame work u have worked and explain the framework with folder structure? 2. purely based on testing, different testing types like functional and non functional tests 3. real time scenarios like last min bugs before release? ... read more
View answer (4)
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

Salesforce Developer Interview Questions asked at other Companies

Q1. Write a trigger to update contact when accounts phone changed.
View answer (5)
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.

Software Engineer Trainee Interview Questions asked at other Companies

Q1. Palindromic Linked ListYou are given a singly Linked List of integers. Your task is to return true if the given singly linked list is a palindrome otherwise returns false. For example: The given linked list is 1 -> 2 -> 3 -> 2->... read more
View answer (4)

Incedo interview questions for popular designations

 Software Engineer

 (29)

 Associate

 (10)

 Software Engineer Trainee

 (10)

 Senior Associate

 (9)

 Software Developer

 (9)

 Senior Software Engineer

 (7)

 Investment Banking Associate

 (4)

 Technical Lead

 (4)

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 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

Senior Java Developer Interview Questions asked at other Companies

Q1. Delete Kth node From EndYou have been given a singly Linked List of 'N' nodes with integer data and an integer 'K'. Your task is to remove the Kth node from the end of the given Linked List. For example: The given linked list is 1 -&gt; 2 -... read more
View answer (4)

Get interview-ready with Top Incedo Interview Questions

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
  • 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

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray SumGiven an array of numbers, find the maximum sum of any contiguous subarray of the array. For example, given the array [34, -50, 42, 14, -5, 86], the maximum sum would be 137, since we would take elements 42, 14, -5, and ... read more
View answer (39)

Jobs at Incedo

View all
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 Incedo Senior Associate Interview Questions and Answers

Q1. Differentiate Mutual Fund, Hedge Fund, Private Equity
View answer (1)

Senior Associate Interview Questions asked at other Companies

Q1. On an average, how many invoices can you process in a day?
View answer (10)

Software Engineer interview

user image IT Destination

posted on 5 Jan 2022

Interview experience
5
Excellent
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 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Write a program to reverse even words in string?
  • Ans. 

    Program to reverse even words in a string

    • Split the string into words

    • Iterate through the words and reverse the even-indexed words

    • Join the words back into a string

  • Answered by AI
  • Q2. Find elements
  • Ans. 

    Finding elements in a web page using various locators

    • Use CSS selectors to locate elements by class, id, attribute, etc.

    • Use XPath to locate elements based on their path in the HTML structure

    • Use name, tag name, link text, partial link text locators as needed

  • Answered by AI
Round 2 - Coding Test 

Arraylist,maps,strings,oops concept

Senior QA Engineer Interview Questions asked at other Companies

Q1. Combination SumYou are given an array/list ARR of N distinct positive integers. You are also given a non-negative integer B. Your task is to find all unique combinations in the array whose sum is equal to B. A number can be chosen any numbe... read more
View answer (2)

Senior Software Engineer Interview Questions & Answers

user image Meenakshi Somasundaram

posted on 28 Nov 2024

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

Choose the Options in Javascript, HTML, CSS

Round 2 - Technical 

(2 Questions)

  • Q1. ES6 concepts of javascript
  • Q2. Core concepts of Reactjs
  • Ans. 

    Reactjs is a JavaScript library for building user interfaces.

    • Component-based architecture

    • Virtual DOM for efficient updates

    • JSX for writing HTML in JavaScript

    • State management with setState()

    • Lifecycle methods like componentDidMount()

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. Role discussion with Manager
  • Q2. Salary discussion with HR

Interview Preparation Tips

Interview preparation tips for other job seekers - All the best

Skills evaluated in this interview

Top Incedo Senior Software Engineer Interview Questions and Answers

Q1. 1)What is the props and state 2)what is react 3) what is HoC 4)What is redux 5)class and functional component 6) map,for,forEach,await, 7)reducer 8)all Hooks
View answer (2)

Senior Software Engineer Interview Questions asked at other Companies

Q1. Find Nth PrimeYou are given a number 'N'. Your task is to find Nth prime number. A prime number is a number greater than 1 that is not a product of two smaller natural numbers. Prime numbers have only two factors – 1 and the number itself. ... read more
View answer (6)

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
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.

Incedo Interview Process

based on 91 interviews in last 1 year

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.2k Interviews
Accenture Interview Questions
3.9
 • 8k Interviews
Infosys Interview Questions
3.7
 • 7.5k Interviews
Wipro Interview Questions
3.7
 • 5.5k Interviews
Cognizant Interview Questions
3.8
 • 5.5k Interviews
Capgemini Interview Questions
3.8
 • 4.7k Interviews
Tech Mahindra Interview Questions
3.6
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.7k Interviews
IBM Interview Questions
4.1
 • 2.4k Interviews
Xoriant Interview Questions
4.2
 • 174 Interviews
View all

Incedo Reviews and Ratings

based on 918 reviews

3.3/5

Rating in categories

3.1

Skill development

3.3

Work-life balance

3.3

Salary

3.0

Job security

3.1

Company culture

2.8

Promotions

3.0

Work satisfaction

Explore 918 Reviews and Ratings
Java Developer || 4+ yrs || Immediate || Gurgaon/Hyderabad

Hyderabad / Secunderabad,

Gurgaon / Gurugram

4-9 Yrs

Not Disclosed

Explore more jobs
Senior Software Engineer
1.1k salaries
unlock blur

₹6.5 L/yr - ₹23 L/yr

Software Engineer
859 salaries
unlock blur

₹3 L/yr - ₹13 L/yr

Technical Lead
596 salaries
unlock blur

₹10 L/yr - ₹36 L/yr

Associate
283 salaries
unlock blur

₹3 L/yr - ₹6 L/yr

Senior Technical Lead
275 salaries
unlock blur

₹14.1 L/yr - ₹41 L/yr

Explore more salaries
Compare Incedo with

TCS

3.7
Compare

Infosys

3.7
Compare

Wipro

3.7
Compare

HCLTech

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