Upload Button Icon Add office photos
Engaged Employer

i

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

Jiraaf Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Jiraaf Interview Questions and Answers for Experienced

Updated 28 Jul 2024

Jiraaf Interview Experiences for Experienced

Popular Designations

1 interview found

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

I applied via Recruitment Consulltant and was interviewed before Dec 2022. There were 2 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. Personal Interview
Round 2 - Technical 

(1 Question)

  • Q1. Communication skills, Market Research

Senior Relationship Manager Interview Questions asked at other Companies

Q1. Difference between Participating product &non participating product?
View answer (3)

Interview questions from similar companies

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

They ask about general mathematics and logical reasoning question

Interview Preparation Tips

Interview preparation tips for other job seekers - Amazing company. Best from the rest
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Apna Jobs and was interviewed in Jul 2023. 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 

(5 Questions)

  • Q1. Past experience
  • Q2. My working skills
  • Q3. Queries resolving
  • Q4. Asked to write an essay
  • Q5. Wrote about my struggle

Interview Preparation Tips

Topics to prepare for BookMyShow Consultant interview:
  • Invoice Processing
  • Outbound Calling
  • email process
  • chat support
  • Handling Client Calls
Interview preparation tips for other job seekers - You can go with confidence.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed in Dec 2023. There was 1 interview round.

Round 1 - Technical 

(4 Questions)

  • Q1. Basic SQL question.
  • Q2. Order of execution
  • Ans. 

    The order of execution refers to the sequence in which instructions or operations are executed in a program.

    • The order of execution is determined by the programming language and the specific code being executed.

    • Generally, code is executed line by line from top to bottom.

    • However, there are exceptions such as loops, conditionals, and function calls that can alter the order of execution.

    • In some programming languages, there...

  • Answered by AI
  • Q3. Window functions
  • Q4. Aggregate functions

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Level order tree traversal
  • Q2. Find the pair element from the array
  • Ans. 

    Find the pair element from the array

    • Iterate through the array and use a hashmap to store elements and their counts

    • Check if the current element's complement exists in the hashmap

    • Return the pair if found, otherwise return null

  • Answered by AI

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 and was interviewed before Jan 2024. There was 1 interview round.

Round 1 - Aptitude Test 

We had an aptitude test which involved 60 questions in 15 minutes. Of course, no one can solve this fast, but it was about the hit rate / accuracy and volume. Subsequent followed with two guesstimate based rounds and final as HR round which involved asking about college projects, extra curricular experiences and so on.

I applied via Campus Placement and was interviewed in Jul 2020. There were 4 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Mostly questions were asked from sql,joins were more focussed
  • Q2. Puzzle mostly from gfg were asked involving analytics skills
  • Q3. Guesstimates could also be asked.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident, Sql is must,Be logical and work on analytical thinking.

I applied via Recruitment Consultant and was interviewed in May 2021. There were 4 interview rounds.

Interview Questionnaire 

10 Questions

  • Q1. First-round was an online test on hacker rank. There were 4 questions related to the array, string, and tree.
  • Q2. Create an immutable class.
  • Ans. 

    An immutable class is a class whose instances cannot be modified after creation.

    • Make all fields private and final

    • Don't provide any setter methods

    • Ensure that any mutable objects passed to the constructor are defensively copied

    • Make the class final so that it cannot be subclassed

  • Answered by AI
  • Q3. Create a Singelton pattern.
  • Ans. 

    Singleton pattern ensures only one instance of a class is created and provides a global point of access to it.

    • Create a private constructor to prevent direct instantiation of the class.

    • Create a private static instance of the class.

    • Create a public static method to access the instance, and create the instance if it doesn't exist.

    • Ensure thread safety by using synchronized keyword or double-checked locking.

  • Answered by AI
  • Q4. Difference between Vector and ArrayList.
  • Ans. 

    Vector is synchronized and ArrayList is not. Vector is thread-safe and ArrayList is not.

    • Vector is a legacy class and ArrayList is a part of the Java Collection Framework.

    • Vector is synchronized which means only one thread can access it at a time, while ArrayList is not.

    • Vector is thread-safe which means it can be used in a multi-threaded environment, while ArrayList is not.

    • Vector is slower than ArrayList because of synch...

  • Answered by AI
  • Q5. Create Linked List without using the internal library and provide the functionality of add delete find.
  • Ans. 

    Create Linked List without using internal library and provide add, delete, find functionality.

    • Create a Node class with data and next pointer

    • Create a LinkedList class with head pointer and methods to add, delete, and find nodes

    • Use a loop to traverse the list and perform operations

    • Handle edge cases such as adding to an empty list or deleting the head node

  • Answered by AI
  • Q6. One question was related to binary search.
  • Q7. Few more questions related to java.
  • Q8. The architecture of the current system.
  • Ans. 

    The current system follows a microservices architecture.

    • The system is divided into multiple independent services.

    • Each service has its own database and communicates with other services through APIs.

    • The architecture allows for scalability and flexibility.

    • Examples of microservices used in the system include user authentication, payment processing, and inventory management.

  • Answered by AI
  • Q9. Find the total no of the island in a 2d matrix. Working code was required.
  • Ans. 

    Find the total no of islands in a 2D matrix.

    • Use DFS or BFS to traverse the matrix.

    • Mark visited cells to avoid repetition.

    • Count the number of islands found.

  • Answered by AI
  • Q10. Find loop in a linked list.
  • Ans. 

    Loop detection in a linked list.

    • Use two pointers, one moving at twice the speed of the other.

    • If there is a loop, the faster pointer will eventually catch up to the slower one.

    • If there is no loop, the faster pointer will reach the end of the list.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Before the interview brush up on the Linked list, Tree, and array. This is a common interview problem asked in Snapdeal.

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via LinkedIn and was interviewed before Apr 2022. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Double-check your resume for any spelling mistakes. The recruiter may consider spelling mistakes as careless behavior or poor communication skills.
View all tips
Round 2 - HR 

(1 Question)

  • Q1. Where do you see yourself in 5 years
Round 3 - Technical 

(1 Question)

  • Q1. How you will improve health of a marketplace
  • Ans. 

    By analyzing data, identifying pain points, and implementing solutions to improve user experience and trust.

    • Analyze user behavior and feedback to identify areas of improvement

    • Implement measures to increase transparency and trust, such as user reviews and seller verification

    • Provide resources and support for dispute resolution

    • Encourage diversity and inclusivity in the marketplace to attract a wider range of buyers and se...

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

(1 Question)

  • Q1. How you will design new customer support system
  • Ans. 

    I will design a customer support system that is user-friendly, efficient, and personalized.

    • Conduct research to understand customer needs and preferences

    • Identify common customer issues and develop a knowledge base for quick resolution

    • Implement a ticketing system to track and prioritize customer inquiries

    • Integrate chatbots and AI to provide 24/7 support

    • Train support staff to provide personalized and empathetic service

    • Col...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - NA

Skills evaluated in this interview

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

(1 Question)

  • Q1. Where do you see yourself in 5 years
  • Ans. 

    In 5 years, I see myself as a senior software engineer leading a team of developers on innovative projects.

    • Leading a team of developers on innovative projects

    • Continuing to enhance my technical skills and knowledge

    • Contributing to the growth and success of the company

    • Possibly pursuing further education or certifications in a specialized area

  • Answered by AI

Jiraaf Interview FAQs

How many rounds are there in Jiraaf interview for experienced candidates?
Jiraaf interview process for experienced candidates usually has 2 rounds. The most common rounds in the Jiraaf interview process for experienced candidates are One-on-one Round and Technical.
How to prepare for Jiraaf 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 Jiraaf. The most common topics and skills that interviewers at Jiraaf expect are Sales, Brand Management, Digital Marketing, Content Writing and Marketing.
What are the top questions asked in Jiraaf interview for experienced candidates?

Some of the top questions asked at the Jiraaf interview for experienced candidates -

  1. LLD/HLD round; bookymyshow system des...read more
  2. Communication skills, Market Resea...read more

Tell us how to improve this page.

Jiraaf Interview Process for Experienced

based on 1 interview

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

Amazon Interview Questions
4.1
 • 5k Interviews
Flipkart Interview Questions
4.0
 • 1.3k Interviews
Paytm Interview Questions
3.3
 • 752 Interviews
Swiggy Interview Questions
3.8
 • 428 Interviews
BigBasket Interview Questions
3.9
 • 359 Interviews
Zomato Interview Questions
3.8
 • 312 Interviews
Myntra Interview Questions
4.0
 • 214 Interviews
MakeMyTrip Interview Questions
3.6
 • 122 Interviews
Snapdeal Interview Questions
3.8
 • 75 Interviews
BookMyShow Interview Questions
4.0
 • 23 Interviews
View all

Jiraaf Reviews and Ratings

based on 6 reviews

4.5/5

Rating in categories

4.0

Skill development

3.9

Work-life balance

4.0

Salary

4.4

Job security

4.0

Company culture

4.2

Promotions

4.0

Work satisfaction

Explore 6 Reviews and Ratings
Investment Manager
8 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Relationship Manager
5 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Product Manager
5 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Deputy General Manager
4 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Sr BDM
4 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Jiraaf with

Flipkart

4.0
Compare

Amazon

4.1
Compare

Paytm

3.3
Compare

Snapdeal

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