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 Softwaretest Engineer Interview Questions and Answers for Experienced

Updated 30 Mar 2023

Mediaocean Softwaretest Engineer Interview Experiences for Experienced

1 interview found

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

Interview questions from similar companies

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 - Technical 

(3 Questions)

  • Q1. How to sort the array?
  • Ans. 

    To sort an array of strings, use the built-in sort() method.

    • Use the sort() method with a callback function to specify the sorting order.

    • For ascending order, use the function (a, b) => a.localeCompare(b).

    • For descending order, use the function (a, b) => b.localeCompare(a).

  • Answered by AI
  • Q2. How to write the test cases in jira
  • Ans. 

    Test cases can be written in Jira using the 'Test' issue type and the 'Test Steps' field.

    • Create a new issue in Jira with the 'Test' issue type

    • Fill in the 'Summary' and 'Description' fields with relevant information

    • Add test steps in the 'Test Steps' field, including expected results

    • Assign the issue to the appropriate team member for execution

    • Track test execution and results in Jira

  • Answered by AI
  • Q3. How to push the code to jira
  • Ans. 

    Code can be pushed to Jira using Jira REST API or by integrating with a CI/CD tool.

    • Jira REST API can be used to create an issue and attach code to it

    • Integrating with a CI/CD tool like Jenkins can automate the process of pushing code to Jira

    • Jira plugins like Git Integration for Jira can also be used to push code to Jira

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Tell me about yourself.
  • Ans. 

    I am a Software Test Engineer with experience in testing various software applications.

    • I have a strong understanding of software testing methodologies and techniques.

    • I am proficient in using testing tools and frameworks such as Selenium and JUnit.

    • I have experience in creating test plans, test cases, and executing test scripts.

    • I am skilled in identifying and reporting software defects and working closely with developers...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Good company so you can join here.

Skills evaluated in this interview

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

Basic OOP questions for python programming language

Round 2 - HR 

(2 Questions)

  • Q1. What's abstraction
  • Ans. 

    Abstraction is the concept of hiding complex implementation details and showing only the necessary information to the user.

    • Abstraction allows users to focus on what an object does instead of how it does it

    • It helps in reducing complexity and improving efficiency in software development

    • Example: In object-oriented programming, abstract classes and interfaces are used to achieve abstraction

  • Answered by AI
  • Q2. What's the difference between SQL and NoSQL database
  • Ans. 

    SQL databases are relational databases with structured data, while NoSQL databases are non-relational databases with flexible, unstructured data.

    • SQL databases use structured query language for defining and manipulating data, while NoSQL databases use different query languages or APIs.

    • SQL databases are table-based, with a predefined schema, while NoSQL databases are document, key-value, wide-column, or graph-based.

    • SQL d...

  • Answered by AI
Round 3 - Technical 

(2 Questions)

  • Q1. Reverse a linked list
  • Ans. 

    Reverse a linked list by changing the direction of pointers

    • Start with three pointers: current, prev, and next

    • Iterate through the linked list, updating pointers to reverse the direction

    • Update the head of the linked list to the last node after reversing

  • Answered by AI
  • Q2. Implement binary search algorithm
  • Ans. 

    Binary search algorithm efficiently finds the target value in a sorted array.

    • Start by defining the low and high indices of the array.

    • Calculate the mid index and compare the target value with the value at mid.

    • If target is less than mid value, update high to mid-1; if greater, update low to mid+1.

    • Repeat until target is found or low is greater than high.

  • Answered by AI
Round 4 - One-on-one 

(2 Questions)

  • Q1. Brief Introduction and basic questions
  • Q2. Future plans and how am i going to achieve them

Skills evaluated in this interview

I applied via Approached by Company and was interviewed before Feb 2021. There were 2 interview rounds.

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 - HR 

(4 Questions)

  • Q1. Why should we hire you?
  • Q2. Why are you looking for a change?
  • Q3. Where do you see yourself in 5 years?
  • Q4. What are your strengths and weaknesses?

Interview Preparation Tips

Interview preparation tips for other job seekers - Mindfire all collegue are very much supportive & co-operative .My exprience was very nice with team
Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Technical 

(2 Questions)

  • Q1. About yourself, selenium waits, failures u faced,
  • Q2. == and. equals() difference
  • Ans. 

    The difference between == and .equals() in Java

    • The == operator checks if two objects reference the same memory location

    • The .equals() method checks if two objects have the same content

    • For primitive data types, == compares values while .equals() is not applicable

    • For objects, == compares memory addresses while .equals() compares content

    • Example: String str1 = new String("hello"); String str2 = new String("hello"); str1 == ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident.

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Find 2 nd highest number

Round 2 - Technical 

(1 Question)

  • Q1. Basic java and selenium interview questions
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Mostly question regarding projects in resume

I applied via Company Website and was interviewed before Jul 2021. There were 3 interview rounds.

Round 1 - Coding Test 

5 coding questions you have to complete atleast 4

Round 2 - HR 

(1 Question)

  • Q1. About yourself and technology related questions ,it can 1 or 1 and half an hour round
Round 3 - Aptitude Test 

Basic aptitude questions

Interview Preparation Tips

Topics to prepare for Mindfire Solutions Associate Software Engineer interview:
  • Java
  • Laravel
  • PHP
  • Javascript
  • Javascript Frameworks
Interview preparation tips for other job seekers - Great place ,Great team and growth in work everything you can find here.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Oct 2023. There were 2 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Center div using 3 approaches
  • Ans. 

    Three approaches to center a div element

    • Using CSS flexbox: set display property of parent element to flex and justify-content to center

    • Using CSS grid: set display property of parent element to grid and place the div in the center grid area

    • Using margin: set margin property of the div to auto

  • Answered by AI
  • Q2. Display use of setTimeout
  • Ans. 

    setTimeout is a function in JavaScript used to execute a function after a specified amount of time.

    • setTimeout(function, milliseconds) is used to delay the execution of a function by a specified number of milliseconds.

    • Example: setTimeout(() => { console.log('Hello, world!'); }, 2000) will log 'Hello, world!' after 2 seconds.

  • Answered by AI
Round 2 - Coding Test 

Asked me to create a carousel component

Skills evaluated in this interview

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

I applied via LinkedIn and was interviewed in Mar 2024. There were 4 interview rounds.

Round 1 - Coding Test 

First round was coding test conducted by their IDE where you can program in any language like on hackerrank IDE . 5 question were asked from easy to hard

Round 2 - Psychometric Test 

(2 Questions)

  • Q1. They ask me about my though on social media
  • Q2. They give me a situation to handle the work load
Round 3 - Technical 

(2 Questions)

  • Q1. Difference between stack and heap ?
  • Ans. 

    Stack is used for static memory allocation and stores local variables, while heap is used for dynamic memory allocation and stores objects.

    • Stack memory is allocated in a contiguous block and is faster to access compared to heap memory.

    • Variables stored on the stack have limited scope and lifetime, while objects on the heap can persist beyond the scope of the function.

    • Stack memory is managed by the compiler, while heap m...

  • Answered by AI
  • Q2. Difference between complier and interpreter ?
  • Ans. 

    Compiler translates entire code into machine code before execution, while interpreter translates code line by line during execution.

    • Compiler translates entire code into machine code before execution

    • Interpreter translates code line by line during execution

    • Compiler generates error messages after scanning entire code

    • Interpreter stops at first error encountered

    • Examples: C, C++ use compilers; Python, Ruby use interpreters

  • Answered by AI
Round 4 - HR 

(2 Questions)

  • Q1. My introduction
  • Q2. I can i mange to work proficiency

Interview Preparation Tips

Interview preparation tips for other job seekers - be enough smart to give an answer and if don't know then say sorry don't know

Mediaocean Interview FAQs

What are the top questions asked in Mediaocean Softwaretest Engineer interview for experienced candidates?

Some of the top questions asked at the Mediaocean Softwaretest Engineer interview for experienced candidates -

  1. Fundamentals of test...read more
  2. Mostly client handling and issue handling related question Like how you will de...read more
  3. Some question related to performance test...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

JustDial Interview Questions
3.5
 • 329 Interviews
Times Internet Interview Questions
3.6
 • 63 Interviews
InMobi Interview Questions
3.5
 • 35 Interviews
Quikr Interview Questions
3.7
 • 31 Interviews
RGBSI Interview Questions
3.5
 • 24 Interviews
MapmyIndia Interview Questions
3.7
 • 24 Interviews
Backbase Interview Questions
3.9
 • 22 Interviews
View all
Mediaocean Softwaretest Engineer Salary
based on 18 salaries
₹7.1 L/yr - ₹14 L/yr
92% more than the average Softwaretest Engineer Salary in India
View more details

Mediaocean Softwaretest Engineer Reviews and Ratings

based on 3 reviews

2.2/5

Rating in categories

2.0

Skill development

2.2

Work-life balance

2.0

Salary

2.2

Job security

2.4

Company culture

2.0

Promotions

2.2

Work satisfaction

Explore 3 Reviews and Ratings
Software Engineer
43 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
41 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Developer
37 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Developer
20 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Softwaretest Engineer
18 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Mediaocean with

Amagi Media Labs

3.3
Compare

ZAPR Media Labs

4.4
Compare

Komli Media

4.0
Compare

InMobi

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