Upload Button Icon Add office photos

Planetcast

Compare button icon Compare button icon Compare

Filter interviews by

Clear (1)

Planetcast Softwaretest Engineer Interview Questions and Answers

Updated 13 Feb 2025

Planetcast Softwaretest Engineer Interview Experiences

2 interviews found

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

I was interviewed in Aug 2024.

Round 1 - Technical 

(2 Questions)

  • Q1. How react works and how javascript works
  • Ans. 

    React is a JavaScript library for building user interfaces, while JavaScript is a programming language used for web development.

    • React is a library for building UI components that update dynamically based on data changes.

    • React uses a virtual DOM to efficiently update the actual DOM.

    • JavaScript is a programming language used to create interactive elements on web pages.

    • JavaScript can be used to manipulate HTML elements, ha...

  • Answered by AI
  • Q2. Some questions about array and objects
Round 2 - Coding Test 

The fundamental concept of your work should be clearly defined in a software project.

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

I applied via Naukri.com and was interviewed before May 2023. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. OOPs concepts + solid principal
Round 2 - HR 

(1 Question)

  • Q1. Small discussion on technology then negotiations

Interview Preparation Tips

Interview preparation tips for other job seekers - Be clear with technology's basics and be confident while commmunicating

Softwaretest Engineer Interview Questions Asked at Other Companies

asked in Playablo
Q1. What is boundary value analysis? How do u perform boundary value ... read more
asked in Playablo
Q2. If u get a blocker defect just the previous day of ur release dat ... read more
Q3. 1. What is STLC, SDLC 2. What is the bug Life cycle. 3. Differenc ... read more
Q4. - Print the frequency of each alphabet for the given string. - Sw ... read more
asked in Playablo
Q5. Write Sql query for displaying total number of students from chil ... read more

Interview questions from similar companies

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 Naukri.com and was interviewed in Jan 2022. 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 Resume tips
Round 2 - Aptitude Test 

Software testing

Interview Preparation Tips

Interview preparation tips for other job seekers - Networking knowledge, python programming
Manual and Automation testing
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

The question is midium level.

I applied via Campus Placement and was interviewed before Jun 2019. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Core php, redis, solr

Interview Preparation Tips

Interview preparation tips for other job seekers - Explain what projects you have worked on.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed in Jan 2023. There were 3 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 Resume tips
Round 2 - Technical 

(1 Question)

  • Q1. - MVVM & Clean Architecture - Protocol Oriented Programming and other iOS Basics - AVFoundation, AVPlayer, DRM (Digital Right Management) - Offline Playback - Live Streaming (Linear Streaming) - Core Data...
Round 3 - One-on-one 

(1 Question)

  • Q1. Scenario Based System Design like - Design the homepage of Zee5 - Design Player of infinite feeds

Interview Preparation Tips

Interview preparation tips for other job seekers - - Brush up the basics of iOS
- Be good in architecture pattern
- Gather Knowledge on Player
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Coding Test 

2 Questions - 1 graph and one basic

Round 2 - Technical 

(1 Question)

  • Q1. 2 basic coding questions and questions on OS and DBMS

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare basics
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is the use of ref?
  • Ans. 

    The 'ref' keyword in C# is used to pass arguments by reference instead of by value.

    • Allows a method to modify the value of the argument passed to it

    • Useful when you want to update the original value of a variable inside a method

    • Can be used with value types and reference types

    • Example: void UpdateValue(ref int num) { num = 10; }

    • Example: int value = 5; UpdateValue(ref value); // value will be 10 after the method call

  • Answered by AI
  • Q2. What are React Hooks
  • Ans. 

    React Hooks are functions that let you use state and other React features without writing a class.

    • React Hooks were introduced in React 16.8.

    • They allow you to use state and other React features in functional components.

    • Some commonly used React Hooks are useState, useEffect, useContext, etc.

    • Hooks are more lightweight and easier to understand compared to class components.

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Jun 2022. 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 Resume tips
Round 2 - Technical 

(3 Questions)

  • Q1. Linux commands,
  • Q2. Cloud technologies different services (iaas, paas, saas)
  • Ans. 

    Cloud technologies offer different services like IaaS, PaaS, and SaaS for varying levels of control and management.

    • IaaS (Infrastructure as a Service) provides virtualized computing resources over the internet, such as virtual servers and storage.

    • PaaS (Platform as a Service) offers a platform allowing customers to develop, run, and manage applications without dealing with infrastructure.

    • SaaS (Software as a Service) deli...

  • Answered by AI
  • Q3. What do you know AWS

Interview Preparation Tips

Interview preparation tips for other job seekers - Brush up OS basics and cloud technologies.

Skills evaluated in this interview

Contribute & help others!
anonymous
You can choose to be anonymous

Planetcast Interview FAQs

How many rounds are there in Planetcast Softwaretest Engineer interview?
Planetcast interview process usually has 2 rounds. The most common rounds in the Planetcast interview process are Technical, HR and Coding Test.
What are the top questions asked in Planetcast Softwaretest Engineer interview?

Some of the top questions asked at the Planetcast Softwaretest Engineer interview -

  1. How react works and how javascript wo...read more
  2. small discussion on technology then negotiati...read more
  3. Some questions about array and obje...read more

Recently Viewed

INTERVIEWS

Planetcast

No Interviews

INTERVIEWS

Himalaya Wellness

No Interviews

INTERVIEWS

Himalaya Wellness

No Interviews

INTERVIEWS

Himalaya Wellness

No Interviews

INTERVIEWS

Himalaya Wellness

No Interviews

SALARIES

Planetcast

CAMPUS PLACEMENT

Delhi University - Daulat Ram College

INTERVIEWS

Planetcast

No Interviews

INTERVIEWS

Himalaya Wellness

No Interviews

INTERVIEWS

Planetcast

No Interviews

Tell us how to improve this page.

Planetcast Softwaretest Engineer Interview Process

based on 2 interviews

Interview experience

3.5
  
Good
View more

Interview Questions from Similar Companies

PVR Inox Interview Questions
4.0
 • 161 Interviews
Comcast Interview Questions
4.0
 • 72 Interviews
Cinépolis Interview Questions
3.9
 • 58 Interviews
HT Media Interview Questions
3.3
 • 49 Interviews
View all
Planetcast Softwaretest Engineer Salary
based on 6 salaries
₹3.5 L/yr - ₹4.8 L/yr
28% less than the average Softwaretest Engineer Salary in India
View more details

Planetcast Softwaretest Engineer Reviews and Ratings

based on 1 review

5.0/5

Rating in categories

5.0

Skill development

5.0

Work-life balance

5.0

Salary

5.0

Job security

5.0

Company culture

5.0

Promotions

5.0

Work satisfaction

Explore 1 Review and Rating
Software Engineer
88 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Assistant Manager
55 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Broadcast Executive
47 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Broadcast Assistant
45 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Broadcast Operations Executive
37 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Planetcast with

Prime Focus Technologies

3.4
Compare

Zee Entertainment Enterprises

3.5
Compare

Tata Communications

4.0
Compare

Eros International

2.7
Compare
Did you find this page helpful?
Yes No
write
Share an Interview
Rate your experience using AmbitionBox
Terrible
Terrible
Poor
Poor
Average
Average
Good
Good
Excellent
Excellent