AmbitionBox

AmbitionBox

Search

Interview Questions

  • Reviews
  • Salaries
  • Interview Questions
  • About Company
  • Benefits
  • Jobs
  • Office Photos
  • Community
  • Home
  • Companies
  • Reviews
  • Salaries
  • Jobs
  • Interviews
  • Salary Calculator
  • Awards 2024
  • Campus Placements
  • Practice Test
  • Compare Companies
+ Contribute
notification
notification
Login
  • Home
  • Communities
  • Companies
    • Companies

      Discover best places to work

    • Compare Companies

      Compare & find best workplace

    • Add Office Photos

      Bring your workplace to life

    • Add Company Benefits

      Highlight your company's perks

  • Reviews
    • Company reviews

      Read reviews for 6L+ companies

    • Write a review

      Rate your former or current company

  • Salaries
    • Browse salaries

      Discover salaries for 6L+ companies

    • Salary calculator

      Calculate your take home salary

    • Are you paid fairly?

      Check your market value

    • Share your salary

      Help other jobseekers

    • Gratuity calculator

      Check your gratuity amount

    • HRA calculator

      Check how much of your HRA is tax-free

    • Salary hike calculator

      Check your salary hike

  • Interviews
    • Company interviews

      Read interviews for 40K+ companies

    • Share interview questions

      Contribute your interview questions

  • Jobs
  • Awards
    pink star
    VIEW WINNERS
    • ABECA 2025
      VIEW WINNERS

      AmbitionBox Employee Choice Awards - 4th Edition

    • ABECA 2024

      AmbitionBox Employee Choice Awards - 3rd Edition

    • AmbitionBox Best Places to Work 2022

      2nd Edition

    Participate in ABECA 2026 right icon dark
For Employers
Upload Button Icon Add office photos
logo
Employer? Claim Account for FREE

ION Group

Compare button icon Compare button icon Compare
3.3

based on 193 Reviews

Play video Play video Video summary
  • About
  • Reviews
    193
  • Salaries
    1.4k
  • Interviews
    103
  • Jobs
    58
  • Benefits
    8
  • Photos
    -
  • Posts
    1

Filter interviews by

ION Group Interview Questions and Answers

Updated 10 Jun 2025
Popular Designations

66 Interview questions

A Technical Analyst was asked 3w ago
Q. What is OOPS and explain the pillars of OOPS?
Ans. 

OOPS stands for Object-Oriented Programming System, focusing on objects and classes to structure software design.

  • Encapsulation: Bundling data and methods that operate on the data within one unit (e.g., a class).

  • Inheritance: Mechanism to create a new class using properties and methods of an existing class (e.g., a 'Dog' class inheriting from an 'Animal' class).

  • Polymorphism: Ability to present the same interface for...

View all Technical Analyst interview questions
A Technical Analyst was asked 3w ago
Q. What are the ACID properties?
Ans. 

ACID properties ensure reliable processing of database transactions, maintaining data integrity and consistency.

  • Atomicity: Transactions are all-or-nothing. Example: If a bank transfer fails, no money is deducted or added.

  • Consistency: Transactions bring the database from one valid state to another. Example: A transaction must not violate any database rules.

  • Isolation: Transactions occur independently. Example: Two t...

View all Technical Analyst interview questions
A Technical Analyst was asked 1mo ago
Q. How do you prioritize your tasks?
Ans. 

I prioritize tasks by assessing urgency, impact, and deadlines, ensuring efficient workflow and timely project completion.

  • Assess urgency: I categorize tasks based on deadlines, focusing on those that are time-sensitive first.

  • Evaluate impact: I consider the potential impact of each task on overall project goals, prioritizing high-impact tasks.

  • Use a task management tool: I utilize tools like Trello or Asana to visua...

View all Technical Analyst interview questions
A Technical Analyst was asked 2mo ago
Q. What are the four pillars of OOPS?
Ans. 

The four pillars of OOP are Encapsulation, Abstraction, Inheritance, and Polymorphism, essential for object-oriented programming.

  • Encapsulation: Bundling data and methods that operate on the data within one unit (e.g., a class).

  • Abstraction: Hiding complex implementation details and showing only the essential features (e.g., using an interface).

  • Inheritance: Mechanism where a new class inherits properties and behavio...

View all Technical Analyst interview questions
A Software Engineer was asked 5mo ago
Q. What is the code for printing prime numbers?
Ans. 

The code for printing prime numbers involves checking each number for divisibility only by 1 and itself.

  • Iterate through numbers and check if each number is prime

  • Use a nested loop to check divisibility by numbers less than the current number

  • Print the number if it is prime

View all Software Engineer interview questions
A Software Engineer was asked 6mo ago
Q. Write code to print a diamond shape pattern with space in the middle.
Ans. 

Print a diamond shape pattern with spaces in the middle.

  • Use nested loops to print the top half of the diamond

  • Use another set of nested loops to print the bottom half of the diamond

  • Adjust the number of spaces and characters printed in each row to create the diamond shape

View all Software Engineer interview questions
A Software Engineer was asked 6mo ago
Q. How would you implement a solution to a given scenario using OOPS concepts?
Ans. 

Implementing OOP principles to solve a software engineering scenario effectively.

  • Encapsulation: Use classes to bundle data and methods, e.g., a 'Car' class with properties like 'speed' and methods like 'accelerate()'.

  • Inheritance: Create a base class 'Animal' and derive classes like 'Dog' and 'Cat' to reuse code and extend functionality.

  • Polymorphism: Implement method overriding, e.g., a 'makeSound()' method in 'Dog...

View all Software Engineer interview questions
Are these interview questions helpful?
A Software Engineer was asked 6mo ago
Q. Write pseudocode to detect a loop in a linked list.
Ans. 

Detecting a loop in a linked list can be efficiently done using Floyd's Cycle-Finding Algorithm.

  • Use two pointers: 'slow' moves one step at a time, 'fast' moves two steps.

  • If 'slow' and 'fast' meet, a loop exists.

  • If 'fast' reaches the end (null), no loop exists.

  • Example: For a list 1 -> 2 -> 3 -> 4 -> 2 (loop back to 2), 'slow' and 'fast' will meet at 2.

View all Software Engineer interview questions
A Software Engineer was asked 7mo ago
Q. What is encapsulation, and can you provide a code example?
Ans. 

Encapsulation is a fundamental OOP principle that restricts direct access to an object's data and methods.

  • Encapsulation allows bundling of data (attributes) and methods (functions) that operate on the data.

  • It restricts access to certain components, which helps in protecting the integrity of the object's state.

  • Example: In a class 'BankAccount', the balance can be private, and methods like 'deposit' and 'withdraw' c...

View all Software Engineer interview questions
A Software Engineer was asked 7mo ago
Q. Write code to implement a linked list using arrays.
Ans. 

Implementing a linked list using arrays involves simulating nodes and pointers with array indices.

  • Use an array to store data elements of the linked list.

  • Maintain an array of indices to represent the 'next' pointers.

  • Example: For a linked list with elements 10 -> 20 -> 30, use an array for values [10, 20, 30] and next indices [1, 2, -1].

  • The last element's next index should point to -1 to indicate the end of th...

View all Software Engineer interview questions
1 2 3 4 5 6 7

ION Group Interview Experiences

103 interviews found

Software Engineer Interview Questions & Answers

user image Anonymous

posted on 14 Jan 2025

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Although it was quite challenging.

Round 2 - Coding Test 

Complete it without significant difficulty.

Round 3 - Technical 

(2 Questions)

  • Q1. Can you describe the projects you have worked on?
  • Ans. 

    I have worked on projects involving developing web applications, creating mobile apps, and implementing machine learning algorithms.

    • Developed a web application for a retail company to manage inventory and sales data

    • Created a mobile app for a fitness tracking platform

    • Implemented machine learning algorithms for a recommendation system

  • Answered by AI
    Add your answer
  • Q2. What is the code for printing prime numbers?
  • Ans. 

    The code for printing prime numbers involves checking each number for divisibility only by 1 and itself.

    • Iterate through numbers and check if each number is prime

    • Use a nested loop to check divisibility by numbers less than the current number

    • Print the number if it is prime

  • Answered by AI
    Add your answer
Round 4 - HR 

(2 Questions)

  • Q1. What motivates you to want to join Ion?
  • Ans. 

    I am motivated to join Ion because of their innovative projects and collaborative work environment.

    • Exciting projects at Ion that align with my interests and skills

    • Opportunity to work with a talented and diverse team

    • Desire to contribute to cutting-edge technology and make a meaningful impact

    • Positive company culture and values that resonate with me

  • Answered by AI
    Add your answer
  • Q2. What makes you a suitable candidate for this position?
  • Ans. 

    I have a strong background in software development, problem-solving skills, and a passion for learning new technologies.

    • Extensive experience in software development with proficiency in multiple programming languages such as Java, Python, and C++

    • Proven track record of successfully delivering complex projects on time and within budget

    • Strong problem-solving skills and ability to troubleshoot and debug issues efficiently

    • Pa...

  • Answered by AI
    Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare in advance by researching the interview experiences of the company to which you are applying. The Ambition Box was very helpful to me in this regard.
Anonymous

Software Engineer Interview Questions & Answers

user image Anonymous

posted on 4 Jan 2025

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

I applied via Campus Placement and was interviewed in Jul 2024. There were 3 interview rounds.

Round 1 - Coding Test 

Dp questions and a median find question

Round 2 - Technical 

(6 Questions)

  • Q1. Questions about Oops
  • Add your answer
  • Q2. Oops implementation
  • Add your answer
  • Q3. Oops implementation of solution of a given scenario
  • Add your answer
  • Q4. Pattern printing code( Diamond shape with space in middle
  • Add your answer
  • Q5. Puzzle
  • Add your answer
  • Q6. Linked list detect loop pseudocode
  • Ans. 

    Detecting a loop in a linked list can be efficiently done using Floyd's Cycle-Finding Algorithm.

    • Use two pointers: 'slow' moves one step at a time, 'fast' moves two steps.

    • If 'slow' and 'fast' meet, a loop exists.

    • If 'fast' reaches the end (null), no loop exists.

    • Example: For a list 1 -> 2 -> 3 -> 4 -> 2 (loop back to 2), 'slow' and 'fast' will meet at 2.

  • Answered by AI
    Add your answer
Round 3 - Case Study 

A case study is given followed by questions on it.

Interview Preparation Tips

Interview preparation tips for other job seekers - Make sure to prepare for each type of interview before you go, they could be continuously scheduled one after the other
Anonymous

Data Scientist Interview Questions & Answers

user image Anonymous

posted on 14 Jun 2024

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

I applied via Campus Placement and was interviewed in May 2024. There were 5 interview rounds.

Round 1 - Aptitude Test 

Python Programming related questions, along with one advanced SQL query problem. The final question was a Data Science project on prediting sales potential of various outlets.

Round 2 - Technical 

(4 Questions)

  • Q1. Pattern based - Three memory chips, each of 1GB. You have to store 3GB of data in these chips in such a way that even if one memory chip is corrupted, no data is lost.
  • Ans. 

    Use RAID 5 to store data across all three memory chips with parity bits for fault tolerance.

    • Implement RAID 5 to distribute data and parity bits across all three memory chips.

    • If one memory chip is corrupted, the data can be reconstructed using the parity bits from the other two chips.

    • Example: Store 1GB of data on each chip and use the remaining space for parity bits to ensure fault tolerance.

  • Answered by AI
    Add your answer
  • Q2. DSA question - Get the longest common prefix string from a list of strings
  • Ans. 

    Find the longest common prefix string from a list of strings.

    • Iterate through the characters of the first string and compare with corresponding characters of other strings

    • Stop when a mismatch is found or when reaching the end of any string

    • Return the prefix found so far

  • Answered by AI
    Add your answer
  • Q3. DBMS question - What are joins and what are their types?
  • Ans. 

    Joins are used in DBMS to combine rows from two or more tables based on a related column between them.

    • Types of joins include INNER JOIN, LEFT JOIN, RIGHT JOIN, and FULL JOIN.

    • INNER JOIN returns rows when there is at least one match in both tables.

    • LEFT JOIN returns all rows from the left table and the matched rows from the right table.

    • RIGHT JOIN returns all rows from the right table and the matched rows from the left tab...

  • Answered by AI
    Add your answer
  • Q4. ML and DL question - Activation functions, Exploding and Vanishing Gradient problems, LSTM and GRU models frameworks and differences.
  • Add your answer
Round 3 - Case Study 

Was taken by the product manager employed in the company. Basic case study question regarding a ride share app planning to expand internationally.

Round 4 - Group Discussion 

A formal orientation and introduction with the VP and founder of ION India

Round 5 - One-on-one 

(2 Questions)

  • Q1. Introduce yourself and mention your work that makes you relevant for the job.
  • Add your answer
  • Q2. Is there any correlation between algorithms and law?
  • Ans. 

    Algorithms and law can be correlated through the use of algorithms in legal processes and decision-making.

    • Algorithms can be used in legal research to analyze large amounts of data and identify patterns or trends.

    • Predictive algorithms can be used in legal cases to assess the likelihood of success or failure.

    • Algorithmic tools can help in legal document review and contract analysis.

    • However, there are concerns about bias i...

  • Answered by AI
    Add your answer

Interview Preparation Tips

Topics to prepare for ION Group Data Scientist interview:
  • DBMS
  • Data Structures
  • Algorithms
  • Machine Learning
  • Deep Learning
  • Python
  • Data Analysis
  • Data Visualization
  • NLP
  • Llm
  • Data Processing
  • Business Intelligence

Skills evaluated in this interview

Anonymous

Technical Analyst Interview Questions & Answers

user image Anonymous

posted on 9 Nov 2024

Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

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

Round 1 - Case Study 

CASE study mysql, DSA, Gropu disscusion, One to one

Round 2 - Technical 

(2 Questions)

  • Q1. Introduced yourself
  • Add your answer
  • Q2. DSA Problem with optimal solution
  • Ans. 

    Optimal solution for a DSA problem involves finding the most efficient algorithm to solve it.

    • Identify the problem constraints and requirements

    • Analyze different algorithms and their time complexity

    • Choose the algorithm with the best time complexity for the problem

    • Implement and test the algorithm to ensure correctness and efficiency

  • Answered by AI
    Add your answer
Round 3 - Group Discussion 

Budget , i was very shrot just keep on talking

Anonymous

SDE Interview Questions & Answers

user image Anonymous

posted on 15 Sep 2024

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Aug 2024. There were 4 interview rounds.

Round 1 - Coding Test 

2 coding question on DP and stack . And it had Apti mcqs

Round 2 - Technical 

(3 Questions)

  • Q1. What is OOPs? And its properties
  • Ans. 

    OOPs stands for Object-Oriented Programming. It is a programming paradigm based on the concept of objects.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit.

    • Inheritance: Ability of a class to inherit properties and behavior from another class.

    • Polymorphism: Ability to present the same interface for different data types.

    • Abstraction: Hiding the complex implementation details and showing o...

  • Answered by AI
    Add your answer
  • Q2. Puzzle question (Egg drop)
  • Add your answer
  • Q3. Project related questions
  • Add your answer
Round 3 - Case Study 

A detailed Case Study was given on some shopping mall.

Round 4 - CultureFit Interview 

(1 Question)

  • Q1. Completely related to my projects
  • Add your answer
Anonymous

Technical Analyst Interview Questions & Answers

user image Anonymous

posted on 12 Sep 2024

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I appeared for an interview in Aug 2024.

Round 1 - Aptitude Test 

Comprised of sections like abstract reasoning, passage based, DBMS, Networking, basic IT

Round 2 - Technical 

(2 Questions)

  • Q1. OOPs concepts, pointers
  • Add your answer
  • Q2. ACID properties
  • Ans. 

    ACID properties are a set of properties that guarantee database transactions are processed reliably.

    • ACID stands for Atomicity, Consistency, Isolation, Durability

    • Atomicity ensures that either all operations in a transaction are completed successfully or none are

    • Consistency ensures that the database remains in a consistent state before and after the transaction

    • Isolation ensures that transactions are executed independentl...

  • Answered by AI
    Add your answer
Round 3 - Case Study 

Analyse a business case, do SWOT Analysis

Round 4 - One-on-one 

(2 Questions)

  • Q1. Describe projects, internships
  • Ans. 

    I have completed multiple projects and internships related to data analysis and software development.

    • Developed a data visualization tool using Python and Tableau for analyzing sales data

    • Interned at a software company where I worked on developing a web application using React and Node.js

    • Completed a project on sentiment analysis of social media data using machine learning algorithms

  • Answered by AI
    Add your answer
  • Q2. HR questions, managerial
  • Add your answer
Anonymous

Sdet Engineer Interview Questions & Answers

user image Anonymous

posted on 17 Oct 2024

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

I applied via LinkedIn and was interviewed in Sep 2024. There were 3 interview rounds.

Round 1 - Coding Test 

It was not that hard actually.

Round 2 - Coding Test 

It was not that hard actually

Round 3 - One-on-one 

(2 Questions)

  • Q1. It was Introduction question
  • Add your answer
  • Q2. Nothing else major part of the interview
  • Add your answer
Anonymous

Technical Analyst Interview Questions & Answers

user image Anonymous

posted on 22 Aug 2024

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Aptitude Test 

Aptitude test consisted of general questions - time, work, di, etc.

Round 2 - One-on-one 

(3 Questions)

  • Q1. OOPS: Difference between interface and abstract classes. Deep copy and shallow copy
  • Ans. 

    Interface vs abstract classes. Deep copy vs shallow copy

    • Interface: only method signatures, no implementation. Abstract class: can have both method signatures and implementation.

    • Interface: multiple inheritance supported. Abstract class: single inheritance only.

    • Deep copy: creates a new object and copies all fields. Shallow copy: copies references to objects, not the objects themselves.

  • Answered by AI
    Add your answer
  • Q2. DBMS: Difference ebtween primary and unique key
  • Ans. 

    Primary key uniquely identifies each record in a table, while unique key ensures each value in a column is unique.

    • Primary key does not allow NULL values, while unique key allows one NULL value.

    • A table can have only one primary key, but multiple unique keys.

    • Primary key is automatically indexed, while unique key is not.

    • Primary key can be a combination of multiple columns, while unique key is for a single column.

  • Answered by AI
    Add your answer
  • Q3. Puzzles: 100 prisoners question
  • Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - refresh ur puzzles through gfg, oops, dbms, os, cs fundamentals basically and have a good resume.

Skills evaluated in this interview

Anonymous

Software Developer Interview Questions & Answers

user image Anonymous

posted on 24 Aug 2024

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

I applied via Campus Placement and was interviewed in Jul 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

3 questions of dsa based on dp and trees

Round 2 - Technical 

(3 Questions)

  • Q1. Valid BST leetcode question
  • Ans. 

    Check if a binary tree is a valid binary search tree (BST) based on node values.

    • A BST is defined such that for any node, all values in the left subtree are less, and all values in the right subtree are greater.

    • Use a recursive approach to validate each node against a range of valid values.

    • Example: For the tree with root 2, left child 1, and right child 3, it is a valid BST.

    • Example: For the tree with root 5, left child 1...

  • Answered by AI
    Add your answer
  • Q2. Common puzzles found on gfg
  • Add your answer
  • Q3. Questions on object oriented programming
  • Add your answer
Round 3 - Case Study 

Optimize delivery between warehouse to the person ordered.

Interview Preparation Tips

Topics to prepare for ION Group Software Developer interview:
  • trees
  • puzzles
  • DP

Skills evaluated in this interview

Anonymous

Technical Analyst Interview Questions & Answers

user image Anonymous

posted on 26 Aug 2024

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

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

Round 1 - Case Study 

Situation problem about how to deal with specific customers

Round 2 - Technical 

(4 Questions)

  • Q1. Questions will be asked from your project so prepare them thoroughly
  • Add your answer
  • Q2. Prepare Case study questions too they're asked alot both in analyst and sde position
  • Add your answer
  • Q3. For sde prepare fundamentals
  • Add your answer
  • Q4. Interviewer asked one of my friend how to convert stack into queue and vice versa
  • Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare Case study questions and your projects
Anonymous

Top trending discussions

View All
Interview Tips & Stories
4d (edited)
a team lead
Why are women still asked such personal questions in interview?
I recently went for an interview… and honestly, m still trying to process what just happened. Instead of being asked about my skills, experience, or how I could add value to the company… the questions took a totally unexpected turn. The interviewer started asking things like When are you getting married? Are you engaged? And m sure, if I had said I was married, the next question would’ve been How long have you been married? What does my personal life have to do with the job m applying for? This is where I felt the gender discrimination hit hard. These types of questions are so casually thrown at women during interviews but are they ever asked to men? No one asks male candidates if they’re planning a wedding or how old their kids are. So why is it okay to ask women? Can we please stop normalising this kind of behaviour in interviews? Our careers shouldn’t be judged by our relationship status. Period.
Got a question about ION Group?
Ask anonymously on communities.
More about working at ION Group
  • Software Product
  • 1k-5k Employees (India)
  • Hardware & Networking
  • IT Services & Consulting

ION Group Interview FAQs

How many rounds are there in ION Group interview?
ION Group interview process usually has 2-3 rounds. The most common rounds in the ION Group interview process are Technical, Aptitude Test and Coding Test.
How to prepare for ION Group 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 ION Group. The most common topics and skills that interviewers at ION Group expect are Automation Testing, Data Analytics, Supply Chain Management, Workflow and SQL.
What are the top questions asked in ION Group interview?

Some of the top questions asked at the ION Group interview -

  1. You are specialized in Data analsysis so what is the diff betweeen tachnical an...read more
  2. DBMS question - What are joins and what are their typ...read more
  3. Pattern based - Three memory chips, each of 1GB. You have to store 3GB of data ...read more
How long is the ION Group interview process?

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

Tell us how to improve this page.

ION Group Interviews By Designations

  • ION Group Technical Analyst Interview Questions
  • ION Group Software Developer Interview Questions
  • ION Group Software Engineer Interview Questions
  • ION Group Analyst Interview Questions
  • ION Group SDE Interview Questions
  • ION Group Sdet Engineer Interview Questions
  • ION Group Business Analyst Interview Questions
  • ION Group Software Development Engineer Intern Interview Questions
  • Show more
  • ION Group Data Scientist Interview Questions
  • ION Group Associate Software Engineer Interview Questions

Interview Questions for Popular Designations

  • Technical Analyst Interview Questions
  • Software Developer Interview Questions
  • Software Engineer Interview Questions
  • Analyst Interview Questions
  • SDE Interview Questions
  • Associate Interview Questions
  • Senior Executive Interview Questions
  • Intern Interview Questions
  • Show more
  • Sales Officer Interview Questions
  • Deputy Manager Interview Questions

Overall Interview Experience Rating

3.8/5

based on 99 interview experiences

Difficulty level

Easy 7%
Moderate 88%
Hard 5%

Duration

Less than 2 weeks 80%
2-4 weeks 18%
4-6 weeks 2%
View more

Interview Questions from Similar Companies

Chetu
Chetu Interview Questions
3.3
 • 198 Interviews
AVASOFT
AVASOFT Interview Questions
2.8
 • 174 Interviews
Freshworks
Freshworks Interview Questions
3.5
 • 171 Interviews
Oracle Cerner
Oracle Cerner Interview Questions
3.6
 • 162 Interviews
Thomson Reuters
Thomson Reuters Interview Questions
4.1
 • 125 Interviews
ServiceNow
ServiceNow Interview Questions
4.1
 • 124 Interviews
R Systems International
R Systems International Interview Questions
3.3
 • 120 Interviews
Amadeus
Amadeus Interview Questions
3.8
 • 115 Interviews
UKG
UKG Interview Questions
3.1
 • 112 Interviews
EbixCash Limited
EbixCash Limited Interview Questions
3.9
 • 106 Interviews
View all

ION Group Reviews and Ratings

based on 193 reviews

3.3/5

Rating in categories

2.9

Skill development

3.3

Work-life balance

3.4

Salary

3.3

Job security

3.1

Company culture

2.8

Promotions

3.0

Work satisfaction

Explore 193 Reviews and Ratings
Jobs at ION Group
ION Group
Senior Support Services Analyst

Noida

1-5 Yrs

Not Disclosed

ION Group
License Key Analyst

Noida

2-7 Yrs

Not Disclosed

ION Group
I-ON - Company Secretary (4-10 yrs)

4-10 Yrs

Not Disclosed

Explore more jobs
ION Group Salaries in India
Software Developer
174 salaries
unlock blur

₹14 L/yr - ₹24.2 L/yr

Technical Analyst
91 salaries
unlock blur

₹14.6 L/yr - ₹36.9 L/yr

Software Engineer
68 salaries
unlock blur

₹18.2 L/yr - ₹40.1 L/yr

Senior Software Engineer
49 salaries
unlock blur

₹19 L/yr - ₹51 L/yr

Analyst
34 salaries
unlock blur

₹8.7 L/yr - ₹29.9 L/yr

Explore more salaries
Compare ION Group with
Thomson Reuters

Thomson Reuters

4.1
Compare
Oracle Cerner

Oracle Cerner

3.6
Compare
Chetu

Chetu

3.3
Compare
R Systems International

R Systems International

3.2
Compare
Popular Calculators
Are you paid fairly?
Monthly In-hand Salary Calculator
Gratuity Calculator
HRA Calculator
Salary Hike Calculator
  • Home >
  • Interviews >
  • ION Group Interview Questions
write
Share an Interview
Stay ahead in your career. Get AmbitionBox app
Awards Banner

Trusted by over 1.5 Crore job seekers to find their right fit company

80 Lakh+

Reviews

4 Crore+

Salaries

10 Lakh+

Interviews

1.5 Crore+

Users

Contribute
Search

Interview Questions

  • Reviews
  • Salaries
  • Interview Questions
  • About Company
  • Benefits
  • Jobs
  • Office Photos
  • Community
Users/Jobseekers
  • Companies
  • Reviews
  • Salaries
  • Jobs
  • Interviews
  • Salary Calculator
  • Practice Test
  • Compare Companies
Employers
  • Create a new company
  • Update company information
  • Respond to reviews
  • Invite employees to review
  • AmbitionBox Offering for Employers
  • AmbitionBox Employers Brochure
AmbitionBox Awards
  • ABECA 2025 winners awaited tag
  • Participate in ABECA 2026
  • Invite employees to rate
AmbitionBox
  • About Us
  • Our Team
  • Email Us
  • Blog
  • FAQ
  • Credits
  • Give Feedback
Terms & Policies
  • Privacy
  • Grievances
  • Terms of Use
  • Summons/Notices
  • Community Guidelines
Get AmbitionBox app

Made with ❤️ in India. Trademarks belong to their respective owners. All rights reserved © 2025 Info Edge (India) Ltd.

Follow Us
  • Youtube
  • Instagram
  • LinkedIn
  • Facebook
  • Twitter