Upload Button Icon Add office photos
Engaged Employer

i

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

Pocket FM Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Pocket FM Software Developer Interview Questions and Answers

Updated 22 May 2025

Pocket FM Software Developer Interview Experiences

2 interviews found

Interview experience
4
Good
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Selected Selected

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

  • Q1. 1st round DSA + LLD
  • Q2. 2nd round HM
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Jul 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Medium to hard level problem questions and basic subjects fundamentals mcqs

Round 2 - One-on-one 

(2 Questions)

  • Q1. Basic OS questions
  • Q2. Basic CN questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Grap a good command on subject and low level and pray to God you will be selected

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 Rakuten
Q2. Merge Two Sorted Arrays Problem Statement Given two sorted intege ... read more
asked in Amazon
Q3. Minimum Number of Platforms Needed Problem Statement You are give ... read more
asked in Cognizant
Q4. Nth Fibonacci Number Problem Statement Calculate the Nth term in ... read more
asked in PhonePe
Q5. Form a Triangle Problem Statement You are given an array of integ ... read more

Top trending discussions

View All
Interview Tips & Stories
1w (edited)
a team lead
Why are women still asked such personal questions in interview?
I recently went for an interview… and honestly, m still trying to process what just happened. Instead of being asked about my skills, experience, or how I could add value to the company… the questions took a totally unexpected turn. The interviewer started asking things like When are you getting married? Are you engaged? And m sure, if I had said I was married, the next question would’ve been How long have you been married? What does my personal life have to do with the job m applying for? This is where I felt the gender discrimination hit hard. These types of questions are so casually thrown at women during interviews but are they ever asked to men? No one asks male candidates if they’re planning a wedding or how old their kids are. So why is it okay to ask women? Can we please stop normalising this kind of behaviour in interviews? Our careers shouldn’t be judged by our relationship status. Period.
Got a question about Pocket FM?
Ask anonymously on communities.

Interview questions from similar companies

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
  • Ans. 

    I expect a salary that reflects my skills, experience, and the industry standards for this role.

    • Research industry standards: For example, Glassdoor or Payscale can provide insights into average salaries for similar roles.

    • Consider your experience: If you have 5+ years in software development, you might expect a higher salary than entry-level positions.

    • Location matters: Salaries can vary significantly based on the cost o...

  • Answered by AI
Round 2 - HR 

(1 Question)

  • Q1. Salary how mych
  • Ans. 

    Discussing salary expectations is crucial for aligning job offers with personal financial goals and market standards.

    • Research industry standards: Use websites like Glassdoor or Payscale to find average salaries for similar roles.

    • Consider your experience: If you have 5+ years in software development, you might expect a higher salary than entry-level positions.

    • Location matters: Salaries can vary significantly based on ge...

  • Answered by AI
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Coding test nodejs assignnment

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

I applied via Approached by Company and was interviewed in May 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Define your current project
  • Q2. Coding problem on DP
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Sep 2024. There was 1 interview round.

Round 1 - Technical 

(4 Questions)

  • Q1. What are statics functions in OOPS
  • Ans. 

    Static functions in OOP are functions that belong to the class itself, rather than to instances of the class.

    • Static functions can be called without creating an instance of the class.

    • They are commonly used for utility functions that do not require access to instance-specific data.

    • Static functions are declared using the 'static' keyword in many programming languages.

    • Example: In Java, a static function in a class can be c...

  • Answered by AI
  • Q2. What is Polymorphism in OOPs
  • Ans. 

    Polymorphism in OOPs allows objects of different classes to be treated as objects of a common superclass.

    • Polymorphism allows methods to be called on objects of different classes that all inherit from a common superclass.

    • It enables a single interface to be used for different data types or classes.

    • Examples include method overriding in inheritance and method overloading within the same class.

  • Answered by AI
  • Q3. What is websockets and its alternative
  • Ans. 

    Websockets are a communication protocol that allows for full-duplex communication between a client and a server over a single, long-lived connection.

    • Websockets provide real-time, bi-directional communication between a client and a server.

    • They are commonly used in applications that require instant updates, such as chat applications, online gaming, and financial trading platforms.

    • Websockets use a persistent connection, u...

  • Answered by AI
  • Q4. What is JWT and How it works
  • Ans. 

    JWT stands for JSON Web Token, a compact and self-contained way for securely transmitting information between parties as a JSON object.

    • JWT is composed of three parts: header, payload, and signature.

    • Header typically consists of the type of token and the hashing algorithm being used.

    • Payload contains the claims, which are statements about an entity and additional data.

    • Signature is created by encoding the header, payload, ...

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Coding Test 

2 coding questions 1 easy ,1 hard , 20 MCQ question and 1 SQL question

Round 2 - Technical 

(2 Questions)

  • Q1. Asked questions of coding round
  • Q2. Questions about project ,jwt architecture,nextjs vs react
Round 3 - Technical 

(2 Questions)

  • Q1. 2 SQL query using group by
  • Ans. 

    SQL queries using GROUP BY aggregate data based on specified columns, allowing for summary statistics.

    • GROUP BY is used to arrange identical data into groups.

    • Example: SELECT department, COUNT(*) FROM employees GROUP BY department; - counts employees per department.

    • You can use aggregate functions like SUM, AVG, MAX, MIN with GROUP BY.

    • Example: SELECT department, AVG(salary) FROM employees GROUP BY department; - calculates...

  • Answered by AI
  • Q2. Question about projects and cs fundamentals

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare your project well,learn theory of technology used
Are these interview questions helpful?

Interview Questionnaire 

1 Question

  • Q1. Store procedure, function, trigger, view, index, table backup,drop, delete, truncate. transaction.

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
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
-

I applied via Naukri.com and was interviewed in Sep 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Basic LIS problem. Coded using Java. Asked to improve it using collections.

Round 2 - One-on-one 

(2 Questions)

  • Q1. Explain current project and what you have handled
  • Q2. Longest substring problem

Interview Preparation Tips

Interview preparation tips for other job seekers - Cover Basic things and be confident.

Skills evaluated in this interview

Pocket FM Interview FAQs

How many rounds are there in Pocket FM Software Developer interview?
Pocket FM interview process usually has 2 rounds. The most common rounds in the Pocket FM interview process are Coding Test and One-on-one Round.
What are the top questions asked in Pocket FM Software Developer interview?

Some of the top questions asked at the Pocket FM Software Developer interview -

  1. 1st round DSA + ...read more
  2. Basic OS questi...read more
  3. Basic CN questi...read more

Tell us how to improve this page.

Overall Interview Experience Rating

4/5

based on 2 interview experiences

Difficulty level

Moderate 50%
Hard 50%

Duration

Less than 2 weeks 100%
View more

Interview Questions from Similar Companies

DAZN Interview Questions
2.7
 • 35 Interviews
Network 18 Interview Questions
3.5
 • 28 Interviews
Gaana Interview Questions
3.7
 • 14 Interviews
GoDaddy Interview Questions
3.0
 • 14 Interviews
Republic TV Interview Questions
2.2
 • 12 Interviews
Siti Networks Interview Questions
3.8
 • 11 Interviews
Gracenote Interview Questions
3.6
 • 11 Interviews
View all
Pocket FM Software Developer Salary
based on 22 salaries
₹14.1 L/yr - ₹24.6 L/yr
82% more than the average Software Developer Salary in India
View more details

Pocket FM Software Developer Reviews and Ratings

based on 1 review

4.0/5

Rating in categories

3.0

Skill development

4.0

Work-life balance

3.0

Salary

4.0

Job security

4.0

Company culture

3.0

Promotions

3.0

Work satisfaction

Explore 1 Review and Rating
Video Editor
77 salaries
unlock blur

₹2.4 L/yr - ₹7.5 L/yr

growth manager
56 salaries
unlock blur

₹24.6 L/yr - ₹41.6 L/yr

Sound Engineer
47 salaries
unlock blur

₹2.2 L/yr - ₹6.8 L/yr

Promo Producer
41 salaries
unlock blur

₹5.5 L/yr - ₹12 L/yr

Motion Graphic Designer
38 salaries
unlock blur

₹3.6 L/yr - ₹8.4 L/yr

Explore more salaries
Compare Pocket FM with

Kuku FM

4.0
Compare

Siti Networks

3.8
Compare

Network 18

3.4
Compare

Saregama India

3.9
Compare
write
Share an Interview