Upload Button Icon Add office photos

Filter interviews by

Appreciate Platform Interview Questions and Answers

Be the first one to contribute and help others!

Interview questions from similar companies

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

I applied via Instahyre and was interviewed in Oct 2024. There were 3 interview rounds.

Round 1 - Coding Test 

Basic Nodejs questions

Round 2 - Technical 

(2 Questions)

  • Q1. Live peer coding interview
  • Q2. Fundamental of JS and clean code architecture
Round 3 - HR 

(2 Questions)

  • Q1. Salary expectation
  • Q2. Joining date and

Interview Preparation Tips

Interview preparation tips for other job seekers - Experience was good

I applied via Job Fair

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 - HR 

(3 Questions)

  • Q1. What is Google pay and why is it useful
  • Ans. 

    Google Pay is a digital payment platform that allows users to make secure and convenient transactions using their smartphones.

    • Google Pay enables users to link their bank accounts, credit cards, and debit cards to make payments.

    • It offers a fast and easy way to pay for purchases both online and in physical stores.

    • Users can also send and receive money to/from friends and family instantly.

    • Google Pay provides a secure payme...

  • Answered by AI
  • Q2. Is Google pay helpful
  • Q3. What is the uses of Google pay
  • Ans. 

    Google Pay is a digital wallet platform and online payment system developed by Google.

    • Allows users to make payments using their mobile phones

    • Offers cashback and rewards for transactions

    • Can be used for online and offline transactions

    • Supports multiple payment methods including UPI, credit/debit cards, and net banking

    • Offers easy and secure transactions with biometric authentication

  • Answered by AI
Round 3 - Coding Test 

Understand the task and problems

Interview Preparation Tips

Interview preparation tips for other job seekers - A roundup of advice
Apply if u r not fully qualified
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

1 hour test conducted by the company

Round 2 - Group Discussion 

Data structure and all

Interview experience
2
Poor
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Newspaper Ad and was interviewed before May 2022. There were 2 interview rounds.

Round 1 - Aptitude Test 

45mins logical answers and quantitavie apptitude

Round 2 - Coding Test 

Coding is based on dsa problem sloving

Interview Preparation Tips

Topics to prepare for Google Pay Consultant interview:
  • DSA
Interview preparation tips for other job seekers - i am just saying for the formalities
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Ask something abouth C+

I applied via Naukri.com and was interviewed in Oct 2022. There were 2 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 - HR 

(2 Questions)

  • Q1. What is the diffreant other peoples and u
  • Ans. 

    I have unique skills, experiences, and personality traits that differentiate me from others.

    • I have a strong work ethic and am highly motivated to succeed

    • I have excellent communication and interpersonal skills

    • I have a unique set of experiences and perspectives that allow me to approach problems in a creative and innovative way

    • I am adaptable and able to quickly learn and apply new skills

    • I am passionate about what I do an

  • Answered by AI
  • Q2. What u earn for us
  • Ans. 

    I will earn significant revenue for the company through my strong sales skills and ability to build and maintain relationships with clients.

    • I have a proven track record of exceeding sales targets in my previous roles.

    • I will leverage my extensive network of contacts to generate new business opportunities.

    • I am skilled in identifying customer needs and providing tailored solutions to meet those needs.

    • I will actively engag...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep hardworking and think positive, if u need to work with mind then u can achieve the target easily
Interview experience
4
Good
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed before Aug 2023. There were 2 interview rounds.

Round 1 - Coding Test 

All about coding and solving questions

Round 2 - Technical 

(2 Questions)

  • Q1. All about coding questions in depth and follow up questions
  • Q2. Be good in coding

Interview Preparation Tips

Interview preparation tips for other job seekers - Very supportive interviewer. Helps in between to make you comfortable

Interview Questionnaire 

2 Questions

  • Q1. DSA asked overall
  • Q2. Practise all dsa questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Not that hard can be solved with practise

I applied via AngelList and was interviewed before Oct 2021. There were 2 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 - HR 

(2 Questions)

  • Q1. What's your name? Previously working details
  • Q2. Your long term goals?

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare hard guys they are much more expertise in their field

I was interviewed in Mar 2021.

Round 1 - Video Call 

(3 Questions)

Round duration - 90 minutes
Round difficulty - Medium

Started with projects discussion and internships and moved forward with coding problems.
It started at around 6:00 PM and lasted for 90 minutes approximately
The interviewer was very cool, he even gave me some tips on improving myself further at the end of the interview.

  • Q1. 

    Longest Substring with At Most K Distinct Characters

    Given a string S of length N and an integer K, find the length of the longest substring that contains at most K distinct characters.

    Input:

    The first...
  • Ans. 

    Find the length of the longest substring with at most K distinct characters in a given string.

    • Use a sliding window approach to keep track of the characters and their counts within the window.

    • Maintain a hashmap to store the characters and their frequencies.

    • Update the window size and characters count as you iterate through the string.

    • Return the maximum window size encountered for each test case.

  • Answered by AI
  • Q2. 

    Maximum Frequency Number Problem Statement

    Given an array of integers with numbers in random order, write a program to find and return the number which appears the most frequently in the array.

    If multip...

  • Ans. 

    Find the number with the maximum frequency in an array of integers.

    • Iterate through the array and keep track of the frequency of each number using a hashmap.

    • Find the number with the maximum frequency and return it.

    • If multiple elements have the same maximum frequency, return the one that appears first.

  • Answered by AI
  • Q3. 

    Ninja and Bombs Problem Statement

    Ninja wants to travel from his house to his best friend's house. The locations of the houses are on a 2D coordinate plane, where Ninja's house is located at the origin (0...

  • Ans. 

    Determine if Ninja can reach his friend's house with even x-coordinate without using modulus operator.

    • Check if the x-coordinate is even or odd by using bitwise AND operation with 1.

    • Return 1 if x-coordinate is even, else return 0.

    • Handle multiple test cases by iterating through each input.

  • Answered by AI
Round 2 - Video Call 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Easy

I was asked a coding question then, a system design question and some basic operating systems and oops questions

  • Q1. 

    Find Duplicates in an Array

    Given an array ARR of size 'N', where each integer is in the range from 0 to N - 1, identify all elements that appear more than once.

    Return the duplicate elements in any orde...

  • Ans. 

    Find duplicates in an array of integers within a specified range.

    • Iterate through the array and keep track of the count of each element using a hashmap.

    • Return elements with count greater than 1 as duplicates.

    • Time complexity can be optimized to O(N) using a set to store seen elements.

  • Answered by AI
  • Q2. Can you design a Google Search Engine?
  • Ans. 

    Designing a Google Search Engine involves creating a web crawler, indexing system, and ranking algorithm.

    • Develop a web crawler to discover and retrieve web pages.

    • Implement an indexing system to store and organize the content of web pages.

    • Design a ranking algorithm to determine the relevance of search results.

    • Include features like autocomplete, spell check, and personalized search results.

    • Optimize for speed and scalabil...

  • Answered by AI

Interview Preparation Tips

Eligibility criteriaNo CriteriaMobiKwik interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, OOPS, System Design, Operating SystemsTime required to prepare for the interview - 1 monthInterview preparation tips for other job seekers

Tip 1 : Practice data structures problems
Tip 2 : Read about System Designs
Tip 3 : Study the popular algorithms

Application resume tips for other job seekers

Tip 1 : Mention your projects
Tip 2 : Mention your internships

Final outcome of the interviewSelected

Skills evaluated in this interview

Tell us how to improve this page.

Appreciate Platform Interview Process

based on 1 interview

Interview experience

3
  
Average
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Bharti Airtel Interview Questions
4.0
 • 848 Interviews
Paytm Interview Questions
3.3
 • 752 Interviews
PhonePe Interview Questions
4.0
 • 300 Interviews
Freecharge Interview Questions
3.8
 • 53 Interviews
Mobikwik Interview Questions
3.7
 • 47 Interviews
Google Pay Interview Questions
4.2
 • 34 Interviews
Amazon Pay Interview Questions
4.1
 • 13 Interviews
Ola Money Interview Questions
3.1
 • 1 Interview
Jio Money Interview Questions
4.2
 • 1 Interview
View all

Appreciate Platform Reviews and Ratings

based on 4 reviews

4.3/5

Rating in categories

4.7

Skill development

4.5

Work-life balance

4.5

Salary

4.2

Job security

4.1

Company culture

4.1

Promotions

4.4

Work satisfaction

Explore 4 Reviews and Ratings
Compare Appreciate Platform with

Paytm

3.3
Compare

PhonePe

4.0
Compare

Google Pay

4.2
Compare

Amazon Pay

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