Upload Button Icon Add office photos

Filter interviews by

ION Group Softwaretest Engineer Interview Questions and Answers

Updated 4 Oct 2023

ION Group Softwaretest Engineer Interview Experiences

1 interview found

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

I applied via campus placement at Vellore Institute of Technology (VIT) and was interviewed in Sep 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

You will have 2 hours of assessement

Round 2 - Technical 

(1 Question)

  • Q1. Basic oops and sql questions and you will have puzzle

Interview questions from similar companies

Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is the importance of manual testing when compared to automation testing
  • Ans. 

    Manual testing is important for exploratory testing, usability testing, and ad-hoc testing.

    • Manual testing allows for exploratory testing where testers can explore the application and identify unexpected issues.

    • Usability testing, which involves real users interacting with the software, is best done manually to capture user experience.

    • Ad-hoc testing, where testers randomly test the application without predefined test cas...

  • Answered by AI
  • Q2. Real life scenario on web application testing
  • Ans. 

    Testing a web application for an online shopping platform

    • Testing the functionality of adding items to the cart and checking out

    • Testing the payment gateway integration for secure transactions

    • Testing the search functionality to ensure accurate results are displayed

    • Testing the responsiveness of the website on different devices and browsers

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - If some one want to apply any of the job in this company then please do have some experience even though they mentioned for freshers bsc, however you do your interview as best as possible at last they gonna reject bsc of lack of experience. Same happened to me.So plzz only attened any Oracle company interview if you have experience.

Skills evaluated in this interview

Softwaretest Engineer Interview Questions & Answers

UKG user image Shailesh Kumar Gupta

posted on 30 Nov 2024

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. About oops, constructor,
  • Q2. Spring boot, hibernate questions
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Technical 

(4 Questions)

  • Q1. Focus on coding, Question: find the duplicate string from list of string and the count of it(how many times it is repeated) Prepare oops and collections concepts.
  • Q2. Focus on method overriding
  • Q3. Difference between arraylist and LinkedInlist
  • Ans. 

    ArrayList is a resizable array implementation while LinkedList is a doubly linked list implementation.

    • ArrayList uses dynamic arrays to store elements, allowing fast random access but slower insertion and deletion.

    • LinkedList uses nodes with pointers to the next and previous elements, allowing fast insertion and deletion but slower random access.

    • Example: ArrayList - List names = new ArrayList<>(); LinkedList - List citie

  • Answered by AI
  • Q4. Use of static keyword
  • Ans. 

    The static keyword in programming is used to declare variables, methods, or classes that belong to the class itself rather than instances of the class.

    • Static variables are shared among all instances of a class.

    • Static methods can be called without creating an instance of the class.

    • Static classes cannot be instantiated and are used for grouping related methods and variables.

    • Example: public static int count = 0; // static

  • Answered by AI

Skills evaluated in this interview

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

They have asked bunch of question from java, which i have told o am not aware about

Round 2 - Technical 

(3 Questions)

  • Q1. What is Binary trees,
  • Ans. 

    Binary trees are hierarchical data structures composed of nodes, where each node has at most two children.

    • Consists of nodes with at most two children - left and right

    • Each node can have zero, one, or two children

    • Used in data structures like binary search trees and binary heaps

  • Answered by AI
  • Q2. What are expection handling in pyhton
  • Ans. 

    Exception handling in Python is a way to handle errors that occur during the execution of a program.

    • Use try-except blocks to catch and handle exceptions

    • Different types of exceptions can be handled separately

    • Use finally block to execute code regardless of whether an exception occurred or not

  • Answered by AI
  • Q3. Write a SQL quesries
  • Ans. 

    SQL query to retrieve employee names and their salaries from a table

    • Use SELECT statement to retrieve data

    • Specify the columns you want to retrieve (employee names and salaries)

    • Specify the table name from which you want to retrieve data

  • Answered by AI

Skills evaluated in this interview

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

(2 Questions)

  • Q1. Java program for prime no
  • Ans. 

    Java program to check if a number is prime or not

    • Create a function to check if a number is prime or not

    • Iterate from 2 to n/2 and check if n is divisible by any number

    • If n is divisible by any number, it is not prime

    • If n is not divisible by any number, it is prime

  • Answered by AI
  • Q2. Dynamic web table element program
  • Ans. 

    A dynamic web table element program involves identifying and interacting with elements in a table that change dynamically.

    • Identify the table element using unique identifiers like class or id

    • Use Selenium WebDriver to locate and interact with the table element

    • Handle dynamic changes in the table by using dynamic XPath or CSS selectors

    • Iterate through rows and columns to extract data or perform actions

  • Answered by AI

Skills evaluated in this interview

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

I applied via Referral and was interviewed in Apr 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Write a program to reverse the string
  • Ans. 

    Program to reverse a string using array of characters

    • Create an array of characters from the input string

    • Iterate through the array in reverse order and append each character to a new string

    • Return the reversed string

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
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 - Group Discussion 

Top is Love marriage arrange marriage

Round 3 - Technical 

(2 Questions)

  • Q1. What is array and tell array methods
  • Ans. 

    An array is a data structure that stores a collection of elements of the same type in a contiguous memory location.

    • Array methods include push() - adds an element to the end of the array

    • Array methods also include pop() - removes the last element from the array

    • Other array methods are shift() - removes the first element, and unshift() - adds an element to the beginning

    • Array methods like splice() - adds or removes elements...

  • Answered by AI
  • Q2. What is object and tell how its work in js
  • Ans. 

    An object in JavaScript is a collection of key-value pairs that represent a real-world entity or concept.

    • Objects are used to store data and functions together.

    • Properties in an object are accessed using dot notation or bracket notation.

    • Objects can be created using object literals or constructor functions.

  • Answered by AI

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed before Mar 2023. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Asked few Python and AWS related questions.

Interview Preparation Tips

Interview preparation tips for other job seekers - Second round was with director and he asked few logical questions.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Aug 2022. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Coding Test 

Cs fundamentals, coding question leetcode easy medium level

Round 3 - Technical 

(2 Questions)

  • Q1. Coding question of leetcode easy-medium
  • Q2. Projects from past detail

ION Group Interview FAQs

How many rounds are there in ION Group Softwaretest Engineer interview?
ION Group interview process usually has 3 rounds. The most common rounds in the ION Group interview process are Resume Shortlist, Aptitude Test and Technical.

Tell us how to improve this page.

People are getting interviews through

based on 1 ION Group interview
Campus Placement
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.
Software Developer
172 salaries
unlock blur

₹12 L/yr - ₹46 L/yr

Software Engineer
50 salaries
unlock blur

₹11.5 L/yr - ₹40 L/yr

Senior Software Engineer
49 salaries
unlock blur

₹17.9 L/yr - ₹48 L/yr

Technical Analyst
41 salaries
unlock blur

₹12 L/yr - ₹17.5 L/yr

Analyst
29 salaries
unlock blur

₹5 L/yr - ₹17.5 L/yr

Explore more salaries
Compare ION Group with

Thomson Reuters

4.1
Compare

Bloomberg

3.4
Compare

FactSet

4.0
Compare

Morningstar

4.0
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview