Upload Button Icon Add office photos

Filter interviews by

Clear (1)

Cashkaro.com Analyst Interview Questions and Answers

Updated 4 Apr 2024

Cashkaro.com Analyst Interview Experiences

2 interviews found

Analyst Interview Questions & Answers

user image Anonymous

posted on 21 Jan 2024

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

I applied via Approached by Company and was interviewed in Mar 2024. There was 1 interview round.

Round 1 - One-on-one 

(1 Question)

  • Q1. About cashkaro working operations, and affiliate marketing advance excel ,basic sql

Analyst Interview Questions & Answers

user image Anonymous

posted on 26 Jun 2023

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

I applied via Referral and was interviewed in Dec 2022. There were 5 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all Resume tips
Round 2 - HR 

(1 Question)

  • Q1. The HR call was to make sure that I am good enough for the role and to become an employee for the company.
Round 3 - Assignment 

It had the role related questions for example writing the voucher description for a bank credit card.

Round 4 - One-on-one 

(1 Question)

  • Q1. There were senior position employees from the same team in the company who tested my knowledge about the domain and also talked about the assignment I did. They were pretty direct on questioning my skillse...
Round 5 - Aptitude Test 

It consisted of general aptitude and analytical questions to be answered within one of opening the link with the access to the test.

Interview Preparation Tips

Interview preparation tips for other job seekers - Just be confident and do as much research as possible about the company and your desired role.

Analyst Interview Questions Asked at Other Companies

asked in Capgemini
Q1. N-th Fibonacci Number Problem Statement Given an integer ‘N’, you ... read more
asked in Deloitte
Q2. Reverse a Number Problem Statement Given an integer 'N', write a ... read more
Q3. A 10x10x10 cube is made up of 1x1x1 cubes. Its outer surface is p ... read more
Q4. Ninja and the Game of Words In this game, Ninja is provided with ... read more
Q5. Good old standard problem: Playing number game with your friend t ... read more

Interview questions from similar companies

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

I applied via LinkedIn and was interviewed before Sep 2022. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all Resume tips
Round 2 - Case Study 

Was asked about a case study regarding cost and profit, interviewer was observing my logical thinking and approach towards the problem.
Basically they'll check if you are covering all aspects or not.

Round 3 - Coding Test 

SQL easy to medium level

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and open to discuss various scenarios.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Mar 2024. 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 Resume tips
Round 2 - Technical 

(2 Questions)

  • Q1. Medium level SQL question
  • Q2. Case study on Bigbasket/Instagram

I applied via Recruitment Consulltant and was interviewed in Dec 2021. There were 3 interview rounds.

Round 1 - HR 

(1 Question)

  • Q1. Details of past roles
Round 2 - Aptitude Test 

15 mins aptitude test

Round 3 - Case Study 

Case study on the role

Interview Preparation Tips

Interview preparation tips for other job seekers - Easy process to follow. Turnaround is quick
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Referral and was interviewed before Apr 2023. There was 1 interview round.

Round 1 - One-on-one 

(4 Questions)

  • Q1. There was just 1 to on chatting - i believe the interviewer himself doesn't know anything
  • Q2. What's your name?
  • Q3. Previous job detials
  • Q4. Expectations in this company

Interview Preparation Tips

Interview preparation tips for other job seekers - do not apply to this company - worst company ever
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Jun 2023. There were 3 interview rounds.

Round 1 - Coding Test 

Prepare basics such as group by, case functions, aggregation and some theoretical part such as sequence of sql query execution, basic concepts of dbms

Round 2 - Case Study 

Case study on analytics side like think like a product analyst and define metrics for a feature for example feature that count your daily steps.

Round 3 - HR 

(2 Questions)

  • Q1. Culture related Queries
  • Q2. Salary expectations and negotiation deal

Interview Preparation Tips

Interview preparation tips for other job seekers - be confident

Interview Preparation Tips

Round: Round 1:
Experience: It was 5 question screening round which was meant to know about my expectations from the organization.

Round: Round 2:
Experience: Online Coding round on Hackerrank3 coding coding questions:
– Run length Encoding of string with slight modification
– Finding buying day and selling day for a given set of days such that the profit of the buyer is maximum .
– Given a set of keywords and a long string, break the long string such that the split words are from the keywords onlyQuestions were fairly simple but test cases were very nice.

Round: Round 3:
Experience: 1st InterviewThe interview went for about 1 hr and was completely technical. The questions asked were:
– Given a binary tree how would you identify whether it is a Binary Search tree or not?
I gave the answer using inorder traversal.– given a bst, convert it to a binary tree such that each element is replaced by the sum of all the elements greater than it?– Given an employee table with employee name and salary find the 2nd highest salary.
I gave the vague answer of using inner query then he asked if instead of 2nd its nth highest then what would I do. After sometime I asked for the keyword (which was LIMIT) and then I wrote the query which was almost syntactically correct.– The answer to the question of binary tree, he asked me if I could solve it without using any space (my previous solution took O(n) space)?
I was writing the solution and in between he said to stop and asked me if I have any question.

Round: Round 4: Java application development
Experience: Imagine we have an Email Queue table in our database with each row representing an email that needs sending. Table Name: EmailQueue Columns: id, from_email_address, to_email_address, subject, body (you can also add columns as you wish, but at minimum it should have these columns). Write a java program that will read from this table and send the emails over an SMTP server (not local unix mail). For the SMTP sending you can use a pre-existing library of your choice, if you wish. Please take into consideration the following:Speed is of the utmost concern. Imagine we have 1 million emails to send. Your code should not sequentially send one email after another.Your solution should scale. In other words, if we determine the fastest we can send emails from a single server is 300 emails/second I should be able to run the same Java program on another server and be able to send another 300 emails/second.Your code should be careful to ensure that it is not possible for the same email to be sent twice (especially when running multiple processes of the program).Don’t worry about whether the SMTP server can handle the load. It can.Order emails are sent is not necessarily important. In other words, even though I’m calling this a “queue” it’s not important to guarantee that emails are sent in the order they arequeued.Comment your code extensively.Once again, speed is the primary concern. So do remember to think about what the slow points in the email sending process could be and take efforts to minimize those pain points.Send me instructions on how to compile/run/test your code along with the code itself. Also the sql statements for me to create the table that you are working with and the sql statements to insert a few test emails.

Round: Round 5: Final interview
Experience: It was of about 1 hr on soft and technical skills. Questions asked include:– Tell be about yourself?
– given an array. find the pattern it follows? there can be 4 patterns only: increasing, decreasing, increase then decrease and decrease then increase.
– Given an array of distinct positive numbers find the maximum sum of elements such that no 2 elements occurring in the maximum sum set is adjacent to each other.
I gave an incorrect answer and then I realised it, so I asked to rectify and she allowed me to do so.
– How can you improve suggestions of coupons to the users?
This discussion went for about 20 mins.

College Name: NA

Interview Questionnaire 

8 Questions

  • Q1. Given a binary tree how would you identify whether it is a Binary Search tree or not?
  • Ans. 

    To identify whether a binary tree is a Binary Search Tree or not.

    • Check if the left subtree is a Binary Search Tree

    • Check if the right subtree is a Binary Search Tree

    • Check if the root node is greater than all the nodes in the left subtree

    • Check if the root node is less than all the nodes in the right subtree

  • Answered by AI
  • Q2. Solve it without using array (in case the solution is - Inorder traversal should be in sorted order)?
  • Ans. 

    Solution for inorder traversal in sorted order without using array

    • Implement a binary search tree and perform inorder traversal

    • Use a stack to simulate the recursive function call stack

    • Maintain a variable to keep track of the previously visited node

    • Compare the current node with the previously visited node to check if it is in sorted order

  • Answered by AI
  • Q3. Given a BST, convert it to a binary tree such that each element is replaced by the sum of all the elements greater than it?
  • Ans. 

    Convert a BST to a binary tree with each element replaced by sum of all greater elements.

    • Traverse the BST in reverse inorder and keep track of the sum of all greater elements.

    • Replace each node's value with the sum and update the sum.

    • Recursively perform the above steps on left and right subtrees.

    • Time complexity: O(n), Space complexity: O(h) where h is the height of the tree.

  • Answered by AI
  • Q4. Given an employee table with employee name and salary find the 2nd highest salary in sql?
  • Ans. 

    Find the 2nd highest salary from an employee table in SQL.

    • Use the SELECT statement to retrieve the salaries in descending order.

    • Use the LIMIT keyword to limit the result set to the second row.

    • Use a subquery to exclude the highest salary from the result set.

  • Answered by AI
  • Q5. Tell be about yourself?
  • Ans. 

    I am a software engineer with experience in developing web applications and a passion for problem-solving.

    • Experienced in developing web applications using languages such as Java, Python, and JavaScript

    • Proficient in using frameworks such as Spring, Django, and React

    • Strong problem-solving skills and ability to work in a team environment

    • Passionate about learning new technologies and keeping up with industry trends

  • Answered by AI
  • Q6. Given an array. find the pattern it follows? there can be 4 patterns only: increasing, decreasing, increase then decrease and decrease then increase
  • Ans. 

    Given an array, determine if it follows one of four patterns: increasing, decreasing, increase then decrease, or decrease then increase.

    • Iterate through the array and compare each element to the previous one.

    • If all elements are increasing, it follows the increasing pattern.

    • If all elements are decreasing, it follows the decreasing pattern.

    • If there is a point where the elements start decreasing after increasing, it follow...

  • Answered by AI
  • Q7. Given an array of distinct positive numbers find the maximum sum of elements such that no 2 elements occurring in the maximum sum set is adjacent to each other
  • Ans. 

    Given an array of distinct positive numbers, find the maximum sum of non-adjacent elements.

    • Use dynamic programming to keep track of the maximum sum at each index

    • At each index, choose between including the current element or skipping it

    • The maximum sum at index i is the maximum of the sum including i-2 and i or the sum excluding i

    • Return the maximum sum at the last index

  • Answered by AI
  • Q8. How can you improve suggestions of coupons to the users?
  • Ans. 

    Use machine learning algorithms to analyze user behavior and preferences to suggest personalized coupons.

    • Collect user data such as purchase history, search history, and demographics

    • Use machine learning algorithms to analyze the data and identify patterns

    • Create personalized coupon suggestions based on the identified patterns

    • Regularly update and refine the algorithm to improve accuracy

    • Allow users to provide feedback on t

  • Answered by AI

Interview Preparation Tips

Round: Resume Shortlist
Tips: - Keep your resume as compact as possible- Try to keep requirements of the profile in your resume- Survey on how much the company is paying in the market and then state your expected CTC in the range of +/- 2 LPA.

Round: Test
Experience: 2 questions were a bit easy and the 3rd one was a little tricky for the people who are afraid of recursive programming. All the questions are provided in the link here: -----/
Tips: - Programming experience or programmer's help ( :p ) was the only way out of it.- Try to solve problems which you can solve first rather than hanging on any tough problem, because people solving 2/3 questions were also selected for the next round.
Duration: 90 minutes
Total Questions: 3

Round: Technical Interview
Experience: The interviewer was very helpful in guiding, motivating and giving me time to solve the problems. It went quite smoothly and within days I was selected for the next interview.
Tips: - Never speak without thinking unless said to speak what you are thinking.- Try to clarify your doubts before you jump into solving questions asked.- If you are taking any assumption, forget not to notify it to the interviewer.

Round: App development
Experience: I was made to develop a Java application within a week and submit it with proper documentation. It was very interesting app and I learned tons of things while developing.
Tips: - Try to do your task by yourself.- Keep your code as clean and OOP-like as possible- Make your friend read your documentation you prepared to know if it is understandable.- Use git or any other VCS while developing to ensure fallback in case the application breaks down (which usually happens during development).

Round: Technical Interview
Experience: This was exactly like a last gateway to cross for entering into the company. The interviewer was modest and calm, watching all my steps that I take while solving the problem. Twisting problems and guiding me to unwind the twists. At the end...a great experience!
Tips: Same as the above interview tips, nothing much is required for any technical interview (if you ask me).

Skills: Programming, Java application development, Learning/Grabbing new skills, SQL knowledge
College Name: NIT DURGAPUR
Motivation: Few points that motivated me: - Web development related work which is my area of interest.
- Company was a startup so a lot of work => lot of learning (crucial for starting career).- Pay was decent, so I can sustain my living and save something.
Funny Moments: It was my last interview and while I was solving a problem I wrote something wrong, and by mistake " f**k " came out of my mouth. The interviewer was on the phone and for some time I was just wondering if she heard that word, whether it would affect my interview result and all sort of things, rather than about the problem.
A suggestion: Please mind what comes out of your mouth ;)

Skills evaluated in this interview

I was interviewed in Dec 2016.

Interview Questionnaire 

1 Question

  • Q1. Tell me about yourself tell me about your internship My interview was unstructured(i.e based on your reply interviewer was asking Questions)

Interview Preparation Tips

Round: Test
Experience: Questions were very difficult and solving one Question gets you shortlisted for interview
I don't remember the Questions
Duration: 1 hour 30 minutes
Total Questions: 2

Skills: Internship Work, Inter Person Communication Skills
College Name: IIT Roorkee
Contribute & help others!
anonymous
You can choose to be anonymous

Cashkaro.com Interview FAQs

How many rounds are there in Cashkaro.com Analyst interview?
Cashkaro.com interview process usually has 3 rounds. The most common rounds in the Cashkaro.com interview process are One-on-one Round, Aptitude Test and Resume Shortlist.
How to prepare for Cashkaro.com Analyst interview?
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 Cashkaro.com. The most common topics and skills that interviewers at Cashkaro.com expect are Blended Process, Chat Support, Customer Handling, Customer Service and Email Process.

Recently Viewed

INTERVIEWS

Cashkaro.com

No Interviews

JOBS

Cashkaro.com

No Jobs

SALARIES

CARS24

SALARIES

Treebo Hotels

SALARIES

HyperVerge

COMPANY BENEFITS

Quantiphi Analytics Solutions Private Limited

No Benefits

SALARIES

Alibaba Group

INTERVIEWS

Cashkaro.com

No Interviews

JOBS

Info Edge

No Jobs

JOBS

Amazon

No Jobs

Tell us how to improve this page.

Cashkaro.com Analyst Interview Process

based on 2 interviews

Interview experience

4.5
  
Good
View more

Interview Questions from Similar Companies

Cogoport Interview Questions
2.9
 • 53 Interviews
Treebo Hotels Interview Questions
3.2
 • 22 Interviews
Simpl Interview Questions
2.8
 • 17 Interviews
EazyDiner Interview Questions
3.2
 • 14 Interviews
KrazyBee Interview Questions
3.7
 • 14 Interviews
TripFactory Interview Questions
2.0
 • 13 Interviews
Lokal App Interview Questions
3.6
 • 12 Interviews
Spyne Interview Questions
3.6
 • 12 Interviews
View all
Cashkaro.com Analyst Salary
based on 12 salaries
₹3.3 L/yr - ₹5 L/yr
41% less than the average Analyst Salary in India
View more details

Cashkaro.com Analyst Reviews and Ratings

based on 7 reviews

3.0/5

Rating in categories

3.1

Skill development

2.9

Work-life balance

3.2

Salary

3.5

Job security

2.8

Company culture

2.8

Promotions

2.6

Work satisfaction

Explore 7 Reviews and Ratings
Senior Associate
23 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Data Analyst
16 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Assistant Manager
15 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Analyst
12 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Associate
10 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Cashkaro.com with

CouponDunia

3.8
Compare

GrabOn

4.3
Compare

GoPaisa

1.8
Compare

PaisaWapas

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