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 Junior Accountant Interview Questions and Answers

Updated 7 Apr 2022

Paytm Junior Accountant Interview Experiences

1 interview found

I applied via Naukri.com and was interviewed in Mar 2022. There were 3 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 - Aptitude Test 

Good experience

Round 3 - HR 

(8 Questions)

  • Q1. What are your salary expectations?
  • Q2. What is your family background?
  • Q3. Share details of your previous job.
  • Q4. Why should we hire you?
  • Q5. Why are you looking for a change?
  • Q6. Where do you see yourself in 5 years?
  • Q7. What are your strengths and weaknesses?
  • Q8. Tell me about yourself.

Interview Preparation Tips

Interview preparation tips for other job seekers - Attend the assessment we all take good experience

Interview questions from similar companies

I appeared for an interview before Jan 2021.

Round 1 - Face to Face 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Easy

I couldn't find an optimal approach to the first question, so she skipped that question and proceeded to next questions. Remaining questions I have answered satisfactorily.

  • Q1. 

    Subset Sum Equal To K Problem Statement

    Given an array/list of positive integers and an integer K, determine if there exists a subset whose sum equals K.

    Provide true if such a subset exists, otherwise r...

  • Ans. 

    Given an array of positive integers and an integer K, determine if there exists a subset whose sum equals K.

    • Use dynamic programming to solve this problem efficiently

    • Create a 2D array to store if a subset with a particular sum exists

    • Iterate through the array and update the 2D array accordingly

    • Check if the value at the end of the iteration is true for the given K

  • Answered by AI
  • Q2. 

    BFS Traversal in a Graph

    Given an undirected and disconnected graph G(V, E) where V vertices are numbered from 0 to V-1, and E represents edges, your task is to output the BFS traversal starting from the ...

  • Ans. 

    BFS traversal in a disconnected graph starting from vertex 0.

    • Implement BFS algorithm to traverse the graph starting from vertex 0.

    • Use a queue to keep track of visited nodes and their neighbors.

    • Ensure to print the traversal sequence in the correct order.

    • Handle disconnected components by checking for unvisited nodes.

    • Follow the BFS approach of exploring neighbors before moving to the next level.

  • Answered by AI
Round 2 - HR 

(1 Question)

Round duration - 60 minutes
Round difficulty - Easy

I told that my strength is problem solving and I can always find a way when there is a bottle-neck. Gave some examples of my experiences while doing my assignments.

  • Q1. 

    Replace Spaces in a String

    Given a string STR consisting of words separated by spaces, your task is to replace all spaces between words with the characters "@40".

    Input:

    The first line contains an integ...
  • Ans. 

    Replace spaces in a string with '@40'.

    • Iterate through each character in the string

    • Replace spaces with '@40'

    • Return the modified string

  • Answered by AI

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPAPaypal interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, System Design, Aptitude, OOPSTime required to prepare for the interview - 6 monthsInterview preparation tips for other job seekers

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Final outcome of the interviewSelected

Skills evaluated in this interview

I appeared for an interview before Jan 2021.

Round 1 - Face to Face 

(3 Questions)

Round duration - 60 minutes
Round difficulty - Easy

Technical Interview Round with questions based on Data structures, OOPS and SQL.

  • Q1. 

    Delete a Node from a Linked List

    You are provided with a linked list of integers. Your task is to implement a function that deletes a node located at a specified position 'POS'.

    Input:

    The first line co...
  • Ans. 

    Implement a function to delete a node from a linked list at a specified position.

    • Traverse the linked list to find the node at the specified position.

    • Update the pointers of the previous and next nodes to skip the node to be deleted.

    • Handle edge cases such as deleting the head or tail of the linked list.

    • Ensure to free the memory of the deleted node to avoid memory leaks.

  • Answered by AI
  • Q2. Write an SQL query to find the nth highest salary.
  • Ans. 

    SQL query to find the nth highest salary

    • Use the ORDER BY clause to sort salaries in descending order

    • Use the LIMIT and OFFSET clauses to skip the first n-1 highest salaries

    • Combine the above steps in a single query to find the nth highest salary

  • Answered by AI
  • Q3. Can you explain the concepts of Object-Oriented Programming (OOP)?
  • Ans. 

    OOP is a programming paradigm based on the concept of objects, which can contain data in the form of fields and code in the form of procedures.

    • OOP focuses on creating objects that interact with each other to solve problems.

    • Key concepts include encapsulation, inheritance, and polymorphism.

    • Encapsulation involves bundling data and methods that operate on the data into a single unit.

    • Inheritance allows classes to inherit at...

  • Answered by AI
Round 2 - Face to Face 

(4 Questions)

Round duration - 60 minutes
Round difficulty - Easy

Was asked me about my favorite technologies, What i liked about Facebook. And asked me to design a cinema ticket reservation web site­ like the one satyam has.

  • Q1. 

    Kth Largest Element Problem

    Given an array containing N distinct positive integers and a number K, determine the Kth largest element in the array.

    Example:

    Input:
    N = 6, K = 3, array = [2, 1, 5, 6, 3, ...
  • Ans. 

    Find the Kth largest element in an array of distinct positive integers.

    • Sort the array in non-increasing order and return the Kth element.

    • Handle multiple test cases efficiently.

    • Ensure all elements in the array are distinct.

  • Answered by AI
  • Q2. What are virtual functions?
  • Ans. 

    Virtual functions are functions in a base class that are overridden in derived classes to achieve runtime polymorphism.

    • Virtual functions are declared in a base class with the 'virtual' keyword.

    • They are overridden in derived classes using the 'override' keyword.

    • They allow a function to be called based on the runtime type of an object.

    • Virtual functions enable dynamic binding and late binding in C++.

    • Example: virtual void ...

  • Answered by AI
  • Q3. Design a Cinema Ticket Reservation System.
  • Ans. 

    Design a Cinema Ticket Reservation System

    • Use a database to store movie information, showtimes, and seat availability

    • Allow users to search for movies, select showtimes, and choose seats

    • Implement a payment system for ticket purchases

    • Send confirmation emails with QR codes for ticket validation

  • Answered by AI
  • Q4. In how many attempts can you find a defective ball among 10 given balls using a two-pan balance scale?
  • Ans. 

    You can find a defective ball among 10 given balls in 2 attempts using a two-pan balance scale.

    • Divide the 10 balls into two groups of 5 each.

    • Weigh the two groups on the balance scale.

    • If one group is heavier, it contains the defective ball. If they are equal, the defective ball is in the remaining 5 balls.

    • Divide the group of 5 balls with the defective one into two groups of 2 and 3 balls.

    • Weigh the two groups on the bala...

  • Answered by AI
Round 3 - HR 

(1 Question)

Round duration - 30 minutes
Round difficulty - Easy

HR round that lasted for about 30 minutes. The interviewer asked me questions to know more about me and a puzzle.

  • Q1. Can you tell me about your projects and your extracurricular activities?

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPAPaypal interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, System Design, Aptitude, OOPSTime required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Final outcome of the interviewSelected

Skills evaluated in this interview

I appeared for an interview before Jan 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 90 minutes
Round difficulty - Medium

It was conducted in Hacker rank which consisted of 10 aptitude questions that included C, C++, Java MCQ. 2 programming questions were also given.

  • Q1. 

    Minimum Cost Path Problem Statement

    Given an N x M matrix filled with integers, determine the minimum sum obtainable from a path that starts at a specified cell (x, y) and ends at the top left corner of t...

  • Ans. 

    The problem involves finding the minimum sum path from a specified cell to the top left corner of a matrix.

    • Start from the specified cell and calculate the minimum sum path to reach the top left corner using dynamic programming.

    • Consider the three possible moves: down, right, and down-right diagonal.

    • Keep track of the minimum sum at each cell and update it based on the minimum of the three possible moves.

    • Finally, the mini...

  • Answered by AI
  • Q2. 

    Balanced Parentheses Combinations

    Given an integer N representing the number of pairs of parentheses, find all the possible combinations of balanced parentheses using the given number of pairs.

    Explanati...

  • Ans. 

    Generate all possible combinations of balanced parentheses for a given number of pairs.

    • Use backtracking to generate all possible combinations of balanced parentheses.

    • Keep track of the number of open and close parentheses used in each combination.

    • Recursively generate combinations by adding open parentheses if there are remaining, and closing parentheses if the number of open parentheses is greater than the number of clo...

  • Answered by AI
Round 2 - Face to Face 

(4 Questions)

Round duration - 60 minutes
Round difficulty - Medium

Technical round with questions based on data structures, oops and networking.

  • Q1. 

    Character Counting Challenge

    Create a program that counts and prints the total number of specific character types from user input. Specifically, you need to count lowercase English alphabets, numeric digi...

  • Ans. 

    Create a program to count lowercase alphabets, digits, and white spaces from user input until '$' is encountered.

    • Read characters from input stream until '$' is encountered

    • Count lowercase alphabets, digits, and white spaces separately

    • Print the counts of each character type as three integers separated by spaces

  • Answered by AI
  • Q2. 

    K Largest Elements Problem Statement

    Given an unsorted array containing 'N' integers, you are required to find 'K' largest elements from the array and return them in non-decreasing order.

    Input:

    The fir...
  • Ans. 

    Find K largest elements in an unsorted array and return them in non-decreasing order.

    • Sort the array in non-decreasing order.

    • Return the last K elements of the sorted array.

  • Answered by AI
  • Q3. How can you check whether you have an internet connection on your system?
  • Ans. 

    To check internet connection on a system, you can use various methods like pinging a website or checking network status.

    • Use ping command to check connectivity to a website (e.g. ping www.google.com)

    • Check network status using network settings or command line tools

    • Try accessing a website or online service to verify internet connection

  • Answered by AI
  • Q4. What happens when you type a URL in a web browser?
  • Ans. 

    When you type a URL in a web browser, the browser sends a request to the server hosting the website, which then responds with the necessary files to display the webpage.

    • Browser checks cache for DNS resolution

    • If not found, browser sends a DNS query to resolve the domain name to an IP address

    • Browser establishes a TCP connection with the server

    • Browser sends an HTTP request to the server for the webpage

    • Server processes the...

  • Answered by AI
Round 3 - Face to Face 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Medium

Technical round with questions based on data structures, oops and networking.

  • Q1. 

    Counting Sort Problem Statement

    Ninja is learning about sorting algorithms, specifically those that do not rely on comparisons. Can you help Ninja implement the counting sort algorithm?

    Example:

    Input:
    ...
  • Ans. 

    Implement counting sort algorithm to sort an array of integers without comparisons.

    • Count the frequency of each element in the input array.

    • Calculate the prefix sum of frequencies to determine the position of each element in the sorted array.

    • Place each element in its correct position based on the prefix sum.

    • Time complexity of counting sort is O(n+k), where n is the number of elements and k is the range of input.

    • Example: ...

  • Answered by AI
  • Q2. What are the applications of the Fibonacci series in real life?
  • Ans. 

    The Fibonacci series has applications in various fields such as mathematics, computer science, art, and nature.

    • Used in algorithms for optimization problems and dynamic programming.

    • Found in nature, such as the arrangement of leaves on a stem, the branching of trees, and the spiral shapes of shells.

    • Applied in financial markets for predicting stock prices and analyzing market trends.

    • Utilized in art and design for creating

  • Answered by AI
Round 4 - HR 

Round duration - 30 minutes
Round difficulty - Easy

HR round where the interviewer asked questions to know more about me.

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPAPaypal interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, System Design, Aptitude, OOPSTime required to prepare for the interview - 6 monthsInterview preparation tips for other job seekers

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Final outcome of the interviewSelected

Skills evaluated in this interview

I appeared for an interview in Jun 2017.

Interview Questionnaire 

11 Questions

  • Q1. How does ajax call work
  • Ans. 

    Ajax calls allow for asynchronous communication between client and server without reloading the page.

    • Ajax stands for Asynchronous JavaScript and XML

    • Uses XMLHttpRequest object to send and receive data

    • Allows for partial page updates without reloading the entire page

    • Can handle data in various formats such as JSON, XML, HTML, and plain text

    • Example: $.ajax({url: 'example.com', success: function(data){console.log(data)}});

  • Answered by AI
  • Q2. Difference between REST and SOAP
  • Ans. 

    REST is lightweight and uses HTTP while SOAP is XML-based and has more features.

    • REST uses HTTP methods like GET, POST, PUT, DELETE while SOAP uses XML messaging.

    • REST is stateless while SOAP can maintain state.

    • REST is faster and easier to use while SOAP is more secure and reliable.

    • REST is used for web services while SOAP is used for enterprise-level services.

    • Example of REST: Twitter API. Example of SOAP: Amazon Web Serv

  • Answered by AI
  • Q3. What is GET and POST
  • Ans. 

    GET and POST are HTTP methods used for sending data to a server.

    • GET is used to retrieve data from a server

    • POST is used to submit data to a server

    • GET requests can be cached and bookmarked

    • POST requests are not cached and cannot be bookmarked

    • GET requests have length restrictions

    • POST requests have no length restrictions

    • GET requests are less secure than POST requests

  • Answered by AI
  • Q4. What is observer pattern
  • Ans. 

    Observer pattern is a design pattern in which an object maintains a list of its dependents and notifies them automatically of any state changes.

    • Also known as publish-subscribe pattern

    • Used in event-driven systems

    • Allows loose coupling between objects

    • Example: A weather station broadcasts weather updates to multiple displays

    • Example: A stock market ticker notifies multiple investors of stock price changes

  • Answered by AI
  • Q5. What is singleton
  • Ans. 

    Singleton is a design pattern that restricts the instantiation of a class to a single object.

    • Singleton ensures that only one instance of a class exists in the entire application.

    • It provides a global point of access to the instance.

    • Commonly used in scenarios where a single instance needs to coordinate actions across the system.

    • Example: Database connection manager, logger, configuration manager.

  • Answered by AI
  • Q6. What is immutable in java
  • Ans. 

    Immutable in Java refers to objects whose state cannot be changed after creation.

    • String, Integer, and other wrapper classes are immutable in Java.

    • Immutable objects are thread-safe and can be shared without synchronization.

    • To create an immutable class, make all fields final and private, and don't provide setters.

    • Examples of immutable classes in Java include LocalDate, LocalTime, and LocalDateTime.

  • Answered by AI
  • Q7. How do you create immutable in java
  • Ans. 

    Creating immutable in Java

    • Use final keyword to make variables immutable

    • Use private constructor to prevent object modification

    • Use defensive copying to prevent modification of mutable objects

    • Use enum to create immutable objects

    • Use String class to create immutable strings

  • Answered by AI
  • Q8. Where have you used immutable in java
  • Q9. What is dependency injection
  • Ans. 

    Dependency injection is a design pattern that allows objects to receive dependencies rather than creating them internally.

    • It helps to decouple the code and makes it more testable and maintainable.

    • It allows for easier swapping of dependencies without changing the code.

    • There are three types of dependency injection: constructor injection, setter injection, and interface injection.

    • Example: Instead of creating a database co...

  • Answered by AI
  • Q10. What is CORS
  • Ans. 

    CORS stands for Cross-Origin Resource Sharing. It is a security feature implemented in web browsers to restrict access to resources from different origins.

    • CORS allows web servers to specify which origins are allowed to access its resources

    • It is implemented using HTTP headers

    • CORS prevents malicious websites from accessing sensitive data from other websites

    • Examples of resources that may be restricted by CORS include cook

  • Answered by AI
  • Q11. How do you overcome CORS
  • Ans. 

    CORS can be overcome by configuring the server to allow cross-origin requests.

    • Configure the server to include the Access-Control-Allow-Origin header

    • Use JSONP (JSON with Padding) to bypass CORS restrictions

    • Use a proxy server to make the request on behalf of the client

    • Use a browser extension to disable CORS restrictions during development

    • Use a server-side proxy to forward requests to the target server

  • Answered by AI

Interview Preparation Tips

Skills: Java Programming

Skills evaluated in this interview

I appeared for an interview in Dec 2016.

Interview Questionnaire 

5 Questions

  • Q1. Any thing which your friends hate about you?
  • Ans. 

    I tend to be too organized and structured, which can annoy my friends at times.

    • My friends sometimes find my need for planning and structure to be excessive

    • I can be inflexible when it comes to deviating from my plans

    • My attention to detail can come across as nitpicky to some

    • I prioritize efficiency over spontaneity, which can be frustrating for my more laid-back friends

  • Answered by AI
  • Q2. Revenue collected by the barbers of Kanpur in an year
  • Ans. 

    I don't have the available data to answer this question.

    • Need data on number of barbers in Kanpur

    • Need data on average revenue per barber

    • Need data on number of working days in a year

    • Need data on number of customers per barber per day

  • Answered by AI
  • Q3. If you are going to open an e-commerce website like Flipkart what will be the things that you will have to keep in mind.
  • Ans. 

    To open an e-commerce website like Flipkart, one must keep in mind various factors such as target audience, product range, user experience, logistics, and marketing.

    • Identify the target audience and their preferences

    • Offer a wide range of products to cater to different needs

    • Ensure a seamless user experience with easy navigation and quick loading time

    • Establish a robust logistics network for timely delivery and hassle-free...

  • Answered by AI
  • Q4. If given the other job profile will you accept it?
  • Ans. 

    It depends on the job profile and its alignment with my career goals.

    • I would consider the job profile and evaluate its alignment with my career goals.

    • I would assess the job responsibilities and the skills required for the role.

    • I would also consider the company culture and work environment.

    • If the job profile aligns with my career goals and offers growth opportunities, I would accept it.

    • However, if it does not align with...

  • Answered by AI
  • Q5. Any one decision you will like to change in course of these 4 years which could open a better career profile for you.
  • Ans. 

    I would have pursued a certification in data science earlier.

    • I should have taken a course in data science during my undergraduate studies.

    • I could have pursued a certification in data science while working as a business analyst.

    • Learning data science earlier would have opened up more opportunities for me in the field.

    • I could have gained more experience in data analysis and visualization.

    • I could have applied for more adva

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: The question were tricky not conventional quant. Spend time on questions don't rush
Tips: CAT level preparation will be more than enough
Duration: 1 hour
Total Questions: 60

Round: HR Interview
Experience: Basic HR questions. Be confident and good communication skills will help

Round: Technical + HR Interview
Experience: There were 2 panelist one man and a woman. When they asked the revenue question, I asked the ma'am as to how many times do she go to a parlor and then how much does it cost each time. This lightened the mood and she was smiling throughout the interview. After listening to questions I was saying "Please give me 2 minutes to think over it" She finally said "Why do you want 2 minutes every time we ask a question" then i answered "I just want to come up with the best answer in 2 minutes and don't say anything irrelevant". They were very impressed said "Take as much time as you want "
Tips: Just be yourself. Confident with a smile. Workout the problem with them

Skills: Guesstimate Skills, HR Skills, Communication And Confidence, Ability To Handle Situations, Commitment
College Name: IIT Kanpur

Interview Questionnaire 

1 Question

  • Q1. Profitability analysis in the credit cards business
  • Ans. 

    Profitability analysis in the credit cards business involves evaluating the financial performance and returns generated by credit card operations.

    • Profitability analysis helps assess the effectiveness of credit card strategies and identify areas for improvement.

    • Key metrics for profitability analysis include net interest margin, fee income, credit losses, and operating expenses.

    • Comparing profitability across different cu...

  • Answered by AI

Interview Preparation Tips

Round: Test
Duration: 30 minutes
Total Questions: 35

Round: Case Study Interview
Experience: One mini calculative case interview and 2 major calculative

General Tips: Don’t relax too much and do prepare religiously inspite of whether or not your wingie or close friend is taking placements seriously. Also, do help out your wing mates once you are done with yours. There is no better joy than seeing a close friend landing up a dream job. Most importantly, never lose hope. This comes from a 7.1 who failed to make into the shortlists of every company for internships and still landed a job within the first 3 hours on the first day. Just keep believing you’ll do well and you would.
College Name: IIT Kanpur

Interview Preparation Tips

Round: Behavioural Interview
Experience: After the 4th round, they told me that they were making me an offer, and that was a big moment of relief for me.

General Tips: Prepare well for the GDs’ and interview because, a good CV only takes you to the interview and becomes irrelevant after that. Only preparation matters in selection. Also, prioritize your sectors based on your interest, and profile. Be realistic and practical while doing this. Also, If possible, keep one or two options ready beforehand (Ph.D., MBA, civil services, startup/family business) in case you are not able to crack a good job as it prevents you from getting panic. Also, if you are shortlisted in multiple companies in a single slot, do take a friend with you to manage everything. Never be overconfident if you have a very good CV. There have been various instances where many so-called high profile people have struggled with placements due to lack of preparation. Also, do not waste your time preparing for all the sectors, as you won’t be able to become a master in any of them.
Skills:
College Name: IIT Kanpur

Business Analyst Interview Questions & Answers

CapitalOne user image Shreyas Vishwanathan

posted on 1 Nov 2015

I applied via Campus Placement

Interview Questionnaire 

3 Questions

  • Q1. A case study to find out what is more profitable: monthly or daily bus membership
  • Ans. 

    To determine profitability between monthly and daily bus membership, conduct a cost-benefit analysis.

    • Gather data on the cost of monthly and daily bus passes

    • Determine the frequency of usage for each pass type

    • Calculate the total cost of using each pass type over a given period

    • Compare the costs to the benefits of each pass type, such as convenience and flexibility

    • Consider external factors, such as the availability of park...

  • Answered by AI
  • Q2. A case study with profitability of ATMs
  • Q3. Case study on choice of means of transport

Interview Preparation Tips

Round: Test
Experience: It was an easy test with basic DI and LR questions. There were around 18 questions to be done in 20 minutes.
Calculator is allowed so speed was not be a problem.
Tips: A great presence of mind and accuracy is needed. Try some CAT style DI/LR questions.

Round: Case Study Interview
Experience: Initially, the interviewer asked me a general question of what factors should be kept in mind while renting a new place near the office as well as if it is away from the office. Then the case study data was given, and various profit and loss questions were asked with some tricky conditions.
Tips: Maintaining one's cool and calm is a must. Try to solve the questions fast, but it is always better to give a late answer than a wrong answer.

Round: Case Study Interview
Experience: Some general financial knowledge was tested, as in what are the possible sources of income of commercial banks. Then the ATM case study was given, in which I had to ascertain the places in which setting up an ATM will be profitable. I was also asked to draw graphs for the profit/loss equations, and had to interpret some data from it too.
Tips: Strong mathematical skills and basic knowledge of economics will come in handy in such interviews.

Round: Case Study Interview
Experience: This was the final case study, and was similar to the previous ones, with a bit more tricky cases. Some HR questions were asked:
Why Capital One?
Why analytics?

And similar ones.

Skills: Case Analysis, Quantitative Aptitude, Economics, Quick Maths
Duration: 3
College Name: IIT Roorkee

Interview Questionnaire 

6 Questions

  • Q1. Choosing between two car varieties based on various costs
  • Ans. 

    Choosing between two car varieties based on various costs

    • Consider upfront costs such as purchase price and financing options

    • Factor in ongoing costs such as fuel efficiency and maintenance

    • Evaluate potential resale value

    • Compare insurance rates

    • Consider any additional features or benefits of each car

    • Make a decision based on overall cost-effectiveness and personal preferences

  • Answered by AI
  • Q2. Choosing between in-branch and out-branch ATM's (factoring in various parameters)
  • Ans. 

    Choosing between in-branch and out-branch ATM's based on various parameters

    • Consider the location and accessibility of the ATM

    • Analyze the cost of installation and maintenance

    • Evaluate the security measures in place

    • Assess the customer demand and usage patterns

    • Factor in the availability of other banking services at the branch

    • Out-branch ATMs may be more cost-effective but in-branch ATMs offer better customer experience

  • Answered by AI
  • Q3. Choosing a marketing strategy for Capital One (Phone Calls or Letters)
  • Ans. 

    Phone calls are more effective for Capital One's marketing strategy.

    • Phone calls allow for immediate feedback and personalized communication.

    • Letters may be ignored or lost in the mail.

    • Capital One can track phone call success rates and adjust their strategy accordingly.

    • Phone calls can also be used to cross-sell and upsell products.

    • Letters may be more appropriate for certain types of communication, such as legal notices o

  • Answered by AI
  • Q4. Narrate a time when you sought the help of your peers and tell me the outcome
  • Ans. 

    I sought help from my peers when I faced a complex data analysis problem.

    • I explained the problem to my peers and asked for their suggestions.

    • We brainstormed and discussed various approaches to solve the problem.

    • One of my peers suggested a new tool that could simplify the analysis process.

    • I tried the tool and it worked perfectly, saving me a lot of time and effort.

    • The outcome was a successful completion of the project w

  • Answered by AI
  • Q5. Tell me a time when you overcome an obstacle in a project or task and the outcome
  • Ans. 

    Overcoming an obstacle in a project

    • During a software development project, we faced a challenge with integrating a third-party API

    • I researched and found a workaround by using a different API that provided similar functionality

    • I presented the solution to the team and we implemented it successfully

    • The outcome was that we were able to deliver the project on time and within budget

  • Answered by AI
  • Q6. Tell me of a time you learned something new for a project/work
  • Ans. 

    I learned about agile methodology for a project

    • Attended a training session on agile methodology

    • Implemented agile methodology in a project

    • Learned about sprints, backlogs, and daily stand-up meetings

    • Improved project efficiency and communication with team members

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: It was basic data interpretation questions. They gave us a graph or a couple of graphs and asked questions based on them. Calculators were permitted, so it was mostly about speed and application.
Tips: Solve CAT level questions for Data Interpretation, which is a more advanced level. That should make these questions relatively easy. Just practice sums as much as possible to crack this first round.
Duration: 35 minutes
Total Questions: 30

Round: Case Study Interview
Experience: The company basically looks for how logically you think as well as how effectively you can communicate while working on a problem. The question will be a relatively straightforward case with basic math involved. There are three rounds of Case Interviews, with varying problem statements, to test your thought and working process
Tips: Ensure you write everything systematically, and keep the conversation going with your interviewer. Tell him/her what you are doing constantly. Double check your work, ask questions and be calm and confident. The process is very relaxed so take your time. If you have a doubt, don't hesitate to get it clarified. Organise your workings clearly so you may come back to it easily. Don't get flustered if you make a mistake, check your working and correct it.

Round: Behavioural Interview
Experience: This was the last round of interviews. It was very relaxed. If you've made it this far then you have a very good chance of receiving an offer letter. It's more of an HR Interview with easy flowing conversation. It is to gauge your communication ability and to get a better understanding of what you've done previousy in terms of work, projects, etc.
Tips: Be calm. It's a very relaxed interview with a flowing conversation. Be confident. Don't be afraid to take a moment to think. Ensure you answer the questions in a manner that highlights previous work that you've done, or any other accomplishments. DON'T LIE. Be genuine and calm.

General Tips: I've already said all there is to say earlier. But I'll re-iterate. The interviewers are very nice and relaxed. So just be yourself. Communicate effectively and be organised in your thoughts and workings.
Skill Tips: Don't be nervous. The process is well organised and conducted. It is swift and interesting too. Just stay calm and don't be shy.
Skills: Analytic Thinking, Logic, Communication Ability
College Name: NIT Surathkal
Motivation: I loved the job profile and it was the first company I sat for on campus. I didn't want to continue with any tech related jobs. The company too, has a fantastic atmosphere in the work place.

Paytm Interview FAQs

How many rounds are there in Paytm Junior Accountant interview?
Paytm interview process usually has 3 rounds. The most common rounds in the Paytm interview process are Resume Shortlist, Aptitude Test and HR.

Tell us how to improve this page.

Interview Questions from Similar Companies

PhonePe Interview Questions
4.0
 • 303 Interviews
PayPal Interview Questions
3.9
 • 207 Interviews
Fiserv Interview Questions
3.0
 • 173 Interviews
Visa Interview Questions
3.5
 • 138 Interviews
Angel One Interview Questions
4.0
 • 136 Interviews
MasterCard Interview Questions
3.9
 • 134 Interviews
Revolut Interview Questions
2.5
 • 98 Interviews
CapitalOne Interview Questions
3.7
 • 79 Interviews
Truhome Finance Interview Questions
3.9
 • 40 Interviews
View all
Team Lead
2.1k salaries
unlock blur

₹2 L/yr - ₹11.4 L/yr

Senior Software Engineer
1.4k salaries
unlock blur

₹10 L/yr - ₹35 L/yr

Software Engineer
1.4k salaries
unlock blur

₹6 L/yr - ₹23 L/yr

Sales Executive
964 salaries
unlock blur

₹1 L/yr - ₹6 L/yr

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

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