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 Senior Data Scientist Interview Questions and Answers for Experienced

Updated 14 May 2024

Paytm Senior Data Scientist Interview Experiences for Experienced

2 interviews found

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
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 

(2 Questions)

  • Q1. What is deep learning?
  • Ans. 

    Deep learning is a subset of machine learning that uses neural networks to learn from data.

    • Deep learning involves training neural networks with large amounts of data to make predictions or decisions.

    • It is used in image recognition, natural language processing, and speech recognition.

    • Deep learning models can automatically learn to extract features from raw data.

    • It requires a lot of computational power and data to train ...

  • Answered by AI
  • Q2. Advanced Branch of ai
  • Ans. 

    Reinforcement Learning is an advanced branch of AI that involves training agents to make decisions based on rewards and punishments.

    • Reinforcement Learning involves an agent interacting with an environment and learning from the rewards and punishments it receives.

    • It has been used in various applications such as game playing, robotics, and recommendation systems.

    • Some popular algorithms in Reinforcement Learning include Q...

  • Answered by AI
Round 3 - One-on-one 

(2 Questions)

  • Q1. Expected salary
  • Q2. Shared the salary as needed

Skills evaluated in this interview

Senior Data Scientist Interview Questions & Answers

user image Akanksha Saxena

posted on 14 May 2024

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

I applied via Job Portal and was interviewed before May 2023. There were 3 interview rounds.

Round 1 - Technical 

(3 Questions)

  • Q1. Basic deep Learning and project related questions
  • Q2. Some case study questions
  • Q3. Diff between rnn and lstm
  • Ans. 

    LSTM is a type of RNN with additional memory cells to better capture long-term dependencies.

    • RNN stands for Recurrent Neural Network, while LSTM stands for Long Short-Term Memory.

    • LSTM has additional memory cells (input, forget, output gates) to better capture long-term dependencies.

    • RNN suffers from vanishing/exploding gradient problem, while LSTM helps alleviate this issue.

    • LSTM is better suited for tasks requiring long-...

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Some coding question and ask to optimise them
Round 3 - Behavioral 

(1 Question)

  • Q1. Basic managerial questions

Skills evaluated in this interview

Senior Data Scientist Interview Questions Asked at Other Companies for Experienced

asked in Kyndryl
Q1. Print rows where a certain criterion is met (ex - in a dataset of ... read more
asked in Kyndryl
Q2. Extract only India Players from dictionary (using list comprehens ... read more
Q3. How do you handle large amount of data in financial domain?
asked in Kyndryl
Q4. How do you print the 3, 5 and 7th row in a database (Python - use ... read more
asked in Kyndryl
Q5. What are the types of regression models, name them and explain th ... read more

Interview questions from similar companies

Interview Preparation Tips

Round: Technical Interview
Tips: Have a good grasp of DS algo, java, etc.(Here CGPA doesn't matter)

General Tips: Do’s and Don’ts :
1. Be confident and to be confident prepare well.
2. Set the priority of your companies 
3. Don't start preparation at end. Don't ignore the content of resume.

Be confident and start preparation as soon as possible.
College Name: IIT Kanpur
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Jun 2022. There were 5 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 - Coding Test 

Hacker rank test based on string manipulation questions

Round 3 - Technical 

(2 Questions)

  • Q1. 2nd round will be technical
  • Q2. Yes mostly coding and DS questions you can also expect one logical IQ question
Round 4 - One-on-one 

(1 Question)

  • Q1. This round was mostly behavioural and culture fit round with Manager
Round 5 - HR 

(2 Questions)

  • Q1. Salary negotiation
  • Q2. Notice period discussions

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared for the coding round which will be 1st round hacker rank test

I applied via LinkedIn and was interviewed in Sep 2022. There were 4 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 - Assignment 

Online assesment . 5 coding question in 90 minutes

Round 3 - Coding Test 

Hackerrank coding test with paired screen. They give problem we have to write the logic

Round 4 - Coding Test 

Again hacker rank code pair. the give problem and have to write logic. this round with staff senior engineer

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare on java problems. leet code medium problems.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before 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 - Coding Test 

Online test link given data structures were asked, array problem and string problem
Likewise Double Linked List was also asked

Round 3 - Technical 

(2 Questions)

  • Q1. Spring boot API endpoint description
  • Ans. 

    Spring Boot API endpoint is a URL that exposes the functionality of a web service.

    • API endpoints are the entry points for the client to access the server's resources.

    • Spring Boot provides a simple and easy way to create RESTful APIs.

    • Endpoints can be secured using Spring Security.

    • Endpoints can be documented using Swagger or Spring REST Docs.

    • Examples: /users, /products, /orders

  • Answered by AI
  • Q2. CI CD pipeline, Docker Kubernetes

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident about what you are saying
Be thorough with ur logic and ur skills

Skills evaluated in this interview

I applied via Approached by Company and was interviewed in Jul 2022. There was 1 interview round.

Round 1 - Technical 

(4 Questions)

  • Q1. Given a grid containing 0s and 1s and source row and column, in how many ways, could we reach form source to target. ( 1's represents a blockade and 0's represent accessable points)
  • Ans. 

    Count the number of ways to reach target from source in a grid with 0s and 1s.

    • Use dynamic programming to solve the problem efficiently.

    • Traverse the grid using DFS or BFS to count the number of ways.

    • Consider edge cases like when source and target are the same or when there is no path.

    • Example: Given grid = [[0,0,0],[0,1,0],[0,0,0]], source = (0,0), target = (2,2), answer is 2.

    • Example: Given grid = [[0,1],[0,0]], source =

  • Answered by AI
  • Q2. 1. High Level System Design -> Design Uber like Service. Follow up -> What would be your tech stack for designing such a service to make sure it could scale when needed.
  • Ans. 

    Tech stack for designing a scalable Uber-like service.

    • Use microservices architecture for scalability and fault tolerance.

    • Choose a cloud provider with auto-scaling capabilities.

    • Use a load balancer to distribute traffic across multiple instances.

    • Use a NoSQL database for high availability and scalability.

    • Use message queues for asynchronous communication between services.

    • Use containerization for easy deployment and managem...

  • Answered by AI
  • Q3. (HLD) -> Design a service which combines multiple sources of data/documentation and aggregates it such that all info is available centrally.
  • Ans. 

    Design a service to aggregate multiple sources of data/documentation centrally.

    • Identify sources of data/documentation

    • Determine data aggregation method

    • Design a centralized database to store aggregated data

    • Develop a user-friendly interface to access the data

    • Ensure data security and privacy

  • Answered by AI
  • Q4. (Behavioral) Describe a scenario in which you went above and beyond your regular assigned tasks and responsibilities to help out the Team/Colleague/Organization.
  • Ans. 

    I took on additional responsibilities to help a colleague with a tight deadline.

    • Assisted a colleague with a project that had a tight deadline

    • Took on additional tasks outside of my regular responsibilities

    • Worked extra hours to ensure the project was completed on time

    • Provided guidance and support to the colleague throughout the project

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare about the Architecture of Kafka and also work on developing a good understanding of various types of databases and networking jargons such as Long Polling/Short Polling and how to implement them.

Also, and this is very important -> I am not sure if this company has problem at the recruiter level or this is the general outlook of this company.... if at all you didn't perform well in any of the rounds... say final round or even managerial round. They won't tell you that they have decided to drop your profile or any such thing. A week after the final interview I contacted the recruiter who used to be readily available with all the info and feedbacks was least interested and told me she haven't heard back from the manager whether to drop my case or move forward.

It has been 3 weeks now and no info from them.
And this is not just my experience, many candidates complain about the same kind of behaviour from VISA on various other platforms

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
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 - Coding Test 

DSA coding round.
Graph based question, dp question.

Round 3 - Technical 

(1 Question)

  • Q1. 1. design service to download big file
  • Ans. 

    Design a service to download large files.

    • Use a scalable architecture to handle large file downloads.

    • Implement resumable downloads to handle network interruptions.

    • Use parallel downloading to speed up the download process.

    • Implement authentication and authorization to ensure security.

    • Provide progress updates to the user during the download process.

  • Answered by AI
Round 4 - Technical 

(1 Question)

  • Q1. Java based questions Spring beans

Interview Preparation Tips

Interview preparation tips for other job seekers - Work on your coding skills + system design + Java spring

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
Not Selected
Round 1 - Coding Test 

Implement thread safe load balancer.
focus on input validations and cover all corner cases in tests

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Current company architecture and what was your role

Paytm Interview FAQs

How many rounds are there in Paytm Senior Data Scientist interview for experienced candidates?
Paytm interview process for experienced candidates usually has 3 rounds. The most common rounds in the Paytm interview process for experienced candidates are One-on-one Round, Technical and Resume Shortlist.
How to prepare for Paytm Senior Data Scientist interview for experienced candidates?
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 Python, Data Science, Machine Learning, Data Analysis and Data Processing.
What are the top questions asked in Paytm Senior Data Scientist interview for experienced candidates?

Some of the top questions asked at the Paytm Senior Data Scientist interview for experienced candidates -

  1. What is deep learni...read more
  2. diff between rnn and l...read more
  3. advanced Branch of...read more

Tell us how to improve this page.

Paytm Senior Data Scientist Interview Process for Experienced

based on 2 interviews

Interview experience

3.5
  
Good
View more

Interview Questions from Similar Companies

PhonePe Interview Questions
4.0
 • 305 Interviews
PayPal Interview Questions
3.9
 • 211 Interviews
Fiserv Interview Questions
3.0
 • 174 Interviews
Visa Interview Questions
3.5
 • 140 Interviews
Angel One Interview Questions
4.0
 • 137 Interviews
MasterCard Interview Questions
3.9
 • 137 Interviews
Revolut Interview Questions
2.5
 • 100 Interviews
CapitalOne Interview Questions
3.7
 • 79 Interviews
Truhome Finance Interview Questions
3.9
 • 42 Interviews
View all
Paytm Senior Data Scientist Salary
based on 58 salaries
₹13 L/yr - ₹40 L/yr
5% less than the average Senior Data Scientist Salary in India
View more details

Paytm Senior Data Scientist Reviews and Ratings

based on 5 reviews

2.7/5

Rating in categories

2.7

Skill development

2.4

Work-life balance

3.6

Salary

2.0

Job security

1.6

Company culture

1.9

Promotions

2.4

Work satisfaction

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

₹2 L/yr - ₹10.5 L/yr

Senior Software Engineer
1.4k salaries
unlock blur

₹10.1 L/yr - ₹36 L/yr

Software Engineer
1.4k salaries
unlock blur

₹6 L/yr - ₹23 L/yr

Senior Associate
1k salaries
unlock blur

₹2.2 L/yr - ₹9 L/yr

Sales Executive
967 salaries
unlock blur

₹1 L/yr - ₹6.4 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