Add office photos
Employer?
Claim Account for FREE

Hudson's Bay Company

4.0
based on 233 Reviews
Video summary
Filter interviews by

10+ Info Edge Interview Questions and Answers

Updated 22 Jun 2024

Q1. What are the basic requirement of a Item set up process

Ans.

The basic requirements of an item set up process involve gathering accurate information, ensuring proper categorization, and establishing effective communication channels.

  • Accurate information: Collecting all necessary details about the item, such as its name, description, specifications, and pricing.

  • Proper categorization: Assigning the item to the appropriate category or department to ensure easy navigation and organization.

  • Effective communication channels: Establishing clear...read more

Add your answer

Q2. How do you manage vendor set up in the system

Ans.

Managing vendor set up in the system involves creating vendor profiles, verifying information, and maintaining accurate records.

  • Create vendor profiles with necessary information such as contact details, payment terms, and product/service offerings.

  • Verify vendor information by conducting background checks, reviewing references, and assessing their financial stability.

  • Ensure accurate records by regularly updating vendor profiles, tracking performance metrics, and resolving any ...read more

Add your answer

Q3. 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 type while ArrayLists can store elements of different data t...read more

Add your answer

Q4. How do you set up EDI in the system

Ans.

Setting up EDI in the system involves configuring communication protocols, mapping data formats, and establishing connections with trading partners.

  • Research and select an EDI software or service provider that meets the organization's requirements.

  • Configure communication protocols such as FTP, AS2, or VAN for secure data transmission.

  • Map data formats between the organization's internal systems and the EDI standard used by trading partners.

  • Establish connections with trading par...read more

Add your answer
Discover Info Edge interview dos and don'ts from real experiences

Q5. How union and union all different?

Ans.

UNION combines the results of two or more SELECT statements, while UNION ALL returns all rows including duplicates.

  • UNION removes duplicate rows, UNION ALL does not

  • UNION sorts the result set, UNION ALL does not

  • UNION is slower than UNION ALL as it performs additional operations to remove duplicates

  • Example: SELECT column1 FROM table1 UNION SELECT column1 FROM table2;

  • Example: SELECT column1 FROM table1 UNION ALL SELECT column1 FROM table2;

Add your answer

Q6. How join works and different types

Ans.

Join is a SQL operation used to combine rows from two or more tables based on a related column between them.

  • Types of joins include INNER JOIN, LEFT JOIN, RIGHT JOIN, and FULL JOIN.

  • INNER JOIN returns rows when there is at least one match in both tables.

  • LEFT JOIN returns all rows from the left table and the matched rows from the right table.

  • RIGHT JOIN returns all rows from the right table and the matched rows from the left table.

  • FULL JOIN returns rows when there is a match in o...read more

Add your answer
Are these interview questions helpful?

Q7. What is team management and people management is?

Ans.

Team management involves leading and coordinating a group of individuals towards a common goal, while people management involves managing the individual employees within a team.

  • Team management involves setting goals and objectives for the team, delegating tasks, providing feedback and support, and resolving conflicts.

  • People management involves recruiting, training, and developing employees, managing their performance, and ensuring their well-being and job satisfaction.

  • Effecti...read more

Add your answer

Q8. Which application do you use

Ans.

I use various applications depending on the task at hand.

  • Microsoft Office Suite for document creation and management

  • Slack for team communication

  • Trello for project management

  • Salesforce for customer relationship management

  • Google Analytics for data analysis

Add your answer
Share interview questions and help millions of jobseekers 🌟

Q9. Screen share and write a code to add two numbers without using +

Ans.

Adding two numbers without using + operator

  • Use bitwise operators like XOR and AND to perform addition

  • XOR the two numbers to get the sum without carrying

  • AND the two numbers and left shift the result to get the carry

  • Repeat the process until there is no carry

Add your answer

Q10. Dashboard from visualization tools

Ans.

Dashboards from visualization tools are used to display key metrics and insights in a visually appealing and easy-to-understand format.

  • Dashboards help in monitoring performance and identifying trends.

  • They can be customized to show specific KPIs or metrics.

  • Popular visualization tools include Tableau, Power BI, and Google Data Studio.

Add your answer

Q11. Excel calculation for occupancy, conformance and sl target

Ans.

Occupancy, conformance, and SL target calculations in Excel

  • Occupancy calculation: divide total handle time by total available time

  • Conformance calculation: divide total scheduled time by total worked time

  • SL target calculation: determine the percentage of interactions meeting the service level target

  • Use formulas like =SUM(range)/COUNT(range) for calculations

  • Format cells as percentages for SL target calculation

Add your answer

Q12. Joins ans sub queries in sql

Ans.

Joins and subqueries are used in SQL to combine data from multiple tables and perform complex queries.

  • Joins are used to combine rows from two or more tables based on a related column between them.

  • Subqueries are queries nested within another query and can be used to retrieve data based on the result of the outer query.

  • Common types of joins include INNER JOIN, LEFT JOIN, RIGHT JOIN, and FULL JOIN.

  • Example: SELECT * FROM table1 INNER JOIN table2 ON table1.id = table2.id;

  • Example: ...read more

Add your answer

Q13. Views and store procedure

Ans.

Views and store procedures are database objects used in SQL to simplify complex queries and operations.

  • Views are virtual tables created by a query, while stored procedures are precompiled SQL statements stored in the database.

  • Views can be used to simplify complex queries by storing them as a virtual table, while stored procedures can be used to perform specific tasks or operations.

  • Views are read-only, while stored procedures can be used to perform both read and write operatio...read more

Add your answer

Q14. Decision making capabilities on real time basis

Ans.

Real-time analysts must have strong decision-making capabilities to quickly assess situations and make informed choices.

  • Ability to analyze data quickly and accurately

  • Prioritizing tasks based on urgency and impact

  • Adapting to changing situations and making decisions under pressure

  • Utilizing technology and tools effectively to make informed decisions

  • Communicating decisions clearly and effectively to stakeholders

Add your answer

Q15. 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.

Add your answer

Q16. Previous experinece

Ans.

I have over 5 years of experience as a Digital Analyst, specializing in data analysis, reporting, and optimization.

  • Managed and analyzed large datasets to identify trends and insights

  • Created reports and dashboards to track key performance indicators

  • Implemented A/B testing and optimization strategies to improve digital campaigns

  • Collaborated with cross-functional teams to drive data-driven decision making

  • Utilized tools such as Google Analytics, Adobe Analytics, and Tableau

Add your answer

Q17. Explain about spring boot

Ans.

Spring Boot is a framework that simplifies the development of Java applications by providing pre-configured settings and tools.

  • Spring Boot eliminates the need for manual configuration by providing defaults for most settings.

  • It allows for standalone Spring applications that can be started using a simple 'java -jar' command.

  • Spring Boot includes embedded servers like Tomcat, Jetty, or Undertow for deploying applications.

  • It promotes convention over configuration, reducing the amo...read more

Add your answer
Contribute & help others!
Write a review
Share interview
Contribute salary
Add office photos

Interview Process at Info Edge

based on 20 interviews
Interview experience
4.1
Good
View more
Interview Tips & Stories
Ace your next interview with expert advice and inspiring stories

Top Interview Questions from Similar Companies

3.4
 • 174 Interview Questions
3.9
 • 168 Interview Questions
4.0
 • 158 Interview Questions
4.2
 • 146 Interview Questions
3.8
 • 144 Interview Questions
4.1
 • 143 Interview Questions
View all
Top Hudson's Bay Company Interview Questions And Answers
Share an Interview
Stay ahead in your career. Get AmbitionBox app
qr-code
Helping over 1 Crore job seekers every month in choosing their right fit company
70 Lakh+

Reviews

5 Lakh+

Interviews

4 Crore+

Salaries

1 Cr+

Users/Month

Contribute to help millions

Made with ❤️ in India. Trademarks belong to their respective owners. All rights reserved © 2024 Info Edge (India) Ltd.

Follow us
  • Youtube
  • Instagram
  • LinkedIn
  • Facebook
  • Twitter