Upload Button Icon Add office photos

Filter interviews by

Bajaj Markets Software Engineer2 Interview Questions and Answers

Updated 23 Apr 2024

Bajaj Markets Software Engineer2 Interview Experiences

1 interview found

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

I applied via campus placement at Pune University and was interviewed before Apr 2023. There were 4 interview rounds.

Round 1 - Coding Test 

Hackerrank 3 DSA questions.

Round 2 - Technical 

(1 Question)

  • Q1. Core Java, Spring MVC, Hashmap Internal Working, 1 DSA question based on hashmap.
Round 3 - Technical 

(1 Question)

  • Q1. Advanced java, Exception Handling in java, 2 coding question based on array and strings.
Round 4 - HR 

(1 Question)

  • Q1. Salary discussion

Interview Preparation Tips

Topics to prepare for Bajaj Markets Software Engineer2 interview:
  • java
  • spring
  • dsa basic
Interview preparation tips for other job seekers - Prepare for core java, Spring annotations, coding question based on array and string.

Interview questions from similar companies

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

(1 Question)

  • Q1. HLD of Instagram
  • Ans. 

    High-level design of Instagram

    • User authentication and authorization

    • Photo and video uploading and sharing

    • Feed algorithm for displaying posts

    • Direct messaging feature

    • Explore page for discovering new content

  • Answered by AI
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Referral and was interviewed in Oct 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Merge two sorted linked lists
  • Ans. 

    Merge two sorted linked lists into a single sorted linked list

    • Create a new linked list to store the merged result

    • Iterate through both input linked lists and compare nodes to determine the order in which they should be added to the result list

    • Handle cases where one list is longer than the other

  • Answered by AI
  • Q2. Check if paranthesis are balanced or not
  • Ans. 

    To check if parentheses are balanced, use a stack data structure to keep track of opening and closing parentheses.

    • Use a stack to push opening parentheses and pop when encountering a closing parenthesis

    • If stack is empty when encountering a closing parenthesis, return false

    • After iterating through all parentheses, if stack is empty, return true

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

(2 Questions)

  • Q1. Right view of a Binary Search tree
  • Ans. 

    The right view of a Binary Search Tree shows the nodes that are visible when viewing the tree from the right side.

    • The right view of a Binary Search Tree includes the rightmost node at each level.

    • Nodes at each level that are not visible from the right side are not included in the right view.

    • Example: For the Binary Search Tree with values 1, 2, 3, 4, 5, the right view would be 1, 3, 5.

  • Answered by AI
  • Q2. Few javascript questions on how to parse a json object without using inbuilt libraries.

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare dsa easy-medium and your projecs in depth.

Skills evaluated in this interview

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

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

Round 1 - Technical 

(4 Questions)

  • Q1. Smallest difference pair of values between two unsorted arrays
  • Ans. 

    Find the smallest difference pair of values between two unsorted arrays.

    • Sort both arrays and compare elements to find the smallest difference.

    • Use two pointers approach to iterate through both arrays simultaneously.

    • Consider edge cases like empty arrays or arrays with only one element.

  • Answered by AI
  • Q2. 2D matrix iteration based question
  • Q3. What is normalisation in DBMS?
  • Ans. 

    Normalization in DBMS is the process of organizing data in a database to reduce redundancy and improve data integrity.

    • Normalization involves breaking down a table into smaller tables and defining relationships between them.

    • It helps in reducing data redundancy by storing data in a structured and organized manner.

    • There are different normal forms such as 1NF, 2NF, 3NF, BCNF, and 4NF, each with specific rules to follow.

    • For...

  • Answered by AI
  • Q4. What is the difference between SQL and NoSQL?
  • Ans. 

    SQL is a traditional relational database management system, while NoSQL is a non-relational database system.

    • SQL is table-based, with a predefined schema, while NoSQL is document, key-value, wide-column, or graph-based, with dynamic schema.

    • SQL is suitable for complex queries and transactions, while NoSQL is better for hierarchical data storage and real-time applications.

    • SQL is ACID-compliant (Atomicity, Consistency, Iso...

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Design Dream 11 application in high level.
  • Ans. 

    Dream 11 is a fantasy sports platform where users can create their own teams and compete in various sports leagues.

    • User registration and login functionality

    • Ability to create and join contests

    • Player selection and team creation feature

    • Real-time scoring and leaderboard updates

    • Integration with payment gateway for transactions

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

(1 Question)

  • Q1. Explain your recent project in your current company.
  • Ans. 

    Developed a web application for tracking employee attendance and generating reports.

    • Used React for front-end development

    • Implemented RESTful APIs using Node.js and Express for back-end

    • Utilized MongoDB for database storage

    • Integrated authentication and authorization features for secure access

  • Answered by AI
Round 4 - HR 

(2 Questions)

  • Q1. Why do you want to join Yubi and leave Tavant?
  • Ans. 

    I am excited about the innovative projects at Yubi and believe it aligns better with my career goals.

    • Yubi offers more opportunities for growth and learning in cutting-edge technologies.

    • I am drawn to Yubi's company culture and values, which resonate with my own.

    • I see Yubi as a better fit for my long-term career aspirations compared to Tavant.

  • Answered by AI
  • Q2. What process do you follow to switch to a new technology?
  • Ans. 

    I follow a structured approach to evaluate the new technology, learn it through online resources or courses, practice with small projects, and gradually incorporate it into larger projects.

    • Research the new technology to understand its features, benefits, and use cases

    • Take online courses or tutorials to learn the basics of the technology

    • Practice by working on small projects or side projects to gain hands-on experience

    • Gr...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Yubi Software Engineer interview:
  • System Design
  • Data Structures
  • Algorithms
  • DBMS

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
-
Result
No response

I applied via Job Portal

Round 1 - Technical 

(2 Questions)

  • Q1. Explain the react lifecycle functions and how they work
  • Ans. 

    React lifecycle functions are methods that are automatically called at specific points in a component's life cycle.

    • Mounting: constructor, render, componentDidMount

    • Updating: render, componentDidUpdate

    • Unmounting: componentWillUnmount

  • Answered by AI
  • Q2. Css box model, difference between padding and margin
  • Ans. 

    Padding is the space inside the border of an element, while margin is the space outside the border.

    • Padding is used to create space between the content and the border of an element.

    • Margin is used to create space between the border of an element and other elements.

    • Padding affects the size of the content area, while margin affects the positioning of the element.

    • Example: padding: 10px will create 10 pixels of space inside ...

  • Answered by AI
Round 2 - HR 

(2 Questions)

  • Q1. What are your salary expectations in CTC and variables?
  • Q2. Will you relocate to the location required?

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare everything bookish! don't only speak related to your experience

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. How hash map works
  • Q2. Stack question
Round 2 - HR 

(2 Questions)

  • Q1. Expect salary from company
  • Q2. What ur project in college
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. LLD/Machine coding - Design a social media application with users, posts, comments, likes, etc. There is also an admin who needs to approve post creation and can delete any post they want. Create appropria...
Round 2 - Technical 

(1 Question)

  • Q1. High-level design - Design a chat-based application like WhatsApp with only user-to-user chat feature (no group chats). Explain and draw out the E2E design by mentioning all the components and design decis...
Round 3 - One-on-one 

(1 Question)

  • Q1. Hiring Manager - basic questions like why Razorpay, what are your career goals, what does career growth look like for you, etc.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Write code for advance surrying in js

Round 2 - Coding Test 

Implement custom hook for api call

Round 3 - Behavioral 

(2 Questions)

  • Q1. Basic questions arounf my previous work
  • Q2. Technical questions around performance and code optimization
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

75 min test with 18 Java theory questions

Round 2 - Technical 

(5 Questions)

  • Q1. Synchronized keyword usage
  • Ans. 

    The synchronized keyword in Java is used to control access to shared resources in a multithreaded environment.

    • Synchronized keyword can be used to synchronize access to critical sections of code to prevent race conditions.

    • It can be applied to methods or code blocks to ensure only one thread can access them at a time.

    • Example: synchronized void myMethod() { // code }

    • Example: synchronized(this) { // code }

  • Answered by AI
  • Q2. Message Queue types
  • Q3. Thread Contention
  • Q4. Java Profiling Tools
  • Q5. Abstract classes

Skills evaluated in this interview

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

1 hour, the coding test was based on a project given to us

Round 2 - One-on-one 

(2 Questions)

  • Q1. Detailed questionnaire on React
  • Q2. Problem solving based on array manipulations

Bajaj Markets Interview FAQs

How many rounds are there in Bajaj Markets Software Engineer2 interview?
Bajaj Markets interview process usually has 4 rounds. The most common rounds in the Bajaj Markets interview process are Technical, HR and Coding Test.
What are the top questions asked in Bajaj Markets Software Engineer2 interview?

Some of the top questions asked at the Bajaj Markets Software Engineer2 interview -

  1. Core Java, Spring MVC, Hashmap Internal Working, 1 DSA question based on hashma...read more
  2. Advanced java, Exception Handling in java, 2 coding question based on array and...read more

Tell us how to improve this page.

Bajaj Markets Software Engineer2 Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

Reliance Retail Interview Questions
3.9
 • 1.5k Interviews
DMart Interview Questions
3.9
 • 397 Interviews
HighRadius Interview Questions
2.9
 • 181 Interviews
Razorpay Interview Questions
3.6
 • 149 Interviews
V-Mart Interview Questions
4.2
 • 145 Interviews
Visa Interview Questions
3.5
 • 137 Interviews
Angel One Interview Questions
3.9
 • 131 Interviews
Shoppers Stop Interview Questions
4.1
 • 110 Interviews
Revolut Interview Questions
2.6
 • 93 Interviews
View all

Fast track your campus placements

View all
Bajaj Markets Software Engineer2 Salary
based on 13 salaries
₹9.8 L/yr - ₹14.6 L/yr
40% less than the average Software Engineer2 Salary in India
View more details

Bajaj Markets Software Engineer2 Reviews and Ratings

based on 1 review

4.0/5

Rating in categories

4.0

Skill development

4.0

Work-life balance

4.0

Salary

4.0

Job security

3.0

Company culture

2.0

Promotions

4.0

Work satisfaction

Explore 1 Review and Rating
Manager
39 salaries
unlock blur

₹7.2 L/yr - ₹18 L/yr

Deputy Manager
38 salaries
unlock blur

₹5.3 L/yr - ₹10.6 L/yr

Product Manager
37 salaries
unlock blur

₹8 L/yr - ₹20 L/yr

Sales Manager
33 salaries
unlock blur

₹4.2 L/yr - ₹8.8 L/yr

Senior Manager
23 salaries
unlock blur

₹19 L/yr - ₹42 L/yr

Explore more salaries
Compare Bajaj Markets with

Reliance Retail

3.9
Compare

Future Retail

4.3
Compare

Tata Consumer Products

3.7
Compare

Aditya Birla Fashion and Retail

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