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 Office and Accounts Executive Interview Questions, Process, and Tips

Updated 16 Jul 2024

Top Paytm Front Office and Accounts Executive Interview Questions and Answers

  • Q1. Given the code to flat the array ex : Input - [2,3,[4,5,[6,7],8,9,[0]]] Output : [2,3,4,5,6,7,8,9,0]
  • Q2. Write a code whose output should be 72 by making a call like this add(5,3).mul(9).calc();
  • Q3. write a code to convert an account number to asterisk ex: Input : PY12345 Output : PY***45
View all 10 questions

Paytm Front Office and Accounts Executive Interview Experiences

2 interviews found

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

It was on hackerrank, its like OA, it has one problem solving question, 3-4 html-css mcq's and one react coding questuion.

Round 2 - Technical 

(3 Questions)

  • Q1. Js output questions.
  • Q2. Polyfils, practice for common polyfills.
  • Q3. Make a counter and a to do app on the codesandbox platform.
  • Ans. 

    Create a counter and a to do app on codesandbox platform

    • Create a counter component with buttons to increment and decrement the count

    • Implement a to do app with input field to add tasks and a list to display them

    • Use React or any other front-end framework/library for building the apps

  • Answered by AI

Skills evaluated in this interview

I applied via Company Website and was interviewed in Feb 2022. There were 3 interview rounds.

Round 1 - Coding Test 

I applied for the Frontend role and test consisted of JS and React questions

Round 2 - Technical 

(5 Questions)

  • Q1. What is Hoisting, Closures, Event loop etc and some code snippets
  • Q2. Given the code to flat the array ex : Input - [2,3,[4,5,[6,7],8,9,[0]]] Output : [2,3,4,5,6,7,8,9,0]
  • Ans. 

    Flatten a nested array into a single-level array.

    • Use recursion to iterate through each element of the array.

    • If the element is an array, call the function recursively.

    • If the element is not an array, add it to the result array.

  • Answered by AI
  • Q3. Write a Polyfill for flat function
  • Ans. 

    Polyfill for flat function

    • Create a function that takes an array and a depth as arguments

    • Use recursion to flatten the array to the specified depth

    • If depth is not specified, flatten the array completely

    • Return the flattened array

  • Answered by AI
  • Q4. Write a js code to convert Roman to decimal number
  • Ans. 

    JS code to convert Roman to decimal number

    • Create a map of Roman numerals to their decimal values

    • Loop through the Roman numeral string from right to left

    • If the current numeral is less than the previous numeral, subtract it from the total

    • Otherwise, add it to the total

    • Return the total

  • Answered by AI
  • Q5. Create a dropdown(HTML Select tag) custom component in react.
  • Ans. 

    Creating a custom dropdown component in React using HTML Select tag.

    • Create a new component and import React

    • Use the HTML Select tag to create the dropdown

    • Use the map function to loop through the array of strings and create the options

    • Add an onChange event to handle the selection and update the state

    • Pass the array of strings as props to the component

  • Answered by AI
Round 3 - Technical 

(5 Questions)

  • Q1. Create a Todo list component in react
  • Ans. 

    Creating a Todo list component in React

    • Create a new React component for the Todo list

    • Use state to store the list of tasks

    • Render the list of tasks using map()

    • Add a form to add new tasks to the list

    • Add a button to delete tasks from the list

  • Answered by AI
  • Q2. Js Code/React component to create a folder and file structure
  • Ans. 

    Use Node.js fs module to create folder and file structure in React component

    • Require fs module in React component

    • Use fs.mkdirSync() method to create folder

    • Use fs.writeFileSync() method to create file

    • Use path.join() method to join folder and file paths

    • Handle errors using try-catch block

  • Answered by AI
  • Q3. Write a code whose output should be 72 by making a call like this add(5,3).mul(9).calc();
  • Ans. 

    Code to output 72 by calling add(5,3).mul(9).calc()

    • Define a class with add, mul, and calc methods

    • add method should add two numbers and return the class instance

    • mul method should multiply the result with a number and return the class instance

    • calc method should return the final result

    • Call the methods in the given order to get the output 72

  • Answered by AI
  • Q4. Polyfill for promise.all()
  • Ans. 

    Polyfill for promise.all() is a code that adds support for promise.all() in older browsers.

    • Polyfill can be implemented using a combination of Promise and Array.prototype.reduce()

    • The polyfill should return a promise that resolves when all promises in the input array have resolved

    • If any promise in the input array rejects, the polyfill should reject with the reason of the first promise that rejected

  • Answered by AI
  • Q5. Write a code to convert an account number to asterisk ex: Input : PY12345 Output : PY***45
  • Ans. 

    Code to convert account number to asterisk

    • Create a function that takes in an account number as input

    • Use string slicing to replace characters with asterisks

    • Return the modified account number as output

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Frontend Developers are mostly grilled with Javascript questions. 70% questions will be related to Javascript and remaining 30% you can expect it on your respective framework for which you are applying for.

Skills evaluated in this interview

Front Office and Accounts Executive Interview Questions Asked at Other Companies

asked in Paytm
Q1. Given the code to flat the array ex : Input - [2,3,[4,5,[6,7],8,9 ... read more
asked in Paytm
Q2. write a code to convert an account number to asterisk ex: Input : ... read more
asked in Paytm
Q3. Write a code whose output should be 72 by making a call like this ... read more
asked in Paytm
Q4. Create a dropdown(HTML Select tag) custom component in react.
asked in Paytm
Q5. Js Code/React component to create a folder and file structure

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

Paytm Interview FAQs

How many rounds are there in Paytm Front Office and Accounts Executive interview?
Paytm interview process usually has 2-3 rounds. The most common rounds in the Paytm interview process are Technical and Coding Test.
What are the top questions asked in Paytm Front Office and Accounts Executive interview?

Some of the top questions asked at the Paytm Front Office and Accounts Executive interview -

  1. Given the code to flat the array ex : Input - [2,3,[4,5,[6,7],8,9,[0]]] Outp...read more
  2. Write a code whose output should be 72 by making a call like this add(5,3).mul...read more
  3. write a code to convert an account number to asterisk ex: Input : PY12345 Outpu...read more

Tell us how to improve this page.

Paytm Front Office and Accounts Executive 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.0
 • 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 Office and Accounts Executive Salary
based on 5 salaries
₹10.5 L/yr - ₹17 L/yr
20% more than the average Front Office and Accounts Executive Salary in India
View more details
Team Lead
2k salaries
unlock blur

₹2.2 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
946 salaries
unlock blur

₹1 L/yr - ₹6.4 L/yr

Senior Associate
918 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