Upload Button Icon Add office photos

Filter interviews by

TransImpact Senior Qa Software Tester Interview Questions and Answers

Updated 18 Aug 2024

8 Interview questions

A Senior Qa Software Tester was asked 10mo ago
Q. What are the differences between an Array and an ArrayList?
Ans. 

Array is a fixed-size data structure while ArrayList is a dynamic-size data structure in Java.

  • Array is a static data structure with a fixed size, while ArrayList is a dynamic data structure that can grow or shrink in size.

  • Arrays can hold primitive data types and objects, while ArrayList can only hold objects.

  • Arrays are faster than ArrayList for accessing elements, but ArrayList is more flexible and easier to work ...

A Senior Qa Software Tester was asked 10mo ago
Q. Which OOP concepts have been used in POM in your project?
Ans. 

Encapsulation, Inheritance, and Polymorphism are the OOP concepts used in POM.

  • Encapsulation: Encapsulating web elements and their related methods in page classes

  • Inheritance: Extending base page class to create specific page classes

  • Polymorphism: Using method overriding in page classes

Senior Qa Software Tester Interview Questions Asked at Other Companies

asked in TransImpact
Q1. Can we use 'this' and 'super' keywords in the same constructor me ... read more
asked in TransImpact
Q2. What will happen if the argument is removed from the overridden m ... read more
asked in TransImpact
Q3. What will happen if we increment the equal method in overridden?
asked in TransImpact
Q4. Which OOP concepts have been used in POM in your project?
asked in TransImpact
Q5. What is a generic collection in Java?
A Senior Qa Software Tester was asked 10mo ago
Q. What is an index in SQL?
Ans. 

Index in SQL is a data structure that improves the speed of data retrieval operations on a database table.

  • Indexes are created on columns in a database table to quickly retrieve data based on the values in those columns.

  • They can be unique or non-unique, clustered or non-clustered.

  • Examples of indexes include primary keys, foreign keys, and indexes created for frequently searched columns.

A Senior Qa Software Tester was asked 10mo ago
Q. What does dynamic mean?
Ans. 

Dynamic means constantly changing or active.

  • Constantly changing or evolving

  • Active or lively

  • Responsive to input or stimuli

  • Opposite of static or fixed

  • Examples: Dynamic websites that update in real-time, dynamic pricing in e-commerce

A Senior Qa Software Tester was asked 10mo ago
Q. Write a program to merge two sorted arrays, a and b.
Ans. 

Merge two sorted arrays a and b into a single sorted array

  • Create a new array to store the merged result

  • Use two pointers to iterate through arrays a and b, comparing elements and adding the smaller one to the result array

  • Handle cases where one array is longer than the other by appending the remaining elements to the result array

A Senior Qa Software Tester was asked 10mo ago
Q. What will happen if we increment the equal method in overridden?
Ans. 

The behavior of the equal method in an overridden method will change.

  • When the equal method is incremented in an overridden method, the comparison logic will be different from the parent class.

  • This can lead to unexpected behavior if not implemented correctly.

  • Make sure to thoroughly test the new equal method to ensure it functions as intended.

A Senior Qa Software Tester was asked 10mo ago
Q. What will happen if the argument is removed from the overridden method?
Ans. 

The method will no longer be considered as an override and will be treated as a new method.

  • The method will no longer have the same signature as the method it is supposed to override.

  • The compiler will not throw any error as it will treat the method as a new method.

  • The superclass method will be called instead of the overridden method.

Are these interview questions helpful?
A Senior Qa Software Tester was asked 10mo ago
Q. What is a generic collection in Java?
Ans. 

A generic collection in Java is a collection that can hold objects of any data type.

  • Generic collections are defined with a type parameter that specifies the type of objects it can hold.

  • Examples of generic collections in Java include ArrayList, LinkedList, and HashMap.

  • Using generic collections helps ensure type safety and avoids the need for explicit type casting.

TransImpact Senior Qa Software Tester Interview Experiences

1 interview found

Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Company Website and was interviewed in Jul 2024. There was 1 interview round.

Round 1 - Technical 

(9 Questions)

  • Q1. Can we have this and the super keyword in the same constructor method
  • Ans. 

    Yes, the super keyword can be used in the same constructor method.

    • The super keyword is used to call the constructor of the parent class.

    • It is commonly used to initialize the parent class's instance variables.

    • Example: super(parameter1, parameter2);

  • Answered by AI
  • Q2. What will happen if the argument is removed from the overridden method
  • Ans. 

    The method will no longer be considered as an override and will be treated as a new method.

    • The method will no longer have the same signature as the method it is supposed to override.

    • The compiler will not throw any error as it will treat the method as a new method.

    • The superclass method will be called instead of the overridden method.

  • Answered by AI
  • Q3. What is a generic collection in Java
  • Ans. 

    A generic collection in Java is a collection that can hold objects of any data type.

    • Generic collections are defined with a type parameter that specifies the type of objects it can hold.

    • Examples of generic collections in Java include ArrayList, LinkedList, and HashMap.

    • Using generic collections helps ensure type safety and avoids the need for explicit type casting.

  • Answered by AI
  • Q4. What will happen if we increment the equal method in overridden
  • Ans. 

    The behavior of the equal method in an overridden method will change.

    • When the equal method is incremented in an overridden method, the comparison logic will be different from the parent class.

    • This can lead to unexpected behavior if not implemented correctly.

    • Make sure to thoroughly test the new equal method to ensure it functions as intended.

  • Answered by AI
  • Q5. What is Index in SQL
  • Ans. 

    Index in SQL is a data structure that improves the speed of data retrieval operations on a database table.

    • Indexes are created on columns in a database table to quickly retrieve data based on the values in those columns.

    • They can be unique or non-unique, clustered or non-clustered.

    • Examples of indexes include primary keys, foreign keys, and indexes created for frequently searched columns.

  • Answered by AI
  • Q6. Which all oops concepts have been used in POM in your project
  • Ans. 

    Encapsulation, Inheritance, and Polymorphism are the OOP concepts used in POM.

    • Encapsulation: Encapsulating web elements and their related methods in page classes

    • Inheritance: Extending base page class to create specific page classes

    • Polymorphism: Using method overriding in page classes

  • Answered by AI
  • Q7. Differences between Array and ArrayList
  • Ans. 

    Array is a fixed-size data structure while ArrayList is a dynamic-size data structure in Java.

    • Array is a static data structure with a fixed size, while ArrayList is a dynamic data structure that can grow or shrink in size.

    • Arrays can hold primitive data types and objects, while ArrayList can only hold objects.

    • Arrays are faster than ArrayList for accessing elements, but ArrayList is more flexible and easier to work with.

  • Answered by AI
  • Q8. What does Dynamic Means
  • Ans. 

    Dynamic means constantly changing or active.

    • Constantly changing or evolving

    • Active or lively

    • Responsive to input or stimuli

    • Opposite of static or fixed

    • Examples: Dynamic websites that update in real-time, dynamic pricing in e-commerce

  • Answered by AI
  • Q9. WAP to merge 2 sorted array a and b
  • Ans. 

    Merge two sorted arrays a and b into a single sorted array

    • Create a new array to store the merged result

    • Use two pointers to iterate through arrays a and b, comparing elements and adding the smaller one to the result array

    • Handle cases where one array is longer than the other by appending the remaining elements to the result array

  • Answered by AI

Interview Preparation Tips

Topics to prepare for TransImpact Senior Qa Software Tester interview:
  • Java
  • Selenium
  • SQL
Interview preparation tips for other job seekers - The questions are mostly asked in Java and SQL. So prepare java

Skills evaluated in this interview

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 TransImpact?
Ask anonymously on communities.

Interview questions from similar companies

Interview Questionnaire 

1 Question

  • Q1. Technical questions from data warehousing and ETL Concept , SQL Queries and Unix

Senior Qa Software Tester Interview Questions Asked at Other Companies

asked in TransImpact
Q1. Can we use 'this' and 'super' keywords in the same constructor me ... read more
asked in TransImpact
Q2. What will happen if the argument is removed from the overridden m ... read more
asked in TransImpact
Q3. What will happen if we increment the equal method in overridden?
asked in TransImpact
Q4. Which OOP concepts have been used in POM in your project?
asked in TransImpact
Q5. What is a generic collection in Java?

I appeared for an interview before Sep 2020.

Round 1 - Face to Face 

(1 Question)

Round duration - 50 minutes
Round difficulty - Easy

This was a Data Structural round.

  • Q1. 

    Distinct Islands Problem Statement

    Given a two-dimensional array/list consisting of integers 0s and 1s, where 1 represents land and 0 represents water, determine the number of distinct islands. A group of...

  • Ans. 

    Count the number of distinct islands in a 2D array of 0s and 1s.

    • Identify islands by performing depth-first search (DFS) on the grid

    • Use a set to store the shape of each island and check for duplicates

    • Consider translations to determine distinct islands

  • Answered by AI
Round 2 - Face to Face 

(1 Question)

Round duration - 50 minutes
Round difficulty - Easy

This was a Data Structural round.

  • Q1. 

    Word Wrap Problem Statement

    You are tasked with arranging 'N' words of varying lengths such that each line contains at most 'M' characters, with each word separated by a space. The challenge is to minimiz...

  • Ans. 

    The goal is to minimize the total cost of arranging 'N' words on each line with a maximum character limit 'M'.

    • Calculate the cost of each line as the cube of extra space characters needed to reach 'M'.

    • Minimize the total cost by arranging words to fit within the character limit on each line.

    • Ensure each word appears fully on one line without breaking across lines.

  • Answered by AI
Round 3 - Face to Face 

(1 Question)

Round duration - 60 minutes
Round difficulty - Easy

This was a System Design round.

  • Q1. Can you design a system similar to Red Bus that can handle bookings and onboard both vendors and customers to the platform?
  • Ans. 

    Design a system similar to Red Bus for handling bookings and onboarding vendors and customers.

    • Implement a user-friendly interface for customers to search and book tickets

    • Create a vendor portal for vendors to manage their offerings and availability

    • Include payment gateway integration for secure transactions

    • Develop a robust backend system for managing bookings, cancellations, and refunds

    • Utilize a database to store user in...

  • Answered by AI
Round 4 - Face to Face 

Round duration - 50 minutes
Round difficulty - Easy

This was a System Design round

Round 5 - Face to Face 

Round duration - 50 minutes
Round difficulty - Easy

This was an HR round.

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Indian Institute of Technology Roorkee. Microsoft interview preparation:Topics to prepare for the interview - Graphs, Dynamic Programming, Arrays, LinkedList, stringsTime required to prepare for the interview - 1 monthInterview preparation tips for other job seekers

Tip 1 : Practice as much as you can.
Tip 2 : Prepare for company, not in general.
Tip 3 : Your past work should be objective and your contribution should be very clear

Application resume tips for other job seekers

Tip 1 : Keep only relevant things for the job you are applying.
Tip 2 : Minimal data with measurable contribution and effect.

Final outcome of the interviewSelected

Skills evaluated in this interview

I applied via Monster and was interviewed before Apr 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Basic java

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared

Interview Questionnaire 

2 Questions

  • Q1. Salary discussion and notice period
  • Q2. Core java, collections and coding

Interview Preparation Tips

Round: Manager Round
Experience: About project and previous company experience , daily activity

Interview Questionnaire 

2 Questions

  • Q1. About what we worked in previous company project
  • Q2. General C programming questions and previous company project questions

Software Engineer Interview Questions & Answers

Adobe user image Devendra Bendkhale

posted on 4 Dec 2015

Interview Questionnaire 

8 Questions

  • Q1. WRITE A GENERIC SWAP FUNCTION
  • Ans. 

    A generic swap function swaps two values of any data type.

    • The function should take two parameters of any data type.

    • Use a temporary variable to store the value of one parameter.

    • Assign the value of the second parameter to the first parameter.

    • Assign the value of the temporary variable to the second parameter.

  • Answered by AI
  • Q2. SEARCH AN ELEMENT IN ROTATED SORTED LINKLIST .
  • Ans. 

    Search for an element in a rotated sorted linked list.

    • Find the pivot point where the list is rotated.

    • Divide the list into two sublists based on the pivot point.

    • Perform binary search on the appropriate sublist.

    • Handle edge cases such as empty list and list with only one element.

  • Answered by AI
  • Q3. SEARCH AN ELEMENT IN ROTATED SORTED ARRAY. WRITED A CODE FOR IT
  • Ans. 

    Search an element in a rotated sorted array

    • Find the pivot point where the array is rotated

    • Divide the array into two sub-arrays based on pivot point

    • Perform binary search on the appropriate sub-array

    • Repeat until element is found or sub-array size is 1

  • Answered by AI
  • Q4. In an Array of size 95 contain numbers in range 1 to 100. each number is at max once in the array. find the 5 missing numbers in array between 1-100
  • Q5. Given sudoku as id array of size . in a given empty cell find the possible numbers that could be possible. Asked me to write code for it
  • Ans. 

    Given a Sudoku board, find possible numbers for an empty cell.

    • Iterate through empty cells and check possible numbers using row, column, and box constraints.

    • Use a set to keep track of possible numbers for each empty cell.

    • Return the set of possible numbers for the given empty cell.

  • Answered by AI
  • Q6. Given 4 unsigned integers find their integer average (eg. (2,2,2,3) => (2+2+2+3)/4 = 2) consider integer division ) without typecasting
  • Ans. 

    Find integer average of 4 unsigned integers without typecasting

    • Add all the integers and divide by 4

    • Use bit shifting to divide by 4

    • Handle overflow by using long long data type

    • Use unsigned int data type for input

  • Answered by AI
  • Q7. Write a code to identify wheter given processor is of 32 bit architecture or 64 bit architecture
  • Ans. 

    Code to identify 32 bit or 64 bit architecture of a processor

    • Check if the operating system is 32 bit or 64 bit

    • If OS is 32 bit, processor is 32 bit

    • If OS is 64 bit, check if processor supports 64 bit architecture

    • Use CPUID instruction to check if processor supports 64 bit architecture

  • Answered by AI
  • Q8. Convert a binary number into base 64 integer
  • Ans. 

    Convert binary number to base 64 integer

    • Divide the binary number into groups of 6 bits

    • Convert each group of 6 bits to decimal

    • Map the decimal value to the corresponding base 64 character

    • Concatenate the base 64 characters to form the final integer

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: SIMPLE CODING QUESTIONS SPEED MATTERS.
Duration: 60 minutes
Total Questions: 3

Skills: Analytics And Coding
College Name: IIT Guwahati

Skills evaluated in this interview

Are these interview questions helpful?

Interview Questionnaire 

6 Questions

  • Q1. Solving puzzles(25 horses,ant and sweets,height of a building..) try as many as possible before appearing for interview
  • Q2. If experienced , then project details of previous companies a must prepare question
  • Q3. Writing test cases for random scenarios
  • Ans. 

    Creating test cases for random scenarios ensures software reliability and robustness through diverse input validation.

    • Identify edge cases: Test with minimum and maximum input values, e.g., an empty array vs. a large array.

    • Use random data: Generate random inputs to simulate real-world usage, e.g., random user names or passwords.

    • Test invalid inputs: Ensure the system handles unexpected inputs gracefully, e.g., negative n...

  • Answered by AI
  • Q4. Programming in whatsoever language you r comfortable with, basic coding problems of DS,Algos. eg. Zigzag tree traversal algo,random linked list copy
  • Q5. Some people asked me questions related to the work i will do if hired in the project
  • Q6. Be genuine in ur CV, and be prepared with everything you write there.

Interview Preparation Tips

College Name: Na

Interview Preparation Tips

Round: Resume Shortlist
Experience: I had a standard resume for this company as per the norms of our institute’s placement cell. For Oracle I laid emphasis on my programming skills and projects related to it.

Round: Test
Experience: The first round was the written test that comprised of 5 sections – vocabulary, aptitude, pattern matching, logical reasoning and programming. The questions in the programming section were asked from data structures and C++. The questions in the programming section were mainly from trees (from data structures). Around 400 students appeared for their written test out of which around 100 were shortlisted.

Round: HR Interview
Experience: The next round was the interview round. They gave me some puzzles to solve and a program to write. One of the puzzles that I remember was that if I were to be given an egg then how would I determine its durability, i.e. how would I determine that from which floor do I need to throw the egg from so that the egg does not break if thrown from any floor below it.
For the coding question I was given a mathematical formula and I was asked to devise a code such that the program uses the formula and gives the output.
Tips: Prepare for Data Structures as well as the commonly asked puzzles for Oracle.

College Name: IIT ROORKEE
Motivation: Oracle is a reputed company in the space of software and ITeS. It had come to our campus with five profiles. The best means to know about all of them is to attend the pre-placement talk of the company.

I applied via Referral

Interview Preparation Tips

Round: Test
Experience: I appeared for Amdocs through Campus Recruitment Process. Section 1,2,3 was not tough, if you have practiced RD Sharma then don't worry about these sections as it was the easiest part of the written test. After that there were two coding questions in which you can choose any language(C/C++/Java) to write your code. The code were easy, I mean it wasn't like Codechef problems. If you have ever made the programming assignments by yourself then you would definitely be able to crack this section. Even if you didn't make it then you can practice coding questions like finding H.C.F, L.C.M, Removing redundant number from array, finding whether the string is palindrome or not, finding whether the number is Armstrong number or not,etc,. Now comes the technical section that was little bit tough for those who haven't studied about UNIX ever. It was consisting of C, DBMS and Unix. C questions can easily be attempt by completing "Test your C Skills by Yashwant Kanedtkar", In DBMS most of the questions were query based, some PL/SQL questions were also there, in Unix most of the questions were from VI editor commands and some linux commands like sed, uniq, fdisk and very few questions were from shell scripting like, what will be the output of echo*. Overall the test was easy, since it is easy for everyone so you need to do lots of practice because out of more than 200 students only 39 cleared the written test in our campus.
Duration: 2:30 minutes
Total Questions: 82

Skills: Implementation Of Code Using OOPS, Coding Skills, Database Management, Ability To Think, Ability To Cope Up With Stress, Ability To Deal Diplomatically, 1)communication
College Name: NIT Sikkim

TransImpact Interview FAQs

How many rounds are there in TransImpact Senior Qa Software Tester interview?
TransImpact interview process usually has 1 rounds. The most common rounds in the TransImpact interview process are Technical.
How to prepare for TransImpact Senior Qa Software Tester 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 TransImpact. The most common topics and skills that interviewers at TransImpact expect are API Testing, Automation Testing, Database Testing, JMeter and Java.
What are the top questions asked in TransImpact Senior Qa Software Tester interview?

Some of the top questions asked at the TransImpact Senior Qa Software Tester interview -

  1. Can we have this and the super keyword in the same constructor met...read more
  2. Which all oops concepts have been used in POM in your proj...read more
  3. What will happen if we increment the equal method in overrid...read more

Tell us how to improve this page.

Overall Interview Experience Rating

2/5

based on 1 interview experience

Difficulty level

Moderate 100%

Duration

Less than 2 weeks 100%
View more

Interview Questions from Similar Companies

Google Interview Questions
4.4
 • 895 Interviews
Oracle Interview Questions
3.7
 • 893 Interviews
Zoho Interview Questions
4.3
 • 536 Interviews
Amdocs Interview Questions
3.7
 • 532 Interviews
KPIT Technologies Interview Questions
3.3
 • 306 Interviews
SAP Interview Questions
4.2
 • 291 Interviews
Adobe Interview Questions
3.9
 • 247 Interviews
View all
Application Developer
5 salaries
unlock blur

₹5.6 L/yr - ₹17 L/yr

Executive Assistant
4 salaries
unlock blur

₹7 L/yr - ₹12 L/yr

Senior SEO Analyst
4 salaries
unlock blur

₹6 L/yr - ₹7.6 L/yr

Softwaretest Engineer
4 salaries
unlock blur

₹4 L/yr - ₹4.5 L/yr

IT Operations Specialist
4 salaries
unlock blur

₹3.7 L/yr - ₹7.8 L/yr

Explore more salaries
Compare TransImpact with

Oracle

3.7
Compare

Amdocs

3.7
Compare

Carelon Global Solutions

3.9
Compare

Automatic Data Processing (ADP)

4.0
Compare
write
Share an Interview