Upload Button Icon Add office photos

Filter interviews by

Paytm First Games Interview Questions and Answers

Updated 17 May 2024

Paytm First Games Interview Experiences

Popular Designations

2 interviews found

SDE Interview Questions & Answers

user image Anonymous

posted on 17 May 2024

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. Resume discussion, and DSA, focused on Heap and JSON
Round 2 - Technical 

(1 Question)

  • Q1. Java concepts, DSA

SDE Interview Questions asked at other Companies

Q1. Return Subsets Sum to K Problem Statement Given an integer array 'ARR' of size 'N' and an integer 'K', return all the subsets of 'ARR' which sum to 'K'. Explanation: A subset of an array 'ARR' is a tuple that can be obtained from 'ARR' by r... read more
View answer (1)

Interview Questionnaire 

4 Questions

  • Q1. Tell me about the your job profile and how you are contributing to it
  • Q2. Tell me about your current business strategies you have adopted and how you have contributed into it
  • Q3. This is your business so let us know the ideas you will be adopting to grow it
  • Q4. Tell me about the revenue structure you are getting from different marketplaces and also tell us the numbers
  • Ans. 

    Our revenue structure is diversified across multiple marketplaces, with Amazon accounting for 40%, eBay for 30%, and our own website for 30%.

    • We have a diversified revenue structure across multiple marketplaces

    • Amazon accounts for 40% of our revenue

    • eBay accounts for 30% of our revenue

    • Our own website accounts for 30% of our revenue

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - The most important thing is don’t write something in your resume which your are not aware of or will not be able to explain it.
Just be thorough with the work you have done in your previous job.

Growth Executive Interview Questions asked at other Companies

Q1. Suppose we have a customer who has already paid for our services but hasn't received them due to some technical issue. If we receive a call from this customer, who is very angry and demanding a solution, how would you handle the situation?
View answer (1)
Paytm First Games Interview Questions and Answers for Freshers
illustration image

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - One-on-one 

(2 Questions)

  • Q1. Write a sql query
  • Ans. 

    SQL query to retrieve employee names and their salaries from a table

    • Use SELECT statement to retrieve data

    • Specify the columns you want to retrieve (employee names and salaries)

    • Specify the table name where the data is stored

  • Answered by AI
  • Q2. Formula of vlookup
  • Ans. 

    VLOOKUP is a function in Excel used to search for a value in a table and return a corresponding value.

    • VLOOKUP searches for a value in the first column of a table and returns a value in the same row from a specified column.

    • The formula syntax is =VLOOKUP(lookup_value, table_array, col_index_num, [range_lookup]).

    • Example: =VLOOKUP(A2, B2:D10, 3, FALSE) will search for the value in cell A2 in the range B2:D10 and return the...

  • Answered by AI

Skills evaluated in this interview

I was interviewed in Oct 2021.

Round 1 - Video Call 

(1 Question)

Round duration - 90 Minutes
Round difficulty - Medium

The first round was scheduled in the evening time.
First of all interviewer introduced himself and after my introduction 
He directly shoot first DSA question. The question was easy but conceptual. I have solved some question with same concept and he ask me to share the screen and code in online compiler. Finally I was able to get correct output with all the use cases and I was like "Half work done!"
Then he asked me very core concepts of JavaScript along with that Some Output based questions.
Then finally he asked me theory questions on React along with my experience in React. 
The interviewer was very helpful as well as polite. I don't think if he will not help me during interview I could crack the interview

  • Q1. 

    Is the Sentence a Pangram?

    Ninja is relocating to a place called NinjaGram, and for school admission, he is required to identify if a given sentence is a pangram. Your task is to assist Ninja in determini...

  • Ans. 

    Yes, the sentence is a pangram if it includes every letter of the English alphabet at least once.

    • Check if the sentence contains all 26 letters of the English alphabet.

    • Convert the sentence to lowercase to simplify the checking process.

    • Use a set to keep track of the letters present in the sentence.

    • Iterate through the sentence and add each unique letter to the set.

    • After iterating, check if the set contains all 26 letters.

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Vishwakarma Institute of Technology. Eligibility criteria1+ Years of ExperienceMPL interview preparation:Topics to prepare for the interview - Data Structures, OOPS, System Design, JavaScript, Operating System, Computer NetworksTime required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Tip 1 : Code at least a single problem on your favourite coding platform with proper understanding of concept.
Tip 2 : Work on your resume, specifically try to grab some technical achievements(Hackathons, GSoc, etc) along with your degree which can stand out you from other candidates.
Tip 3 : Ask your friend for some mock interviews which can help you to excel in interview.

Application resume tips for other job seekers

Tip 1 : Project description should contain maximum keywords mentioned in Job Description. Success Matrix of project will give you an edge in the interview.
Tip 2 : Resume should be one page along with some clickable GitHub and Achievments links if possible.

Final outcome of the interviewSelected
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Search in 2d matrix
  • Ans. 

    Search for a target value in a 2D matrix efficiently.

    • Use binary search on rows to find the potential row where the target value may exist.

    • Then use binary search on that row to find the target value.

  • Answered by AI
  • Q2. Find quadraplets that sum to target
  • Ans. 

    Find quadraplets in an array that sum up to a target value.

    • Use a nested loop to iterate through all possible combinations of quadraplets.

    • Keep track of the sum of each quadraplet and compare it to the target value.

    • Return the quadraplets that match the target sum.

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Aug 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Nth Greatest Element III (Leetcode)
  • Ans. 

    Find the Nth greatest element in an array without sorting

    • Use a priority queue to keep track of the N greatest elements

    • Iterate through the array and add elements to the priority queue

    • Return the top element from the priority queue as the Nth greatest element

  • Answered by AI
  • Q2. Heater Problem (Leetcode)
  • Ans. 

    Heater Problem - Find minimum radius to cover all houses with heaters

    • Sort the houses and heaters arrays

    • For each house, find the closest heater using binary search

    • Calculate the minimum radius needed to cover all houses

  • Answered by AI

Skills evaluated in this interview

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

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

Round 1 - Technical 

(2 Questions)

  • Q1. SQL based questions
  • Q2. Guesstimate on estimating # users on the application
  • Ans. 

    Estimate the number of users on the application based on market research, user demographics, and industry trends.

    • Consider the total addressable market (TAM) for the application

    • Analyze user demographics and behavior to estimate adoption rate

    • Look at industry benchmarks and competitor data for reference

    • Use surveys, focus groups, and user feedback to gather insights

    • Consider factors like market saturation, growth potential,

  • Answered by AI
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via Company Website and was interviewed in Feb 2024. There were 2 interview rounds.

Round 1 - Coding Test 

SQL based leetcode medium and hackerrank

Round 2 - Assignment 

Python take home EDA case study assessment

Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Easy coding questions

Round 2 - Aptitude Test 

Tough level questions , needed high level of thinking

Interview Preparation Tips

Interview preparation tips for other job seekers - practise apti in a solid manner
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

DSA, problem solving

Round 2 - Case Study 

System design interview and prior experience in projects

Round 3 - Culture fit 

(2 Questions)

  • Q1. What was the toughest problem you encountered in your previous assignments ?
  • Q2. Given a choice, what would you have done differently in your previous assignments ?
Contribute & help others!
anonymous
You can choose to be anonymous

Paytm First Games Interview FAQs

How many rounds are there in Paytm First Games interview?
Paytm First Games interview process usually has 2 rounds. The most common rounds in the Paytm First Games interview process are Technical.
What are the top questions asked in Paytm First Games interview?

Some of the top questions asked at the Paytm First Games interview -

  1. Tell me about the revenue structure you are getting from different marketplaces...read more
  2. This is your business so let us know the ideas you will be adopting to grow...read more
  3. Resume discussion, and DSA, focused on Heap and J...read more

Recently Viewed

SALARIES

Magna International

INTERVIEWS

Deltatech Gaming

No Interviews

SALARIES

Trianz

INTERVIEWS

Reliance Games

No Interviews

INTERVIEWS

99Games

No Interviews

INTERVIEWS

Moonfrog Labs

No Interviews

INTERVIEWS

Trianz

No Interviews

JOBS

Trianz

No Jobs

JOBS

Trianz

No Jobs

INTERVIEWS

JetSynthesys

No Interviews

Tell us how to improve this page.

Paytm First Games Interview Process

based on 1 interview

Interview experience

3
  
Average
View more

Interview Questions from Similar Companies

Swiggy Interview Questions
3.8
 • 439 Interviews
Udaan Interview Questions
4.0
 • 335 Interviews
Meesho Interview Questions
3.7
 • 329 Interviews
CARS24 Interview Questions
3.6
 • 328 Interviews
Zepto Interview Questions
3.5
 • 202 Interviews
Blinkit Interview Questions
3.7
 • 183 Interviews
BlackBuck Interview Questions
3.8
 • 174 Interviews
Dream11 Interview Questions
3.8
 • 37 Interviews
PokerBaazi Interview Questions
3.2
 • 1 Interview
View all

Paytm First Games Reviews and Ratings

based on 27 reviews

3.7/5

Rating in categories

3.0

Skill development

3.4

Work-life balance

3.3

Salary

3.3

Job security

3.4

Company culture

2.9

Promotions

3.2

Work satisfaction

Explore 27 Reviews and Ratings
Senior Associate
11 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Assistant Manager
7 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Associate
7 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

QA Engineer
7 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Deputy Manager
6 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Paytm First Games with

Dream11

3.8
Compare

Mobile Premier League

3.4
Compare

Fantasy Akhada

2.0
Compare

My11Circle

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