Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Mediaocean Team. If you also belong to the team, you can get access from here

Mediaocean Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Mediaocean Interview Questions and Answers

Updated 24 Apr 2025
Popular Designations

10 Interview questions

A Senior Software Engineer Testing was asked 2mo ago
Q. What is test planning?
Ans. 

Test planning is the process of defining the scope, approach, resources, and schedule for testing activities.

  • Defines objectives: Establishes what needs to be tested, e.g., functionality, performance.

  • Identifies resources: Determines team roles, tools, and environments needed for testing.

  • Establishes timelines: Sets deadlines for different testing phases, e.g., unit testing, integration testing.

  • Risk assessment: Ident...

View all Senior Software Engineer Testing interview questions
An Associate Software Engineer was asked 4mo ago
Q. Write SQL queries to find the second highest value in a table.
Ans. 

Use subquery to get 2nd highest value in SQL

  • Use ORDER BY clause to sort the values in descending order

  • Use LIMIT 1 OFFSET 1 to skip the first highest value

  • Alternatively, use a subquery to select the max value excluding the highest value

View all Associate Software Engineer interview questions
A Senior Software Test Engineer was asked 7mo ago
Q. What is client-side and server-side testing?
Ans. 

Client side testing is testing the application on the client side, while server side testing is testing the application on the server side.

  • Client side testing involves testing the user interface, functionality, and performance of the application on the client side.

  • Server side testing involves testing the server components, databases, and APIs of the application on the server side.

  • Examples of client side testing in...

View all Senior Software Test Engineer interview questions
A Senior Software Test Engineer was asked 7mo ago
Q. What is the first thing you will do after finding a bug?
Ans. 

I will document the bug by providing detailed steps to reproduce, screenshots, and any other relevant information.

  • Document the bug by providing detailed steps to reproduce

  • Include screenshots or videos if applicable

  • Provide any relevant logs or error messages

  • Assign priority and severity to the bug

View all Senior Software Test Engineer interview questions
A Senior Software Test Engineer was asked 7mo ago
Q. How would you convince me that you need 8 hours for GUI testing when I believe it can be completed in 2 hours?
Ans. 

Testing requires thoroughness; GUI testing needs time for comprehensive coverage and quality assurance.

  • GUI testing involves various scenarios, including user interactions, which can be complex and time-consuming.

  • For example, testing different screen resolutions and browser compatibility requires extensive checks.

  • Automated tests can speed up the process, but initial setup and maintenance still require significant t...

View all Senior Software Test Engineer interview questions
An UI Developer was asked 8mo ago
Q. What are closures in JavaScript?
Ans. 

Closures in JavaScript are functions that have access to variables from their outer scope even after the outer function has finished executing.

  • Closures allow for maintaining state in an asynchronous environment

  • They are created whenever a function is defined within another function

  • Example: function outerFunction() { let outerVar = 'I am outer'; return function innerFunction() { console.log(outerVar); }; }

View all UI Developer interview questions
An UI Developer was asked 8mo ago
Q. Is NaN === NaN?
Ans. 

In JavaScript, NaN is not equal to itself, so NaN === NaN evaluates to false.

  • NaN stands for 'Not-a-Number' and is a special value in JavaScript.

  • According to the IEEE floating-point standard, NaN is not equal to any value, including itself.

  • Example: console.log(NaN === NaN); // false

  • To check if a value is NaN, use the isNaN() function: isNaN(NaN); // true

View all UI Developer interview questions
Are these interview questions helpful?
A Software Testing Engineer was asked
Q. Write a complex SQL query.
Ans. 

Creating complex SQL queries involves multiple joins, subqueries, and aggregations to retrieve specific data efficiently.

  • Use JOINs to combine data from multiple tables. Example: SELECT * FROM Orders JOIN Customers ON Orders.CustomerID = Customers.CustomerID;

  • Utilize subqueries for filtering results. Example: SELECT * FROM Products WHERE ProductID IN (SELECT ProductID FROM OrderDetails WHERE Quantity > 10);

  • Implem...

View all Software Testing Engineer interview questions
A Senior Software Test Engineer was asked 7mo ago
Q. Different approaches of testing
Ans. 

Different approaches of testing include black box testing, white box testing, regression testing, and exploratory testing.

  • Black box testing focuses on the functionality of the software without knowledge of its internal code.

  • White box testing examines the internal code and structure of the software.

  • Regression testing ensures that new code changes do not adversely affect existing functionality.

  • Exploratory testing in...

View all Senior Software Test Engineer interview questions
A Softwaretest Engineer was asked
Q. Fundamentals of testing
Ans. 

Fundamentals of testing involve understanding the purpose, techniques, and principles of software testing.

  • Testing is done to identify defects and ensure quality

  • Techniques include black box, white box, and grey box testing

  • Principles include exhaustive testing is impossible, early testing, and defect clustering

  • Testing should be planned, designed, executed, and evaluated

View all Softwaretest Engineer interview questions

Mediaocean Interview Experiences

9 interviews found

UI Developer Interview Questions & Answers

user image Anonymous

posted on 16 Oct 2024

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

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

Round 1 - One-on-one 

(1 Question)

  • Q1. What are closures in javascript
  • Ans. 

    Closures in JavaScript are functions that have access to variables from their outer scope even after the outer function has finished executing.

    • Closures allow for maintaining state in an asynchronous environment

    • They are created whenever a function is defined within another function

    • Example: function outerFunction() { let outerVar = 'I am outer'; return function innerFunction() { console.log(outerVar); }; }

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Is NaN === NaN
  • Ans. 

    In JavaScript, NaN is not equal to itself, so NaN === NaN evaluates to false.

    • NaN stands for 'Not-a-Number' and is a special value in JavaScript.

    • According to the IEEE floating-point standard, NaN is not equal to any value, including itself.

    • Example: console.log(NaN === NaN); // false

    • To check if a value is NaN, use the isNaN() function: isNaN(NaN); // true

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. How do you handle stressful situations?
  • Ans. 

    I handle stressful situations by staying calm, prioritizing tasks, and seeking support when needed.

    • I prioritize tasks to focus on what needs to be done first

    • I take breaks to clear my mind and refocus

    • I communicate with team members or supervisors for guidance and support

    • I practice mindfulness techniques such as deep breathing or meditation

  • Answered by AI

Skills evaluated in this interview

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

I appeared for an interview in May 2024.

Round 1 - One-on-one 

(6 Questions)

  • Q1. What is Client side and server side testing?
  • Ans. 

    Client side testing is testing the application on the client side, while server side testing is testing the application on the server side.

    • Client side testing involves testing the user interface, functionality, and performance of the application on the client side.

    • Server side testing involves testing the server components, databases, and APIs of the application on the server side.

    • Examples of client side testing include...

  • Answered by AI
  • Q2. What is the 1st thing you will do after finding a bug?
  • Ans. 

    I will document the bug by providing detailed steps to reproduce, screenshots, and any other relevant information.

    • Document the bug by providing detailed steps to reproduce

    • Include screenshots or videos if applicable

    • Provide any relevant logs or error messages

    • Assign priority and severity to the bug

  • Answered by AI
  • Q3. Different approaches of testing
  • Ans. 

    Different approaches of testing include black box testing, white box testing, regression testing, and exploratory testing.

    • Black box testing focuses on the functionality of the software without knowledge of its internal code.

    • White box testing examines the internal code and structure of the software.

    • Regression testing ensures that new code changes do not adversely affect existing functionality.

    • Exploratory testing involve...

  • Answered by AI
  • Q4. Roles and responsibilities
  • Q5. How will convince me if you require 8hrs for testing but i will say complete in 2 hrs if its a GUI related testing?
  • Ans. 

    Testing requires thoroughness; GUI testing needs time for comprehensive coverage and quality assurance.

    • GUI testing involves various scenarios, including user interactions, which can be complex and time-consuming.

    • For example, testing different screen resolutions and browser compatibility requires extensive checks.

    • Automated tests can speed up the process, but initial setup and maintenance still require significant time i...

  • Answered by AI
  • Q6. What is front end and backend of your project or what is front end and backend tesing?
  • Ans. 

    Front end is the user interface of the project that users interact with, while backend is the server, application, and database that work behind the scenes.

    • Front end includes elements like buttons, menus, forms, and design layout.

    • Backend involves server-side scripting, databases, and server configuration.

    • Front end testing focuses on user experience, functionality, and design.

    • Backend testing checks data processing, serv...

  • Answered by AI

Skills evaluated in this interview

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

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

  • Q1. What was your role in your most recent project?
  • Q2. What according to you is test planning?
  • Ans. 

    Test planning is the process of defining the scope, approach, resources, and schedule for testing activities.

    • Defines objectives: Establishes what needs to be tested, e.g., functionality, performance.

    • Identifies resources: Determines team roles, tools, and environments needed for testing.

    • Establishes timelines: Sets deadlines for different testing phases, e.g., unit testing, integration testing.

    • Risk assessment: Identifies...

  • Answered by AI

Associate Engineer Interview Questions & Answers

user image Trupti Ingole

posted on 1 Feb 2025

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

All aptitude-related questions.

Round 2 - Coding Test 

Technical and coding rounds.

Round 3 - Technical 

(1 Question)

  • Q1. Techni managerial round where they test your logical thinking and teamwork skill
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview before Mar 2024.

Round 1 - Aptitude Test 

Basic Speed and Train questions.

Round 2 - Coding Test 

Arrays, strings and map related programs

Round 3 - Case Study 

Tests put thinking process

Round 4 - Technical 

(2 Questions)

  • Q1. Java related like polymorphism, maps and oops concepts
  • Q2. Sql queries to get 2nd highest
  • Ans. 

    Use subquery to get 2nd highest value in SQL

    • Use ORDER BY clause to sort the values in descending order

    • Use LIMIT 1 OFFSET 1 to skip the first highest value

    • Alternatively, use a subquery to select the max value excluding the highest value

  • Answered by AI
Round 5 - HR 

(2 Questions)

  • Q1. Ambition and what you want to do
  • Ans. 

    I am ambitious and passionate about advancing my skills in software engineering to work on cutting-edge technologies and make a positive impact.

    • I have a strong desire to continuously learn and grow in my career.

    • I am motivated to work on challenging projects that push me out of my comfort zone.

    • I aspire to become a subject matter expert in a specific area of software development, such as machine learning or cybersecurity...

  • Answered by AI
  • Q2. Career goals
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
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 - Aptitude Test 

Aptitude - 60 minutes - 4 Sections 15 minutes Each

Round 3 - Group Discussion 

Discuss A random topic given to you by the manager

Round 4 - Technical 

(1 Question)

  • Q1. Some Technical Questions Related to your field
Round 5 - HR 

(1 Question)

  • Q1. Basic HR Questions

Interview Questions & Answers

user image Anonymous

posted on 6 Jul 2021

I applied via Recruitment Consultant and was interviewed in Jun 2021. There were 3 interview rounds.

Interview Questionnaire 

6 Questions

  • Q1. About previous projects, data validations, issues faced and resolution, team hierarchy, daily tasks and R&R
  • Q2. Sql queries based on scenarios, indexes, analytical and aggregative functions, joins, sql tuning
  • Q3. DBMS - olap and oltp, data migration and data warehousing, data modelling
  • Q4. DSA - complexity, code snippet/algorithms, optimizing algorithms
  • Q5. Any personal/professional python projects done, modules used, purpose
  • Q6. Scenario based approach - sorting 1 tb file using system of 1 gb ram

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared with optimized approach for dsa solutions and knowledge of various data structures a available. Well versed with handling huge data sets.

Skills evaluated in this interview

I applied via Approached by Company and was interviewed in Mar 2021. There were 4 interview rounds.

Interview Questionnaire 

7 Questions

  • Q1. It was one to one VP round
  • Q2. Mostly client handling and issue handling related question Like how you will deal with this problem Or that problem
  • Q3. Question related to testing
  • Q4. Current roles and responsibility
  • Ans. 

    I am currently working as a Software Test Engineer.

    • Designing and executing test cases to ensure software quality

    • Identifying and reporting software defects

    • Collaborating with developers and stakeholders to resolve issues

    • Creating and maintaining test documentation

    • Participating in test planning and strategy discussions

  • Answered by AI
  • Q5. Fundamentals of testing
  • Ans. 

    Fundamentals of testing involve understanding the purpose, techniques, and principles of software testing.

    • Testing is done to identify defects and ensure quality

    • Techniques include black box, white box, and grey box testing

    • Principles include exhaustive testing is impossible, early testing, and defect clustering

    • Testing should be planned, designed, executed, and evaluated

  • Answered by AI
  • Q6. Some question related to performance testing
  • Q7. Few question related to automation

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident, be yourself, always mentioned
What you know and what do have done in resume dont try to fake like
Like
Mujhe java aata , mujhe python bhi aata
Aise mat dalo CV mae

Skills evaluated in this interview

I applied via LinkedIn and was interviewed in Mar 2021. There were 5 interview rounds.

Interview Questionnaire 

5 Questions

  • Q1. Need to clear aptitude test first.
  • Q2. Tell me about yourself
  • Q3. Writing complex SQL query
  • Ans. 

    Creating complex SQL queries involves multiple joins, subqueries, and aggregations to retrieve specific data efficiently.

    • Use JOINs to combine data from multiple tables. Example: SELECT * FROM Orders JOIN Customers ON Orders.CustomerID = Customers.CustomerID;

    • Utilize subqueries for filtering results. Example: SELECT * FROM Products WHERE ProductID IN (SELECT ProductID FROM OrderDetails WHERE Quantity > 10);

    • Implement G...

  • Answered by AI
  • Q4. Question related to manual testing
  • Q5. Question related to agile methodologies & Jira

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident , be yourself

Top trending discussions

View All
Office Jokes
2w
an executive
CTC ≠ Confidence Transfer Credit
Ab toh aisa lagta hai, chillar jaise salary ke liye main kaju katli ban ke jaa rahi hoon. Samajh nahi aata, main zyada ready ho ke jaa rahi hoon ya ye mujhe kam pay kar rahe hain? #CorporateLife #OfficeJokes #UnderpaidButWellDressed
FeedCard Image
Got a question about Mediaocean?
Ask anonymously on communities.

Interview questions from similar companies

I applied via Campus Placement and was interviewed before May 2020. There were 5 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Basic SQL Queries, some very basic Java questions, the interviewer herself didn't know much about coding in general.

Interview Preparation Tips

Interview preparation tips for other job seekers - Yodlee is a big company will several departments, every department has its own requirements.

I was inducted into the IAE department as an ASE through pool-campus placement.

The issue at Yodlee is that it's IAE department that they actively hire for, is the worst department as far as technical growth and knowledge are concerned. There is no learning. Hence usually the interviewers (mostly the directors, managers, and leads in IAE) who have been in the organization for a very large part of their career, are also very weak as far as their technical skills are concerned. Their political and toxic managerial skills skyrocket though. They stay there for too long and become virtually outdated in terms of their technical skills.

Therefore you can rest be assured that the interview quality will be well below average as far as IAE is concerned. I am not sure about other departments, but I would not assume otherwise. I would suggest, if you have to absolutely join IAE in Yodlee, just an average preparation would be more than enough. If you have other opportunities, I would suggest prioritizing them over Yodlee.

Mediaocean Interview FAQs

How many rounds are there in Mediaocean interview?
Mediaocean interview process usually has 3-4 rounds. The most common rounds in the Mediaocean interview process are Technical, Aptitude Test and HR.
How to prepare for Mediaocean 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 Mediaocean. The most common topics and skills that interviewers at Mediaocean expect are SQL, Hibernate, Java, Spring and Javascript.
What are the top questions asked in Mediaocean interview?

Some of the top questions asked at the Mediaocean interview -

  1. How will convince me if you require 8hrs for testing but i will say complete in...read more
  2. What is the 1st thing you will do after finding a b...read more
  3. Scenario based approach - sorting 1 tb file using system of 1 gb ...read more

Tell us how to improve this page.

Overall Interview Experience Rating

4.3/5

based on 6 interview experiences

Difficulty level

Easy 25%
Moderate 75%

Duration

Less than 2 weeks 75%
2-4 weeks 25%
View more

Interview Questions from Similar Companies

Mobileum Interview Questions
3.3
 • 38 Interviews
SOTI Interview Questions
3.2
 • 24 Interviews
Backbase Interview Questions
3.7
 • 23 Interviews
FinThrive Interview Questions
3.7
 • 21 Interviews
Bentley Systems Interview Questions
4.3
 • 21 Interviews
3Pillar Global Interview Questions
3.2
 • 20 Interviews
Mentor Graphics Interview Questions
4.0
 • 18 Interviews
Yodlee Interview Questions
3.8
 • 17 Interviews
View all

Mediaocean Reviews and Ratings

based on 93 reviews

3.9/5

Rating in categories

3.6

Skill development

4.1

Work-life balance

3.5

Salary

3.8

Job security

4.2

Company culture

3.4

Promotions

3.6

Work satisfaction

Explore 93 Reviews and Ratings
Senior Software Engineer
49 salaries
unlock blur

₹9.9 L/yr - ₹17 L/yr

Software Engineer
43 salaries
unlock blur

₹5.4 L/yr - ₹17 L/yr

Software Developer
35 salaries
unlock blur

₹5.3 L/yr - ₹20.2 L/yr

Softwaretest Engineer
20 salaries
unlock blur

₹7.7 L/yr - ₹14.6 L/yr

Senior Software Engineer Testing
17 salaries
unlock blur

₹8.5 L/yr - ₹16 L/yr

Explore more salaries
Compare Mediaocean with

Duck Creek Technologies

4.4
Compare

FinThrive

3.7
Compare

Mobileum

3.3
Compare

OnProcess Technology

3.8
Compare
write
Share an Interview