Upload Button Icon Add office photos

Hudson's Bay Company

Compare button icon Compare button icon Compare

Filter interviews by

Hudson's Bay Company Engineer (Oms) Interview Questions and Answers

Updated 22 Sep 2022

Hudson's Bay Company Engineer (Oms) Interview Experiences

1 interview found

Engineer (Oms) Interview Questions & Answers

user image Dharmendra Singh Raj

posted on 22 Sep 2022

I was interviewed in Aug 2022.

Round 1 - One-on-one 

(2 Questions)

  • Q1. 1- What is bootstrap, why we use API, why we use bootstrap, Differcence between Array & Arraylist.
  • Ans. 

    Bootstrap is a front-end framework for web development. API is used for communication between software systems. Array and ArrayList are different data structures.

    • Bootstrap is used for creating responsive and mobile-first websites.

    • API allows different software systems to communicate with each other.

    • Arrays are fixed in size while ArrayLists can dynamically grow or shrink.

    • Arrays can only store elements of the same data ty...

  • Answered by AI
  • Q2. Applications of stacks & queues
  • Ans. 

    Stacks & queues are data structures used for managing data in a specific order.

    • Stacks are used for undo-redo operations, backtracking, and expression evaluation.

    • Queues are used for scheduling, buffering, and breadth-first search.

    • Both are used in operating systems, compilers, and network protocols.

    • Stacks and queues can be implemented using arrays or linked lists.

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Hudson's Bay Company Engineer (Oms) interview:
  • DSA
  • HTML BASIC
  • Bootstrap
Interview preparation tips for other job seekers - prepare for basic questions & DSA difference between each others.

Skills evaluated in this interview

Interview questions from similar companies

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

I was interviewed in Jan 2025.

Round 1 - Technical 

(6 Questions)

  • Q1. What is the role of exception handling in programming, and how is the 'finally' block used in this context, as well as the process of throwing exceptions?
  • Ans. 

    Exception handling is crucial in programming to handle errors and ensure proper execution. The 'finally' block is used to clean up resources, and throwing exceptions allows for error propagation.

    • Exception handling is used to manage errors and unexpected situations in a program.

    • The 'finally' block is used to execute code that should always run, regardless of whether an exception is thrown or not.

    • Throwing exceptions allo...

  • Answered by AI
  • Q2. What are the differences between SQL and NoSQL databases, and can you mention some NoSQL databases that you are familiar with?
  • Q3. What are the ACID properties implemented in your project, and can you provide a brief overview of the CAP Theorem?
  • Ans. 

    ACID properties ensure data integrity in transactions. CAP Theorem states that a distributed system can only guarantee two out of three: Consistency, Availability, Partition Tolerance.

    • ACID properties: Atomicity, Consistency, Isolation, Durability

    • Example: In a banking application, a transfer of funds should be atomic, consistent, isolated, and durable

    • CAP Theorem: Consistency, Availability, Partition Tolerance - a distri...

  • Answered by AI
  • Q4. Database disaster recovery?
  • Q5. What is the difference between Comparable and Comparator in Java? And how to Implement in Collections.
  • Ans. 

    Comparable is an interface used for natural ordering, while Comparator is used for custom ordering in Java Collections.

    • Comparable interface is used to define the natural ordering of objects. It is implemented by the class whose objects are to be sorted.

    • Comparator interface is used to define custom ordering of objects. It is implemented by a separate class.

    • To implement Comparable, the class needs to override the compare...

  • Answered by AI
  • Q6. Implementation of Generics in Java
  • Ans. 

    Generics in Java allow for creating classes, interfaces, and methods that operate on types parameterized at compile time.

    • Generics provide type safety by allowing compile-time type checking.

    • They enable code reusability and reduce the need for casting.

    • Example: List<String> list = new ArrayList<>();

  • Answered by AI
Round 2 - Technical 

(10 Questions)

  • Q1. Can you provide the code to reverse a string using recursion?
  • Ans. 

    Code to reverse a string using recursion

    • Create a recursive function that takes a string as input

    • Base case: if the string is empty or has only one character, return the string

    • Recursive case: return the last character of the string concatenated with the result of calling the function on the substring excluding the last character

  • Answered by AI
  • Q2. How does object comparison work with specific fields?
  • Ans. 

    Object comparison with specific fields involves comparing values of selected fields between two objects.

    • Object comparison can be done by comparing the values of specific fields in two objects.

    • Fields can be selected based on unique identifiers or criteria for comparison.

    • Example: Comparing the 'name' field of two person objects to check if they are the same.

  • Answered by AI
  • Q3. How does the distributed transactions being handled in a microservice?
  • Ans. 

    Distributed transactions in microservices involve using compensating transactions and event-driven architecture.

    • Microservices typically use compensating transactions to maintain consistency across multiple services.

    • Event-driven architecture can help in coordinating distributed transactions by using events to trigger actions in different services.

    • Implementing distributed transactions in microservices requires careful de...

  • Answered by AI
  • Q4. Aggregator Pattern in Microservice
  • Ans. 

    Aggregator pattern is used in microservices architecture to combine multiple service responses into a single response.

    • Aggregator pattern helps in reducing the number of client requests by combining multiple service responses.

    • It can be implemented using a separate service or within an existing service.

    • Example: A shopping website aggregating product information from different microservices like inventory, pricing, and re

  • Answered by AI
  • Q5. What is the implementation of the factory design pattern?
  • Ans. 

    Factory design pattern is a creational pattern that provides an interface for creating objects in a superclass, but allows subclasses to alter the type of objects that will be created.

    • Factory method pattern defines an interface for creating objects, but lets subclasses decide which class to instantiate.

    • It promotes loose coupling by eliminating the need to bind application-specific classes into the code.

    • Example: A car m...

  • Answered by AI
  • Q6. What is indexing in a database, and what data structures are commonly used for indexing?
  • Ans. 

    Indexing in a database is a technique to improve the speed of data retrieval by creating a data structure that allows for quick lookup.

    • Indexing involves creating a separate data structure that contains pointers to the actual data in the database.

    • Common data structures used for indexing include B-trees, hash tables, and binary search trees.

    • Indexes can be created on one or multiple columns in a database table to speed up...

  • Answered by AI
  • Q7. What is your approach to designing a system capable of handling thousands of requests?
  • Ans. 

    My approach involves using load balancing, caching, asynchronous processing, and horizontal scaling.

    • Implement load balancing to distribute requests evenly across multiple servers.

    • Utilize caching mechanisms to store frequently accessed data and reduce response times.

    • Use asynchronous processing for long-running tasks to free up resources for handling more requests.

    • Implement horizontal scaling by adding more servers to ha...

  • Answered by AI
  • Q8. What is the CQRS pattern in microservices?
  • Ans. 

    CQRS pattern in microservices separates read and write operations for improved scalability and performance.

    • CQRS stands for Command Query Responsibility Segregation

    • It separates the read and write operations into two different models

    • Write operations update the data store, while read operations query a separate data store

    • CQRS can improve performance and scalability by allowing each model to be optimized for its specific t

  • Answered by AI
  • Q9. What is the role of API Gateway in microservices architecture?
  • Ans. 

    API Gateway acts as a single entry point for all client requests in a microservices architecture.

    • API Gateway handles authentication, authorization, rate limiting, and routing of requests to appropriate microservices.

    • It helps in decoupling client applications from individual microservices, providing a more flexible and scalable architecture.

    • API Gateway can also perform tasks like request/response transformation, logging...

  • Answered by AI
  • Q10. Write SQL query to fetch data from two tables using joins?
  • Ans. 

    SQL query to fetch data from two tables using joins

    • Use the JOIN keyword to combine rows from two tables based on a related column

    • Specify the columns to select from each table in the SELECT statement

    • Use the ON keyword to specify the join condition

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare a strong foundation in System Design, NoSQL, Microservices, and Core Java.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Technical 

(2 Questions)

  • Q1. System Design Questions, Situation based problems of system design
  • Q2. Data Structure Coding question of HashMap
Round 2 - Technical 

(1 Question)

  • Q1. Again System design, Question from your project and architecture of your project
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Which symbol of gd&t you are mostly using in your drawings
  • Ans. 

    I mostly use the position symbol in my drawings for GD&T.

    • Position symbol is used to specify the location of features on a part relative to a datum

    • It is commonly used in engineering drawings to ensure proper alignment and fit of components

    • Example: Position symbol with a tolerance of ±0.1mm

  • Answered by AI
  • Q2. What is basis of making drawings
  • Ans. 

    The basis of making drawings is to visually communicate design ideas and specifications.

    • Drawings serve as a visual representation of a design concept or product

    • They provide detailed information on dimensions, materials, and assembly instructions

    • Drawings help in communicating design intent to manufacturers and other stakeholders

    • They are essential for ensuring accuracy and consistency in the manufacturing process

  • Answered by AI
Round 2 - HR 

(2 Questions)

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

    In 5 years, I see myself as a senior design engineer leading a team of innovative engineers in developing cutting-edge products.

    • Leading a team of engineers

    • Developing cutting-edge products

    • Senior design engineer role

    • Continuous learning and growth

    • Contributing to company's success

  • Answered by AI
  • Q2. How long you stay in organization
  • Ans. 

    I have been with the organization for 5 years, consistently contributing to various design projects.

    • I have been with the organization for 5 years

    • Consistently contributed to various design projects

    • Received positive feedback from supervisors and colleagues

    • Participated in training and development programs to enhance skills

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

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

Round 1 - Coding Test 

3 sum problem was asked to complete

Round 2 - Assignment 

Take home project to design app

Interview experience
3
Average
Difficulty level
Hard
Process Duration
-
Result
-

I was interviewed in Dec 2024.

Round 1 - Coding Test 

The assessment consisted of an online round lasting one hour, during which there were 33 questions, all of which were challenging, including the multiple-choice questions. The questions were divided into six subsections: 1. Data Structures and Algorithms (DSA) - with a problem related to dynamic programming or recursion; 2. Java; 3. Java 8; 4. Spring; 5. Spring Boot; 6. Microservices.

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

(1 Question)

  • Q1. Java program were asked
Round 2 - HR 

(1 Question)

  • Q1. It was more of managerial round to discuss about profile
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

It was basically two leetcode Questions Mainly from array with some algorithm required to apply and other from LinkedList.

Round 2 - Highl Level Design 

(2 Questions)

  • Q1. First the discussion was mainly on Projects you have worked on for first 20 minutes.
  • Q2. Then was given to Design a chat application basically a High Level. Interviewer was friendly and prompt listener.
Round 3 - Behavioral 

(2 Questions)

  • Q1. Very Detailed Project Discussion and Scenario based Questions basically your achievements in detail.
  • Q2. Then some Implementation questions related to designing and Java based and Kafka based.
Round 4 - HR 

(1 Question)

  • Q1. CTC Discussion and Expectations plus Notice period and other documents.

Software Engineer Interview Questions & Answers

Lowe's user image Abhishek Agrawal

posted on 20 Aug 2024

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

I applied via Referral and was interviewed in Jul 2024. There were 4 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. React js questions like Dom manipulation, useCallback and useMemo these kind of questions
  • Q2. Create some dynamic buttons with a json data and whenever you click on that you need to maintain active and inactive states and also you need to show the content of the button based on the json data whenev...
  • Ans. 

    Create dynamic buttons with JSON data, maintain active/inactive states, and show content on click

    • Create buttons dynamically using JSON data

    • Toggle between active and inactive states on click

    • Display button content based on JSON data on click

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. More advanced react based questions like test cases handling and redux state management techniques
  • Q2. Prop drilling concepts
Round 3 - Behavioral 

(1 Question)

  • Q1. More about your projects you have worked on and also front end technical basic questions
Round 4 - HR 

(2 Questions)

  • Q1. Why Lowe's only
  • Ans. 

    Lowe's is a leading home improvement retailer with a strong focus on technology and innovation.

    • Lowe's has a strong reputation for investing in technology and innovation within the home improvement industry.

    • I am impressed by Lowe's commitment to digital transformation and their use of cutting-edge tools and technologies.

    • I believe Lowe's offers a challenging and rewarding environment for software engineers to grow and de...

  • Answered by AI
  • Q2. What are your expectations here nd all
  • Ans. 

    I expect a challenging work environment, opportunities for growth, and a supportive team.

    • Challenging work that allows me to utilize my skills and learn new technologies

    • Opportunities for career advancement and professional development

    • A supportive team that fosters collaboration and growth

    • Clear communication and expectations from management

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Just prepare well and have a good core understanding of reactjs and css and javascript you can crack it.

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Not Selected

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

Round 1 - One-on-one 

(1 Question)

  • Q1. AWS questions, Behavioral questions
Round 2 - Group Discussion 

Create some kind of system design (some kind of app)

Hudson's Bay Company Interview FAQs

How many rounds are there in Hudson's Bay Company Engineer (Oms) interview?
Hudson's Bay Company interview process usually has 1 rounds. The most common rounds in the Hudson's Bay Company interview process are One-on-one Round.
What are the top questions asked in Hudson's Bay Company Engineer (Oms) interview?

Some of the top questions asked at the Hudson's Bay Company Engineer (Oms) interview -

  1. 1- What is bootstrap, why we use API, why we use bootstrap, Differcence between...read more
  2. Applications of stacks & que...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

Tata Group Interview Questions
4.2
 • 358 Interviews
Adani Group Interview Questions
3.9
 • 185 Interviews
Landmark Group Interview Questions
4.0
 • 146 Interviews
Lowe's Interview Questions
4.2
 • 130 Interviews
Target Interview Questions
4.2
 • 117 Interviews
Shoppers Stop Interview Questions
4.1
 • 110 Interviews
Reliance Trends Interview Questions
4.2
 • 102 Interviews
View all
Senior Associate
97 salaries
unlock blur

₹4.8 L/yr - ₹10.1 L/yr

Associate
95 salaries
unlock blur

₹3 L/yr - ₹6.2 L/yr

Senior Analyst
62 salaries
unlock blur

₹6 L/yr - ₹19.8 L/yr

Inventory Analyst
48 salaries
unlock blur

₹3.4 L/yr - ₹7.5 L/yr

Analyst
45 salaries
unlock blur

₹3.3 L/yr - ₹10 L/yr

Explore more salaries
Compare Hudson's Bay Company with

Reliance Industries

4.0
Compare

Aditya Birla Group

4.1
Compare

Tata Group

4.2
Compare

Future Group

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