Upload Button Icon Add office photos
Engaged Employer

i

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

Paytm Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Paytm Front end Developer Interview Questions, Process, and Tips

Updated 11 Mar 2022

Top Paytm Front end Developer Interview Questions and Answers

  • Q1. LRU Cache Design Question Design a data structure for a Least Recently Used (LRU) cache that supports the following operations: 1. get(key) - Return the value of the key ...read more
  • Q2. String Palindrome Verification Given a string, your task is to determine if it is a palindrome considering only alphanumeric characters. Input: The input is a single str ...read more
  • Q3. Priority CPU Scheduling Problem Given 'N' processes with their “burst times”, where the “arrival time” for all processes is ‘0’, and the ‘priority’ of each process, your ...read more

Paytm Front end Developer Interview Experiences

3 interviews found

I was interviewed in Aug 2021.

Round 1 - Coding Test 

(1 Question)

Round duration - 90 Minutes
Round difficulty - Easy

1 coding question which was quite easy. Some MCQ that includes basic questions related to html, css, javascript, oops, dbms and output.

  • Q1. 

    LRU Cache Design Question

    Design a data structure for a Least Recently Used (LRU) cache that supports the following operations:

    1. get(key) - Return the value of the key if it exists in the cache; otherw...

  • Ans. Array Approach

    We will use an array of type Pair<key, value> to implement our LRU Cache where the larger the index is, the more recently the key is used. Means, the 0th index denotes the least recently used pair, and the last index denotes the most recently used pair.

     

    The key will be considered as accessed if we try to perform any operation on it. So while performing the get operation on a key, we will do a ...

  • Answered Anonymously
Round 2 - Coding Test 

(2 Questions)

Round duration - 90 Minutes
Round difficulty - Easy

easy round. Had some frontend questions related to html ,css, js , etc Explain Closures in JavaScript. In how many ways can we specify the CSS styles for the HTML element?

  • Q1. 

    String Palindrome Verification

    Given a string, your task is to determine if it is a palindrome considering only alphanumeric characters.

    Input:

    The input is a single string without any leading or trailing...
  • Ans. Space Complexity: Explanation: Time Complexity: Explanation:
  • Answered Anonymously
  • Q2. DBMS Questions

    normalization, indexing

Round 3 - Video Call 

(3 Questions)

Round duration - 120 Minutes
Round difficulty - Hard

late at 8.00 pm

  • Q1. 

    Priority CPU Scheduling Problem

    Given 'N' processes with their “burst times”, where the “arrival time” for all processes is ‘0’, and the ‘priority’ of each process, your task is to compute the “waiting ti...

  • Ans. Sorting

    Approach:

     

    • Recall the following:
      • Finish Time: The time at which the process complete and exits from the system.
      • Turn Around Time: The total time taken by the process. In other words, Turn Around time = Finish Time - Arrival Time.
      • Waiting Time: The total time taken by the process in the ready queue. In other words, Waiting Time = Turn Around Time - Burst Time.
    • We also have the ’priority’ of each process. The high...
  • Answered Anonymously
  • Q2. Can you explain the concept of data spooling in operating systems?
  • Q3. What is the difference between inheritance and generalization in the context of database management systems?

Interview Preparation Tips

Professional and academic backgroundI applied for the job as Frontend Developer in GurgaonEligibility criteriaabove 8 CGPAPaytm (One97 Communications Limited) interview preparation:Topics to prepare for the interview - DATA STRUCTURES, OOPS, DBMS, NETWORKING, ALGORITHMSTime required to prepare for the interview - 1 monthInterview preparation tips for other job seekers

Tip 1 : be confident
Tip 2 : make sure to talk less
Tip 3 : give precise answer

Application resume tips for other job seekers

Tip 1 : mention only relevant things
Tip 2 : be precise

Final outcome of the interviewRejected

Skills evaluated in this interview

Front end Developer interview

user image silentNikka

posted on 28 Oct 2021

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
asked in Siemens
Q5. Sort Array Problem Statement Given an array consisting of 'N' pos ... read more

Front end Developer interview

user image Virtual Gyans

posted on 14 Dec 2021

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
-
Result
Not Selected

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

Round 1 - Technical 

(3 Questions)

  • Q1. Closures, setTimeout, Eventloop in javascript
  • Q2. How to center a div in css3
  • Ans. 

    To center a div in CSS3, use the 'margin: auto;' property along with a set width.

    • Set the width of the div

    • Use 'margin: auto;' to center the div horizontally

    • Make sure the parent container has a defined width

  • Answered by AI
  • Q3. Call , bind and apply functions in javascript
  • Ans. 

    call, bind, and apply are methods used to manipulate the context of a function in JavaScript.

    • call() is used to invoke a function with a specified 'this' value and arguments provided individually.

    • bind() is used to create a new function with a specified 'this' value and initial arguments.

    • apply() is used to invoke a function with a specified 'this' value and arguments provided as an array.

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Technical 

(1 Question)

  • Q1. Introduce Yourself, What do you know about Insurances?
Round 2 - HR 

(1 Question)

  • Q1. How can you as a Front End developer contribute to our company?

Interview Preparation Tips

Interview preparation tips for other job seekers - Remember your goal
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(1 Question)

  • Q1. Expected salery
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
-
Result
Not Selected

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

Round 1 - Technical 

(3 Questions)

  • Q1. Closures, setTimeout, Eventloop in javascript
  • Q2. How to center a div in css3
  • Ans. 

    To center a div in CSS3, use the 'margin: auto;' property along with a set width.

    • Set the width of the div

    • Use 'margin: auto;' to center the div horizontally

    • Make sure the parent container has a defined width

  • Answered by AI
  • Q3. Call , bind and apply functions in javascript
  • Ans. 

    call, bind, and apply are methods used to manipulate the context of a function in JavaScript.

    • call() is used to invoke a function with a specified 'this' value and arguments provided individually.

    • bind() is used to create a new function with a specified 'this' value and initial arguments.

    • apply() is used to invoke a function with a specified 'this' value and arguments provided as an array.

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected
Round 1 - HR 

(1 Question)

  • Q1. Basi questions on resume
Round 2 - Technical 

(2 Questions)

  • Q1. Javascript question based on finding median
  • Q2. React hooks and context api
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Technical 

(1 Question)

  • Q1. Introduce Yourself, What do you know about Insurances?
Round 2 - HR 

(1 Question)

  • Q1. How can you as a Front End developer contribute to our company?

Interview Preparation Tips

Interview preparation tips for other job seekers - Remember your goal
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(1 Question)

  • Q1. Expected salery

Paytm Interview FAQs

How to prepare for Paytm Front end 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 Paytm. The most common topics and skills that interviewers at Paytm expect are Javascript, Front End, CSS, React.Js and Redux.

Tell us how to improve this page.

Paytm Front end Developer Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

FIS Interview Questions
3.9
 • 480 Interviews
PhonePe Interview Questions
4.0
 • 307 Interviews
PayPal Interview Questions
3.9
 • 211 Interviews
Fiserv Interview Questions
3.1
 • 171 Interviews
Visa Interview Questions
3.5
 • 137 Interviews
MasterCard Interview Questions
3.9
 • 134 Interviews
Angel One Interview Questions
3.9
 • 134 Interviews
Revolut Interview Questions
2.6
 • 95 Interviews
View all
Paytm Front end Developer Salary
based on 29 salaries
₹6.7 L/yr - ₹16 L/yr
99% more than the average Front end Developer Salary in India
View more details

Paytm Front end Developer Reviews and Ratings

based on 4 reviews

3.6/5

Rating in categories

3.9

Skill development

3.6

Work-life balance

3.9

Salary

3.3

Job security

3.1

Company culture

3.1

Promotions

3.6

Work satisfaction

Explore 4 Reviews and Ratings
Team Lead
2.3k salaries
unlock blur

₹2.5 L/yr - ₹11.4 L/yr

Software Engineer
1.4k salaries
unlock blur

₹6 L/yr - ₹23 L/yr

Senior Software Engineer
1.4k salaries
unlock blur

₹10 L/yr - ₹40 L/yr

Sales Executive
948 salaries
unlock blur

₹1 L/yr - ₹6.4 L/yr

Senior Associate
916 salaries
unlock blur

₹2.2 L/yr - ₹9 L/yr

Explore more salaries
Compare Paytm with

BharatPe

3.5
Compare

Zerodha

4.2
Compare

Razorpay

3.6
Compare

Mobikwik

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