Upload Button Icon Add office photos

Filter interviews by

Exdion Solutions Interview Questions and Answers

Updated 17 Aug 2023

Exdion Solutions Interview Experiences

1 interview found

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

I applied via Referral and was interviewed in Feb 2023. There were 2 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 - One-on-one 

(5 Questions)

  • Q1. Was based on our education field
  • Q2. Finance n about company
  • Q3. Self introduction, about company, about finance, accounts after the aptitude but it was easy but they doesn't provide proper one-to-one training.
  • Q4. Offline aptitude
  • Q5. Then they evalute aptitude then notify about joining

Interview Preparation Tips

Interview preparation tips for other job seekers - Good company with fast training but they doesn't provide one-to-one training so I left that company.

Insurance Executive Interview Questions asked at other Companies

Q1. Discuss about no leaves till next 3 months
View answer (1)

Interview questions from similar companies

Interview Questionnaire 

4 Questions

  • Q1. Tell me about yourself
  • Q2. Strength and weekness
  • Q3. Do you have Any questions for me
  • Q4. Why should we hire you

Interview Questionnaire 

1 Question

  • Q1. Rain water tapping problem
  • Ans. 

    Rain water tapping problem involves calculating the amount of water that can be trapped between given bars.

    • Calculate the maximum height of bars on left and right of each bar.

    • Calculate the amount of water that can be trapped between two bars using the minimum of the two maximum heights.

    • Add up the amount of water trapped between all bars to get the total amount of water trapped.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - DS algo is must, graphs are asked most

I applied via Company Website and was interviewed in Apr 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Tell me about your ex in previous org

Interview Preparation Tips

Interview preparation tips for other job seekers - Great interview process

Interview Questionnaire 

5 Questions

  • Q1. Everything
  • Q2. Experience
  • Q3. Email
  • Q4. Rt
  • Q5. Right

Interview Preparation Tips

Interview preparation tips for other job seekers - R

Interview Questionnaire 

1 Question

  • Q1. C++ Program to reverse a string
  • Ans. 

    C++ program to reverse a string

    • Use a loop to iterate through the string

    • Swap the characters at the beginning and end of the string

    • Continue swapping until the middle of the string is reached

  • Answered by AI

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Apr 2021. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. Filter in MVC
  • Ans. 

    Filter in MVC is used to retrieve a subset of data from a larger dataset based on certain criteria.

    • Filters can be applied to data in the model or in the view.

    • Filters can be used to sort, group, or limit the data returned.

    • Filters can be implemented using LINQ or other query languages.

    • Examples of filters include date range filters, category filters, and search filters.

  • Answered by AI
  • Q2. Authentication and authorisation

Interview Preparation Tips

Interview preparation tips for other job seekers - Please prepare all basics of MVC,SQL and C#

Skills evaluated in this interview

I applied via Referral and was interviewed in Apr 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Sql based quedtion

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare continuously don't lose hope

Interview Questionnaire 

1 Question

  • Q1. Coding

I appeared for an interview before May 2021.

Round 1 - Coding Test 

(3 Questions)

Round duration - 90 minutes
Round difficulty - Medium

  • Q1. 

    Longest Increasing Subsequence Problem Statement

    Given 'N' students standing in a row with specific heights, your task is to find the length of the longest strictly increasing subsequence of their heights...

  • Ans. 

    Find the length of the longest strictly increasing subsequence of heights of students in a row.

    • Iterate through the heights array and for each element, find the length of the longest increasing subsequence ending at that element.

    • Use dynamic programming to keep track of the longest increasing subsequence length for each element.

    • Return the maximum length found as the result.

  • Answered by AI
  • Q2. 

    Overlapping Intervals Problem Statement

    You are given the start and end times of 'N' intervals. Write a function to determine if any two intervals overlap.

    Note:

    If an interval ends at time T and anothe...

  • Ans. 

    Given start and end times of intervals, determine if any two intervals overlap.

    • Iterate through intervals and check if any two intervals overlap by comparing their start and end times

    • Sort intervals based on start times for efficient comparison

    • Consider edge cases where intervals end and start at the same time

  • Answered by AI
  • Q3. What SQL queries were asked during your interview?
  • Ans. 

    Various SQL queries related to data manipulation and retrieval were asked during the interview.

    • Basic SELECT queries to retrieve data from a single table

    • JOIN queries to retrieve data from multiple tables based on a common column

    • Aggregate functions like COUNT, SUM, AVG, etc. to perform calculations on data

    • Subqueries to retrieve data based on the result of another query

    • UPDATE queries to modify existing data in a table

    • DELE...

  • Answered by AI
Round 2 - Face to Face 

(2 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

  • Q1. 

    Zig-Zag String Problem Statement

    Given a string STR of size N and an integer M representing the number of rows in the zig-zag pattern, return the string formed by concatenating all rows when the string ST...

  • Ans. 

    Arrange a string in zig-zag pattern with given number of rows and concatenate the rows.

    • Iterate through the string and distribute characters to rows based on zig-zag pattern

    • Concatenate the characters in each row to get the final result

    • Handle edge cases like when number of rows is 1 or equal to the length of the string

  • Answered by AI
  • Q2. 

    Next Permutation Problem Statement

    You are given a permutation of 'N' integers. A sequence of 'N' integers is considered a permutation if it includes all integers from 1 to 'N' exactly once. Your task is ...

  • Ans. 

    The task is to rearrange a given permutation of 'N' integers to form the lexicographically next greater permutation.

    • Iterate from right to left to find the first element that is smaller than the element to its right.

    • Swap this element with the smallest element to its right that is greater than it.

    • Reverse the elements to the right of the swapped element to get the lexicographically next greater permutation.

  • Answered by AI
Round 3 - Face to Face 

(2 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

  • Q1. 

    Remove Consecutive Duplicates Problem Statement

    Given a string S, your task is to recursively remove all consecutive duplicate characters from the string.

    Input:

    String S

    Output:

    Output string

    Constr...

  • Ans. 

    Recursively remove consecutive duplicate characters from a string.

    • Use recursion to check if the current character is the same as the next character, if so skip the next character

    • Base case: if the string is empty or has only one character, return the string

    • Example: Input: 'aaabcc', Output: 'abc'

  • Answered by AI
  • Q2. 

    Print Permutations - String Problem Statement

    Given an input string 'S', you are tasked with finding and returning all possible permutations of the input string.

    Input:

    The first and only line of input ...
  • Ans. 

    Return all possible permutations of a given input string.

    • Use recursion to generate all possible permutations of the input string.

    • Swap characters at different positions to generate permutations.

    • Handle duplicate characters in the input string by using a set to store unique permutations.

  • Answered by AI
Round 4 - Face to Face 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Medium

  • Q1. Design an e-commerce website similar to Flipkart or Amazon.
  • Ans. 

    Design an e-commerce website similar to Flipkart or Amazon.

    • Implement user-friendly interface for easy navigation

    • Include search functionality with filters for products

    • Incorporate secure payment gateway for transactions

    • Provide personalized recommendations based on user behavior

    • Include customer reviews and ratings for products

    • Implement order tracking and delivery status updates

    • Offer various payment options like credit/deb

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from National Institute of Technology, Kurukshetra. I applied for the job as SDE - 1 in BangaloreEligibility criteriaAbove 7.5 CGPASAP Labs interview preparation:Topics to prepare for the interview - DSA(Data Structures and Algorithms),Object-Oriented Programming Principles,Operating Systems,Database Management Systems,Web Development,Machine Learning,Projects(Internship/Full-time)Time required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Tip 1 : Prepare DSA well. Standard Leetcode-type questions will be asked.
Tip 2 : You should be crystal clear about your project/s as any question would be asked and you should be able to answer it.
Tip 3 : Prepare CS fundaments like OS, OOPs, DBMS, etc.

Application resume tips for other job seekers

Tip 1 : Clearly mention the tech. stack you have worked on in the project/s
Tip 2 : As a fresher, you should add your coding profiles on CodeChef, Codeforces, etc. so as to make the resume shortlisting easy

Final outcome of the interviewSelected

Skills evaluated in this interview

Exdion Solutions Interview FAQs

How many rounds are there in Exdion Solutions interview?
Exdion Solutions interview process usually has 2 rounds. The most common rounds in the Exdion Solutions interview process are Resume Shortlist and One-on-one Round.
How to prepare for Exdion Solutions 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 Exdion Solutions. The most common topics and skills that interviewers at Exdion Solutions expect are HR, Healthcare, Medical Billing, Recruitment and Team Leading.
What are the top questions asked in Exdion Solutions interview?

Some of the top questions asked at the Exdion Solutions interview -

  1. Then they evalute aptitude then notify about joini...read more
  2. Was based on our education fi...read more
  3. Offline aptitu...read more

Tell us how to improve this page.

Exdion Solutions Interview Process

based on 2 interviews

Interview experience

3
  
Average
View more

Interview Questions from Similar Companies

Google Interview Questions
4.4
 • 840 Interviews
Zoho Interview Questions
4.3
 • 512 Interviews
SAP Interview Questions
4.2
 • 283 Interviews
Infinx Interview Questions
4.0
 • 186 Interviews
24/7 Customer Interview Questions
3.5
 • 176 Interviews
Chetu Interview Questions
3.3
 • 174 Interviews
AVASOFT Interview Questions
2.9
 • 164 Interviews
Dassault Systemes Interview Questions
4.0
 • 162 Interviews
View all

Exdion Solutions Reviews and Ratings

based on 30 reviews

4.1/5

Rating in categories

3.5

Skill development

3.9

Work-life balance

3.4

Salary

3.9

Job security

4.1

Company culture

3.0

Promotions

3.8

Work satisfaction

Explore 30 Reviews and Ratings
Process Associate
28 salaries
unlock blur

₹1.4 L/yr - ₹4.2 L/yr

Senior Process Associate
11 salaries
unlock blur

₹2.2 L/yr - ₹6 L/yr

Team Lead
10 salaries
unlock blur

₹4.2 L/yr - ₹8.7 L/yr

Medical Billing Associate
6 salaries
unlock blur

₹1.5 L/yr - ₹2.8 L/yr

Medical Coder
6 salaries
unlock blur

₹2.4 L/yr - ₹4.5 L/yr

Explore more salaries
Compare Exdion Solutions with

24/7 Customer

3.5
Compare

Microsoft Corporation

4.0
Compare

SAP

4.2
Compare

Google

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