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
3.3

based on 7.1k Reviews

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 Implementation Design and implement a data structure for Least Recently Used (LRU) cache to support the following operations: 1. get(key) - Return the value of ...read more
  • Q2. String Palindrome Given a string, determine if it is a palindrome, considering only alphanumeric characters. Palindrome A palindrome is a word, number, phrase, or other s ...read more
  • Q3. Program for Priority CPU Scheduling | Set 1 You are given the ‘N’ processes with their “burst times”, and the “arrival time” for all processes is ‘0’. You are also given ...read more
View all 7 questions

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 Implementation

    Design and implement a data structure for Least Recently Used (LRU) cache to support the foll...

  • 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 by CodingNinjas
Round 2 - Coding Test 

(4 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

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

    Palindrome
    A palindrome is a word, number, phrase, or other sequences of characters which read...
  • Ans. Space Complexity: Explanation: Time Complexity: Explanation:
  • Answered by CodingNinjas
  • Q2. OS Questions

    semaphores, virtual memory, cache, deadlocks, banker algorithmms, segmenation, virtualization

  • Q3. DBMS Questions

    normalization, indexing

  • Q4. OOPS Questions

    virtaul table, constructors, inheriatnce, abstraction

Round 3 - Video Call 

(3 Questions)

Round duration - 120 Minutes
Round difficulty - Hard

late at 8.00 pm

  • Q1. Program for Priority CPU Scheduling | Set 1

    You are given the ‘N’ processes with their “burst times”, and the “arrival time” for all processes is ‘0’. You are also given the ‘priority’ of each process.

    Y...

  • 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 by CodingNinjas
  • Q2. OS Question

    data spooling

  • Q3. DBMS Question

    difference between inheritance and generalization

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 ArrayYou have been given an integer array/list 'AR ... read more
Q2. Find UniqueYou have been given an integer array/list(ARR) of size ... read more
asked in JUSPAY
Q3. Dijkstra's shortest pathYou have been given an undirected graph o ... read more
asked in JUSPAY
Q4. Encode N-ary tree to binary treeYou have been given an N-ary tree ... read more
asked in Siemens
Q5. Sort ArrayYou are given an array consisting of 'N' positive integ ... 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.

Interview Questions from Similar Companies

FIS Interview Questions
3.9
 • 470 Interviews
PhonePe Interview Questions
4.0
 • 297 Interviews
PayPal Interview Questions
3.9
 • 206 Interviews
Fiserv Interview Questions
3.2
 • 166 Interviews
Visa Interview Questions
3.6
 • 135 Interviews
MasterCard Interview Questions
4.0
 • 130 Interviews
Angel One Interview Questions
3.9
 • 126 Interviews
Revolut Interview Questions
2.6
 • 89 Interviews
TransUnion Interview Questions
4.0
 • 87 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.7/5

Rating in categories

3.9

Skill development

3.6

Work-Life balance

3.9

Salary & Benefits

3.3

Job Security

3.1

Company culture

3.1

Promotions/Appraisal

3.7

Work Satisfaction

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

₹2 L/yr - ₹9.2 L/yr

Senior Software Engineer
1.4k salaries
unlock blur

₹10 L/yr - ₹41 L/yr

Software Engineer
1.4k salaries
unlock blur

₹6 L/yr - ₹23 L/yr

Sales Executive
963 salaries
unlock blur

₹1 L/yr - ₹6.4 L/yr

Senior Associate
903 salaries
unlock blur

₹2.1 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.0
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview