Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Jar Team. If you also belong to the team, you can get access from here

Jar Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Jar Interview Questions and Answers

Updated 19 Dec 2024
Popular Designations

14 Interview questions

A Category Manager was asked 6mo ago
Q. What are the steps to start a new category?
Ans. 

The steps to start a new category involve market research, identifying trends, setting goals, creating a strategy, selecting products, and launching the category.

  • Conduct market research to identify gaps and opportunities in the market.

  • Identify trends and consumer preferences to determine the potential success of the new category.

  • Set clear goals and objectives for the new category, including sales targets and marke...

View all Category Manager interview questions
A Product Designer was asked 6mo ago
Q. What is your design process?
Ans. 

My design process involves research, ideation, prototyping, testing, and iteration to create user-centered solutions.

  • Research: Gather information about user needs, market trends, and competition.

  • Ideation: Brainstorm and generate ideas for potential solutions.

  • Prototyping: Create low-fidelity and high-fidelity prototypes to visualize concepts.

  • Testing: Conduct user testing to gather feedback and iterate on designs.

  • It...

View all Product Designer interview questions
A Product Manager was asked 7mo ago
Q. There is a 25% drop across an e-commerce funnel. Which step should be prioritized first?
Ans. 

The step to be prioritised first is the step with the highest drop-off rate.

  • Analyze data to identify the step with the highest drop-off rate

  • Focus on optimizing that step to reduce drop-off

  • Implement A/B testing to determine the most effective changes

  • Monitor the impact of changes on drop-off rates

View all Product Manager interview questions
A Product Business Analyst was asked 9mo ago
Q. What is your approach to performing Root Cause Analysis (RCA) on a decrease in conversions?
Ans. 

Conduct Root Cause Analysis (RCA) to identify reasons for decrease in conversions.

  • Review website analytics to identify drop-off points in the conversion funnel.

  • Analyze A/B test results to see if recent changes have impacted conversions.

  • Interview customers to gather feedback on potential issues with the product or website.

  • Check for technical issues such as slow loading times or broken links that may be affecting co...

View all Product Business Analyst interview questions
A Backend Developer Intern was asked 9mo ago
Q. What is the difference between == and .equals()?
Ans. 

The difference between == and .equal() is that == is used to compare values for equality, while .equal() is a method used to compare objects for equality.

  • The == operator is used to compare primitive data types like integers, strings, etc. for equality.

  • The .equal() method is used to compare objects in Java for equality. It is typically overridden in classes to define custom equality logic.

  • Example: int a = 5; int b ...

View all Backend Developer Intern interview questions
A Backend Developer Intern was asked 9mo ago
Q. What happens when a primitive data type is passed in a method call versus when a non-primitive data type is passed? When would there be a change in value after a downstream operation, and when would there n...
Ans. 

Primitive data types are passed by value, while non-primitive data types are passed by reference. Changes in value can occur after downstream operations for non-primitive data types.

  • Primitive data types (int, float, char, etc.) are passed by value, meaning a copy of the value is passed to the method. Changes made to the parameter inside the method do not affect the original value.

  • Non-primitive data types (objects,...

View all Backend Developer Intern interview questions
A Backend Developer Intern was asked 9mo ago
Q. Write a function that reverses a string. The input string is given as an array of characters s.
Ans. 

Reverse a string by iterating through the characters and swapping them

  • Create an empty string to store the reversed string

  • Iterate through the characters of the input string from end to start

  • Append each character to the empty string to reverse the string

View all Backend Developer Intern interview questions
Are these interview questions helpful?
A Backend Developer Intern was asked 9mo ago
Q. What are the common annotations used in Spring Boot?
Ans. 

Common annotations used in Spring Boot for backend development

  • 1. @RestController - used to define a controller and to indicate that the return value of the methods should be directly written to the HTTP response body

  • 2. @RequestMapping - used to map web requests to specific handler methods

  • 3. @Autowired - used for automatic dependency injection

  • 4. @Service - used to indicate that a class is a service

  • 5. @Repository - ...

View all Backend Developer Intern interview questions
A Backend Developer Intern was asked 10mo ago
Q. Describe the database schema of one of your projects.
Ans. 

The DB schema of my project includes tables for users, products, orders, and reviews.

  • Users table with columns for user ID, username, email, password

  • Products table with columns for product ID, name, price, description

  • Orders table with columns for order ID, user ID, product ID, quantity

  • Reviews table with columns for review ID, product ID, user ID, rating, comment

View all Backend Developer Intern interview questions
A Backend Developer Intern was asked 10mo ago
Q. Is JavaScript multithreaded or single-threaded?
Ans. 

Javascript is single threaded.

  • Javascript is single threaded, meaning it can only execute one piece of code at a time.

  • This is because of the event loop in Javascript, which manages the execution of code.

  • Asynchronous operations in Javascript, like setTimeout or AJAX requests, are handled by the event loop.

  • Web Workers can be used to achieve multithreading in Javascript for CPU-intensive tasks.

View all Backend Developer Intern interview questions

Jar Interview Experiences

30 interviews found

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

I applied via Naukri.com and was interviewed in Nov 2024. There were 3 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. How your last experience a fit for this company?
  • Ans. 

    My experience as a Category Manager in the retail industry aligns well with the needs of this company.

    • Managed product categories to drive sales and profitability

    • Developed strategic plans for assortment and pricing

    • Worked closely with suppliers to negotiate contracts and promotions

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

(1 Question)

  • Q1. How did you imporve P&L in last organisation?
  • Ans. 

    Implemented cost-saving initiatives and optimized product assortment to increase profitability.

    • Analyzed sales data to identify underperforming products and discontinued them

    • Negotiated better pricing with suppliers to reduce costs

    • Implemented promotional strategies to drive sales and increase margins

    • Optimized inventory levels to reduce carrying costs

    • Introduced new product lines with higher profit margins

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

(1 Question)

  • Q1. How to start a new category?
  • Ans. 

    The steps to start a new category involve market research, identifying trends, setting goals, creating a strategy, selecting products, and launching the category.

    • Conduct market research to identify gaps and opportunities in the market.

    • Identify trends and consumer preferences to determine the potential success of the new category.

    • Set clear goals and objectives for the new category, including sales targets and market sha...

  • Answered by AI
Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Technical 

(6 Questions)

  • Q1. Mostly on projects and previous tech knowledge
  • Q2. Whats the difference between == and .equal()?
  • Ans. 

    The difference between == and .equal() is that == is used to compare values for equality, while .equal() is a method used to compare objects for equality.

    • The == operator is used to compare primitive data types like integers, strings, etc. for equality.

    • The .equal() method is used to compare objects in Java for equality. It is typically overridden in classes to define custom equality logic.

    • Example: int a = 5; int b = 5; ...

  • Answered by AI
  • Q3. What happens a primitive data type is passed in a method call and non-primitive data types are passes? when would there be change in value after downstream operation and opposite
  • Ans. 

    Primitive data types are passed by value, while non-primitive data types are passed by reference. Changes in value can occur after downstream operations for non-primitive data types.

    • Primitive data types (int, float, char, etc.) are passed by value, meaning a copy of the value is passed to the method. Changes made to the parameter inside the method do not affect the original value.

    • Non-primitive data types (objects, arra...

  • Answered by AI
  • Q4. What are the common annotations used in spring boot
  • Ans. 

    Common annotations used in Spring Boot for backend development

    • 1. @RestController - used to define a controller and to indicate that the return value of the methods should be directly written to the HTTP response body

    • 2. @RequestMapping - used to map web requests to specific handler methods

    • 3. @Autowired - used for automatic dependency injection

    • 4. @Service - used to indicate that a class is a service

    • 5. @Repository - used ...

  • Answered by AI
  • Q5. Questions on get and post method
  • Q6. Modified question on Trapping the rain water
Round 2 - One-on-one 

(4 Questions)

  • Q1. Basic HR type questions again, projects, tech
  • Q2. Question on java 8 features and above, sql and no sql experience
  • Q3. Reverse a string
  • Ans. 

    Reverse a string by iterating through the characters and swapping them

    • Create an empty string to store the reversed string

    • Iterate through the characters of the input string from end to start

    • Append each character to the empty string to reverse the string

  • Answered by AI
  • Q4. Stream API, advantages and uses
  • Ans. 

    Stream API is a powerful tool in Java for processing collections of objects.

    • Advantages include concise code, improved performance, and ease of parallel processing.

    • Uses include filtering, mapping, sorting, and reducing data in collections.

    • Example: stream.filter(x -> x > 5).map(x -> x * 2).collect(Collectors.toList());

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - The interviews were very easy, just keep the basics strong, The first interviewer was not that good explaining the questions, just complicated simple questions, but he asked basic questions

Skills evaluated in this interview

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

I applied via Campus Placement

Round 1 - Coding Test 

Dynamic Programming, Graph

Round 2 - Technical 

(1 Question)

  • Q1. Projects, SQL, DBMS, OOPS, Javascript
Round 3 - HR 

(1 Question)

  • Q1. Speak confidently
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

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

Round 1 - Assignment 

Questions asked on the assignment to get a know how of your understanding on the project given

Round 2 - One-on-one 

(1 Question)

  • Q1. What is your design process?
  • Ans. 

    My design process involves research, ideation, prototyping, testing, and iteration to create user-centered solutions.

    • Research: Gather information about user needs, market trends, and competition.

    • Ideation: Brainstorm and generate ideas for potential solutions.

    • Prototyping: Create low-fidelity and high-fidelity prototypes to visualize concepts.

    • Testing: Conduct user testing to gather feedback and iterate on designs.

    • Iterati...

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed in Jul 2024. There were 7 interview rounds.

Round 1 - Case Study 

RCA, Prioritisation interview

Round 2 - Case Study 

Metrics, Problem solving cases

Round 3 - Assignment 

Design Case study submission

Round 4 - Design Interview 

(1 Question)

  • Q1. Design related questions
Round 5 - One-on-one 

(1 Question)

  • Q1. General discussion
Round 6 - Case Study 

Problem solving, Cultural Fit

Round 7 - HR 

(1 Question)

  • Q1. Behavioral Interview

Intern Interview Questions & Answers

user image Anonymous

posted on 18 Nov 2024

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

Algorithms , DSA , Python

Round 2 - Case Study 

Guesstimates , Excel

Software Engineer Interview Questions & Answers

user image KESHAV MAHINDRAKAR

posted on 19 Dec 2024

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

(1 Question)

  • Q1. Technical related to DSA, Problem Solving and Coding
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via LinkedIn

Round 1 - Technical 

(3 Questions)

  • Q1. Discussion on your resume and some design pattern basics questions
  • Q2. Which design pattern used in previous company
  • Q3. SOLID principles
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via Approached by Company and was interviewed in May 2024. There were 2 interview rounds.

Round 1 - HR 

(1 Question)

  • Q1. Salary expectation
Round 2 - One-on-one 

(1 Question)

  • Q1. 25% drop across an e-commerce funnel. Which step to be prioritised first?
  • Ans. 

    The step to be prioritised first is the step with the highest drop-off rate.

    • Analyze data to identify the step with the highest drop-off rate

    • Focus on optimizing that step to reduce drop-off

    • Implement A/B testing to determine the most effective changes

    • Monitor the impact of changes on drop-off rates

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Terrible company, no professionalism at all. They ghost candidates and hiring manager is very rude and incompetent. HR isn’t polite or sophisticated. Rude people, in my opinion.

Data Analyst Interview Questions & Answers

user image Anonymous

posted on 24 Jun 2024

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Assignnent was given to solve after which interview was scheduled.

Round 2 - One-on-one 

(2 Questions)

  • Q1. How good are you in excel?
  • Q2. Then solve excel questions.

Top trending discussions

View All
Interview Tips & Stories
6d (edited)
a team lead
Why are women still asked such personal questions in interview?
I recently went for an interview… and honestly, m still trying to process what just happened. Instead of being asked about my skills, experience, or how I could add value to the company… the questions took a totally unexpected turn. The interviewer started asking things like When are you getting married? Are you engaged? And m sure, if I had said I was married, the next question would’ve been How long have you been married? What does my personal life have to do with the job m applying for? This is where I felt the gender discrimination hit hard. These types of questions are so casually thrown at women during interviews but are they ever asked to men? No one asks male candidates if they’re planning a wedding or how old their kids are. So why is it okay to ask women? Can we please stop normalising this kind of behaviour in interviews? Our careers shouldn’t be judged by our relationship status. Period.
Got a question about Jar?
Ask anonymously on communities.

Jar Interview FAQs

How many rounds are there in Jar interview?
Jar interview process usually has 2-3 rounds. The most common rounds in the Jar interview process are One-on-one Round, Technical and HR.
How to prepare for Jar 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 Jar. The most common topics and skills that interviewers at Jar expect are Medical Insurance, Finance, Circuit Designing, Relationship Management and Investment Banking.
What are the top questions asked in Jar interview?

Some of the top questions asked at the Jar interview -

  1. what happens a primitive data type is passed in a method call and non-primitive...read more
  2. 25% drop across an e-commerce funnel. Which step to be prioritised fir...read more
  3. what are the common annotations used in spring b...read more
How long is the Jar interview process?

The duration of Jar interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Overall Interview Experience Rating

3.8/5

based on 36 interview experiences

Difficulty level

Easy 41%
Moderate 59%

Duration

Less than 2 weeks 68%
2-4 weeks 27%
4-6 weeks 5%
View more

Interview Questions from Similar Companies

CRED Interview Questions
3.5
 • 39 Interviews
Kissht Finance Interview Questions
3.9
 • 36 Interviews
Money View Interview Questions
4.1
 • 32 Interviews
Jupiter Money Interview Questions
3.0
 • 31 Interviews
Uni Cards Interview Questions
3.9
 • 25 Interviews
indiagold Interview Questions
4.2
 • 23 Interviews
OneCard Interview Questions
3.4
 • 23 Interviews
View all

Jar Reviews and Ratings

based on 102 reviews

3.8/5

Rating in categories

4.0

Skill development

3.8

Work-life balance

4.0

Salary

3.7

Job security

3.8

Company culture

3.7

Promotions

3.8

Work satisfaction

Explore 102 Reviews and Ratings
Software Engineer
23 salaries
unlock blur

₹10 L/yr - ₹26 L/yr

Product Manager
20 salaries
unlock blur

₹18 L/yr - ₹31.5 L/yr

Data Analyst
18 salaries
unlock blur

₹6 L/yr - ₹15 L/yr

Production Analyst
8 salaries
unlock blur

₹7 L/yr - ₹17 L/yr

Business Analyst
7 salaries
unlock blur

₹6 L/yr - ₹15 L/yr

Explore more salaries
Compare Jar with

Kissht Finance

3.9
Compare

Indifi Technologies

3.7
Compare

Money View

4.1
Compare

Ocrolus East

3.6
Compare
write
Share an Interview