Upload Button Icon Add office photos

Planetcast

Compare button icon Compare button icon Compare

Filter interviews by

Planetcast Software Developer Interview Questions and Answers

Updated 18 Oct 2024

Planetcast Software Developer Interview Experiences

2 interviews found

Software Developer Interview Questions & Answers

user image Paras Panwar

posted on 18 Oct 2024

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

Create a Movie application on compose using mvvm

Interview Questionnaire 

2 Questions

  • Q1. What is difference between interface and abstract class
  • Ans. 

    An interface is a contract that defines the methods that a class must implement, while an abstract class can provide some implementation.

    • An interface can only have abstract methods, while an abstract class can have both abstract and non-abstract methods.

    • A class can implement multiple interfaces, but can only inherit from a single abstract class.

    • Interfaces are used to achieve multiple inheritance in Java.

    • Abstract classe...

  • Answered by AI
  • Q2. What is enum
  • Ans. 

    Enum is a data type that consists of a set of named values.

    • Enums are used to define a set of constants that can be assigned to a variable.

    • They make code more readable and maintainable.

    • Example: enum Color { RED, GREEN, BLUE }

    • Enums can also have values assigned to them, like enum Size { SMALL = 1, MEDIUM = 2, LARGE = 3 }

  • Answered by AI

Skills evaluated in this interview

Software Developer Interview Questions Asked at Other Companies

asked in Amazon
Q1. Maximum Subarray Sum Problem Statement Given an array of integers ... read more
asked in Amazon
Q2. Minimum Number of Platforms Needed Problem Statement You are give ... read more
asked in Rakuten
Q3. Merge Two Sorted Arrays Problem Statement Given two sorted intege ... read more
asked in Nagarro
Q4. Crazy Numbers Pattern Challenge Ninja enjoys arranging numbers in ... read more
asked in PhonePe
Q5. Form a Triangle Problem Statement You are given an array of integ ... read more

Interview questions from similar companies

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
-
Result
Not Selected

I applied via Campus Placement

Round 1 - Aptitude Test 

SHL platform, choose the best answer form cse concept,apti,

Round 2 - Technical 

(1 Question)

  • Q1. Face to face in college campus
Round 3 - HR 

(1 Question)

  • Q1. It only for clearing the technical round
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in Jun 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Generale questions about my previous experience

Round 2 - Technical 

(2 Questions)

  • Q1. Leetcode problem solving
  • Q2. Leetcode problem solving 2

Interview Preparation Tips

Interview preparation tips for other job seekers - just prepare ds,practice leetcode
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Coding test nodejs assignnment

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
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before Sep 2023. There were 2 interview rounds.

Round 1 - Coding Test 

Just basic DSA round

Round 2 - Technical 

(2 Questions)

  • Q1. Questions on DSA like array and strings.
  • Q2. Computer science fundamentals questions like OOPS concepts
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

I don't really really for aptitude

Round 2 - Technical 

(3 Questions)

  • Q1. Oops, dsa, sdlc
  • Q2. Project, dbms, pattern printing
  • Q3. What is inheritance and implementation
  • Ans. 

    Inheritance is a mechanism in object-oriented programming where a class inherits properties and behaviors from another class. Implementation is the process of defining the methods and behaviors of a class.

    • Inheritance allows a class to inherit attributes and methods from another class, promoting code reusability.

    • Implementation involves writing the actual code for the methods and behaviors defined in a class.

    • Example: Cla...

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. Self introduction
  • Q2. Your strength, weeknesss, where do you in next 5 years
  • Ans. 

    My strength is problem-solving, weakness is time management, and in the next 5 years, I aim to become a lead developer.

    • Strength: Strong problem-solving skills - I enjoy tackling complex issues and finding efficient solutions.

    • Weakness: Time management - I sometimes struggle with prioritizing tasks and meeting deadlines.

    • Future goal: To become a lead developer - I plan to enhance my technical skills, take on more responsi

  • Answered by AI

Software Developer Interview Questions & Answers

DAZN user image manoj kumar ramisetty

posted on 28 Jul 2024

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

(2 Questions)

  • Q1. What is my name
  • Ans. 

    The question is asking for your name.

    • Answer with your actual name

    • Be honest and straightforward

    • Avoid giving a fake name or trying to be clever

  • Answered by AI
  • Q2. Salry how much exoected
Round 2 - HR 

(1 Question)

  • Q1. Salary how mych
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

Planetcast Interview FAQs

How many rounds are there in Planetcast Software Developer interview?
Planetcast interview process usually has 1 rounds. The most common rounds in the Planetcast interview process are Assignment.
How to prepare for Planetcast Software Developer 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 Planetcast. The most common topics and skills that interviewers at Planetcast expect are MySQL, .Net, C#, VB and AWS.
What are the top questions asked in Planetcast Software Developer interview?

Some of the top questions asked at the Planetcast Software Developer interview -

  1. What is difference between interface and abstract cl...read more
  2. What is e...read more

Tell us how to improve this page.

Planetcast Software Developer Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more
Planetcast Software Developer Salary
based on 26 salaries
₹2.8 L/yr - ₹7.9 L/yr
27% less than the average Software Developer Salary in India
View more details

Planetcast Software Developer Reviews and Ratings

based on 4 reviews

2.7/5

Rating in categories

2.5

Skill development

2.4

Work-life balance

2.5

Salary

2.3

Job security

1.6

Company culture

2.2

Promotions

1.8

Work satisfaction

Explore 4 Reviews and Ratings
Software Engineer
81 salaries
unlock blur

₹2.8 L/yr - ₹10 L/yr

Assistant Manager
55 salaries
unlock blur

₹4.6 L/yr - ₹12 L/yr

Broadcast Executive
47 salaries
unlock blur

₹2 L/yr - ₹5.5 L/yr

Broadcast Assistant
45 salaries
unlock blur

₹1.5 L/yr - ₹3.5 L/yr

Broadcast Operations Executive
37 salaries
unlock blur

₹1.8 L/yr - ₹4.9 L/yr

Explore more salaries
Compare Planetcast with

Prime Focus Technologies

3.3
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