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 Front end Developer Interview Questions and Answers

Updated 23 Dec 2022

Pocket FM Front end Developer Interview Experiences

1 interview found

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

I applied via Referral and was interviewed in Nov 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 tips
Round 2 - One-on-one 

(5 Questions)

  • Q1. What are React lifecycle Method
  • Ans. 

    React lifecycle methods are functions that are called at different stages of a component's life.

    • Mounting: constructor(), render(), componentDidMount()

    • Updating: render(), componentDidUpdate()

    • Unmounting: componentWillUnmount()

    • Error Handling: componentDidCatch()

  • Answered by AI
  • Q2. How would you optimize the api call on input change(Debouncing)
  • Ans. 

    Debounce the API call on input change to optimize performance.

    • Implement a debounce function to delay the API call until the user has finished typing.

    • Set a time interval for the debounce function to wait before making the API call.

    • Cancel the previous API call if a new input change occurs before the time interval is up.

    • Use a loading spinner to indicate to the user that the API call is in progress.

    • Consider using a caching...

  • Answered by AI
  • Q3. A code where I have to apply memoize
  • Ans. 

    Memoization optimizes function calls by caching results for previously computed inputs.

    • Memoization stores results of expensive function calls and returns cached results when the same inputs occur again.

    • Example: A Fibonacci function can be optimized using memoization to avoid redundant calculations.

    • In JavaScript, you can create a memoize function that takes another function as an argument and returns a new function.

    • Use ...

  • Answered by AI
  • Q4. Tell me about yourself
  • Q5. What is usememo hook
  • Ans. 

    useMemo is a hook in React that memoizes the result of a function and returns the cached value when the inputs don't change.

    • useMemo is used to optimize performance by avoiding unnecessary re-renders.

    • It takes two arguments: a function that returns a value and an array of dependencies.

    • If any of the dependencies change, the function is re-executed and the new value is cached.

    • Example: useMemo(() => expensiveFunction(a, b),...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Pocket FM Front end Developer interview:
  • debouncing
  • reacthooks
  • Javascript
  • memoization
  • debouncing in react
Interview preparation tips for other job seekers - the thing some code doesn't run in codesandbox properly. if you think you write a correct code. please tell the interview to switch to vscode. this happened with me and it lead to rejection.

for preparation try to cover all javascript topic from akshay seni and all frontend interview question from technical suneja.
Focus on basics and with clearity

Skills evaluated in this interview

Top trending discussions

View All
Interview Tips & Stories
2w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about Pocket FM?
Ask anonymously on communities.

Interview questions from similar companies

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

Front end Developer Interview Questions Asked at Other Companies

Q1. Non-Decreasing Array Problem Statement Given an integer array ARR ... read more
Q2. Find Unique Element in Array You have been provided an integer ar ... read more
asked in JUSPAY
Q3. Dijkstra's Shortest Path Problem Statement You are given an undir ... read more
asked in JUSPAY
Q4. Encode N-ary Tree to Binary Tree Problem Statement You are provid ... read more
Q5. Check If Linked List Is Palindrome Given a singly linked list of ... read more
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
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
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Coding test nodejs assignnment

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

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.
Are these interview questions helpful?
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Introduce yourself
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Easy DSA questions 1-2, Array Strings
  • Q2. IOS Questions, Easy to Medium
Round 2 - Technical 

(2 Questions)

  • Q1. DSA 1-2 Questions Easy
  • Q2. Medium ios topics including cacheing, life cycle
Round 3 - Behavioral interview 

(2 Questions)

  • Q1. Behaviour based questions
  • Q2. STAR methodology related questions
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed in May 2024. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. It related to my profile i.e. more on JAVA, Spring, Rest APIs
Round 2 - Behavioral 

(1 Question)

  • Q1. Normal Managerial round with situation based questions
Round 3 - Stake-Holder's Round 

(1 Question)

  • Q1. Technical + Manegerial Questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Practice in-depth about your work and technical skills

Pocket FM Interview FAQs

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

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

  1. how would you optimize the api call on input change(Debounci...read more
  2. what are React lifecycle Met...read more
  3. A code where I have to apply memo...read more

Tell us how to improve this page.

Overall Interview Experience Rating

4/5

based on 1 interview experience

Difficulty level

Moderate 100%

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.8
 • 14 Interviews
GoDaddy Interview Questions
3.4
 • 14 Interviews
Republic TV Interview Questions
2.2
 • 12 Interviews
Siti Networks Interview Questions
3.8
 • 11 Interviews
Gracenote Interview Questions
3.7
 • 11 Interviews
View all
Video Editor
78 salaries
unlock blur

₹2.5 L/yr - ₹7.5 L/yr

Sound Engineer
47 salaries
unlock blur

₹2.2 L/yr - ₹6.8 L/yr

growth manager
46 salaries
unlock blur

₹13 L/yr - ₹54.4 L/yr

Promo Producer
39 salaries
unlock blur

₹3.6 L/yr - ₹15 L/yr

Motion Graphic Designer
37 salaries
unlock blur

₹3 L/yr - ₹8.4 L/yr

Explore more salaries
Compare Pocket FM with

Kuku FM

4.0
Compare

Siti Networks

3.9
Compare

Network 18

3.5
Compare

Saregama India

4.0
Compare
write
Share an Interview