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

104 Interview questions

A Software Engineer was asked 1mo ago
Q. How can you design a REST API that allows for concurrent read and write access?
Ans. 

Designing a REST API for concurrent read and write access involves strategies for data consistency and performance.

  • Use HTTP methods appropriately: GET for reads, POST/PUT for writes.

  • Implement optimistic concurrency control to handle conflicts.

  • Utilize versioning in resources to manage updates.

  • Consider using WebSockets for real-time updates alongside REST.

  • Leverage caching mechanisms to reduce read load on the databa...

View all Software Engineer interview questions
A Software Engineer was asked 1mo ago
Q. What are the best practices for managing secrets in code?
Ans. 

Best practices for managing secrets in code include using secure storage, environment variables, and access controls.

  • Use environment variables to store sensitive information instead of hardcoding them in the source code.

  • Utilize secret management tools like HashiCorp Vault, AWS Secrets Manager, or Azure Key Vault for secure storage.

  • Implement access controls to limit who can view or modify secrets, ensuring only aut...

View all Software Engineer interview questions
A Technical Lead was asked 3mo ago
Q. Based on your experience, how would you prioritize an incident, and what steps have you taken to manage a high-priority incident?
Ans. 

Prioritizing incidents involves assessing impact, urgency, and resources to ensure effective resolution.

  • Assess impact: Determine how many users are affected and the severity of the issue. For example, a system outage affecting all users is high priority.

  • Evaluate urgency: Consider how quickly the issue needs to be resolved. A security breach requires immediate attention compared to a minor bug.

  • Communicate with stak...

View all Technical Lead interview questions
A Technical Lead was asked 3mo ago
Q. What is incident management and what are its advantages?
Ans. 

Incident management is a structured approach to handling incidents to minimize impact and restore services efficiently.

  • Ensures quick resolution of incidents, reducing downtime (e.g., restoring a server outage within an hour).

  • Improves communication among teams and stakeholders during incidents (e.g., using a dedicated incident channel).

  • Facilitates root cause analysis to prevent future incidents (e.g., analyzing rec...

View all Technical Lead interview questions
A Senior QA Engineer was asked 6mo ago
Q. Write a program to reverse even words in a 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

View all Senior QA Engineer interview questions
A Senior QA Engineer was asked 6mo ago
Q. Write a function to find a specific element in a given data structure (e.g., array, linked list, tree).
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

View all Senior QA Engineer interview questions
A Test Engineer was asked 6mo ago
Q. Write Selenium code and execute it 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()'

View all Test Engineer interview questions
Are these interview questions helpful?
A Test Engineer was asked 6mo ago
Q. Write Selenium code 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.getTe...

View all Test Engineer interview questions
A Test Engineer was asked 6mo ago
Q. Write an SQL query to 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. Examp...

View all Test Engineer interview questions
A Salesforce Developer was asked 7mo ago
Q. What exceptions are you familiar with?
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.

View all Salesforce Developer 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.1/5

Rating in categories

3.0

Skill development

3.2

Work-life balance

3.2

Salary

2.9

Job security

3.0

Company culture

2.7

Promotions

2.9

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

Dot Net Fullstack Developer || 5-9 yrs || BGL/Chennai || Immediate

Chennai,

Bangalore / Bengaluru

5-9 Yrs

Not Disclosed

Explore more jobs
Senior Software Engineer
1.2k salaries
unlock blur

₹8.6 L/yr - ₹21 L/yr

Software Engineer
1k salaries
unlock blur

₹5 L/yr - ₹12.5 L/yr

Technical Lead
626 salaries
unlock blur

₹17.5 L/yr - ₹29.8 L/yr

Senior Technical Lead
283 salaries
unlock blur

₹16 L/yr - ₹41 L/yr

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