Upload Button Icon Add office photos

Filter interviews by

Operative Media Senior QA Engineer Interview Questions and Answers

Updated 23 Mar 2024

Operative Media Senior QA Engineer Interview Experiences

1 interview found

Senior QA Engineer Interview Questions & Answers

user image Sunny Thakre

posted on 23 Mar 2024

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 were 3 interview rounds.

Round 1 - Coding Test 

Basic Java and Selenium Coding Round

Round 2 - Technical 

(1 Question)

  • Q1. 1)Frame Work 2)Java Oops Concept 3)API Testing 4)Some DB Questions
Round 3 - HR 

(1 Question)

  • Q1. 1)Salary Discussion 2)Company Overview

Interview questions from similar companies

I applied via Job Portal and was interviewed in Oct 2021. There were 3 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. One leetcode question on stack 2nd question - Print all the paths in a maze if a rat can go up down left and right.
Round 2 - One-on-one 

(1 Question)

  • Q1. A scenario based question where a server interface was given which handed out jobs. We had to write a class in which we tell the current job we are waiting for acknowledgement. Also, on receiving acknowled...
Round 3 - One-on-one 

(1 Question)

  • Q1. Half an hour round with the manager. Questions on java, spring, hibernate, multithreading. Also question on the current project who are working on in any organisation.

Interview Preparation Tips

Interview preparation tips for other job seekers - Know DSA and when to use which data structure and are good in java and know basucs of Spring, hibernate aur multithreading.

I applied via Naukri.com and was interviewed before May 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Tell me about yourself ?

Interview Preparation Tips

Interview preparation tips for other job seekers - R1 : 10 logical thinking questions
R2 :HR Round
R3: MD

I applied via Naukri.com and was interviewed before Oct 2019. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Resume, achievements, market dynamics
  • Q2. Case studies on Market operations , targets achievements

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident, Answer politely and clearly...Dont beat on the bush
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Jun 2023. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. React Hooks , Virtual Dom , and other some basic ReactJS questions .
  • Q2. JavaScript ES6 questions and some basic logical Coding questions .
Round 2 - Technical 

(4 Questions)

  • Q1. JavaScript advance questions such as - Promise , Async awit
  • Q2. Logical Coding question and Events.
  • Q3. OOPs Concepts and Functions.
  • Ans. 

    OOPs Concepts focus on encapsulation, inheritance, polymorphism, and abstraction. Functions are reusable blocks of code.

    • OOPs Concepts include encapsulation, inheritance, polymorphism, and abstraction.

    • Encapsulation involves bundling data and methods that operate on the data into a single unit.

    • Inheritance allows a class to inherit properties and behavior from another class.

    • Polymorphism enables objects to be treated as in...

  • Answered by AI
  • Q4. High order Component , Call back functions

Interview Preparation Tips

Topics to prepare for Birdeye Software Engineer interview:
  • Events
  • Es6
  • classes and objects
Interview preparation tips for other job seekers - Be conscise and keep your answer clear and to the point.
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Approached by Company and was interviewed in Oct 2024. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Javascript basic question asked like closure hoisting some output based question
Round 2 - Technical 

(1 Question)

  • Q1. React app optimization and advanced hooks
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
-
Result
-

I appeared for an interview in Mar 2025, where I was asked the following questions.

  • Q1. Internal working of hashmap
  • Ans. 

    A HashMap in Java uses a hash table for storing key-value pairs, allowing for efficient data retrieval.

    • 1. HashMap stores data in key-value pairs, where each key is unique.

    • 2. It uses an array of buckets to store entries, where each bucket can hold multiple entries in case of collisions.

    • 3. The hash function computes an index based on the key's hash code, determining where to store the entry.

    • 4. When a collision occurs, Ha...

  • Answered by AI
  • Q2. Two sum problem

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed in Jun 2024. There was 1 interview round.

Round 1 - Technical 

(5 Questions)

  • Q1. What is the difference between final, finalize and finally?
  • Ans. 

    final is a keyword used to declare constants, finalize is a method used for cleanup operations, and finally is a block used for exception handling.

    • final is a keyword in Java used to declare constants that cannot be changed, like final int x = 10;

    • finalize is a method in Java used for cleanup operations before an object is garbage collected, like protected void finalize() {...}

    • finally is a block in Java used for exceptio...

  • Answered by AI
  • Q2. What is the difference between POST and PUT HTTP method?
  • Ans. 

    POST is used to create a new resource, while PUT is used to update an existing resource.

    • POST is non-idempotent, meaning multiple identical requests will create multiple resources.

    • PUT is idempotent, meaning multiple identical requests will have the same effect as a single request.

    • POST is often used for creating new records in a database.

    • PUT is often used for updating existing records in a database.

  • Answered by AI
  • Q3. What does System.exit() do?
  • Ans. 

    System.exit() is a method in Java that terminates the currently running Java Virtual Machine.

    • System.exit() terminates the JVM and shuts down the program immediately.

    • It takes an integer argument as an exit status code.

    • Calling System.exit(0) indicates successful termination.

    • System.exit(1) or any non-zero value indicates abnormal termination.

  • Answered by AI
  • Q4. Coding question on switch statement
  • Q5. Algorithm to find the element in an array such that sum of elements on either side of the element are equal
  • Ans. 

    Algorithm to find element in array with equal sum on both sides

    • Iterate through array and calculate sum of elements on left and right side of each element

    • Compare sums on both sides for each element to find the desired element

    • Return the element if found, otherwise return -1

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Birdeye Senior Test Engineer interview:
  • Core Java
  • Exception handling
  • Collections

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Hard
Process Duration
2-4 weeks
Result
No response

I applied via Naukri.com and was interviewed in May 2024. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. Explain frame work,java code for real time scenatios
  • Ans. 

    A framework in Java is a reusable set of libraries, tools, and guidelines for developing software applications.

    • Frameworks provide structure and guidelines for organizing code and implementing common functionalities.

    • Java code in a framework typically includes classes, interfaces, methods, and annotations.

    • Real-time scenarios in QA testing may involve automated testing, data validation, and performance testing.

    • Example: Us...

  • Answered by AI
  • Q2. Reverse of a string,find digits in string
  • Ans. 

    Reverse a string and find digits in the string.

    • Use a loop to iterate through the characters of the string and build the reversed string.

    • Use a regular expression to find digits in the string.

    • Return the reversed string and the digits found in the string.

  • Answered by AI
  • Q3. Contributions in framework development
  • Ans. 

    I have contributed to the development of automation frameworks by designing reusable components and implementing best practices.

    • Designed and implemented custom test automation frameworks using tools like Selenium and Appium

    • Created reusable functions and libraries to improve code reusability and maintainability

    • Integrated automation scripts with continuous integration tools like Jenkins for automated testing

    • Contributed t...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - try hard its not so easy total 4 rounds

Skills evaluated in this interview

Senior QA Engineer Interview Questions & Answers

Soft Serve user image Наталя Скоробогатих

posted on 3 Dec 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
2-4 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before Dec 2023. There was 1 interview round.

Round 1 - HR 

(2 Questions)

  • Q1. Tell me about you experience
  • Q2. Where you want to develop your skills

Operative Media Interview FAQs

How many rounds are there in Operative Media Senior QA Engineer interview?
Operative Media interview process usually has 3 rounds. The most common rounds in the Operative Media interview process are Coding Test, Technical and HR.

Tell us how to improve this page.

Operative Media Senior QA Engineer Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

Birdeye Interview Questions
3.8
 • 25 Interviews
Cheil India Interview Questions
3.0
 • 17 Interviews
SRV Media Interview Questions
3.3
 • 15 Interviews
Machintel Interview Questions
2.8
 • 10 Interviews
Performics Interview Questions
3.8
 • 10 Interviews
Techmagnate Interview Questions
4.0
 • 10 Interviews
Hansa Cequity Interview Questions
3.1
 • 9 Interviews
View all
Operative Media Senior QA Engineer Salary
based on 18 salaries
₹11.7 L/yr - ₹26.5 L/yr
91% more than the average Senior QA Engineer Salary in India
View more details
Senior Software Engineer
97 salaries
unlock blur

₹10.1 L/yr - ₹31.1 L/yr

Software Engineer
91 salaries
unlock blur

₹4.7 L/yr - ₹20 L/yr

Principal Software Engineer
50 salaries
unlock blur

₹27.5 L/yr - ₹45 L/yr

QA Engineer
33 salaries
unlock blur

₹5 L/yr - ₹14 L/yr

Junior Software Engineer
19 salaries
unlock blur

₹6.5 L/yr - ₹8 L/yr

Explore more salaries
Compare Operative Media with

Franchise India Brands

2.1
Compare

Echobooom Management & Entrepreneurial Solutions

3.6
Compare

Cheil India

3.0
Compare

VSynergize Outsourcing

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