Add office photos
Tata CLiQ logo
Engaged Employer

Tata CLiQ

Verified
3.4
based on 184 Reviews
Video summary
Filter interviews by

10+ Tata CLiQ Interview Questions and Answers

Updated 30 Nov 2024

Q1. Min Jumps Problem Statement

In Ninja town, represented as an N * M grid, people travel by jumping over buildings in the grid's cells. Santa is starting at cell (0, 0) and must deliver gifts to cell (N-1, M-1) o...read more

Ans.

Santa needs to find the quickest path to deliver gifts in Ninja town by jumping over buildings with least travel time.

  • Santa starts at (0, 0) and needs to reach (N-1, M-1) on Christmas Eve.

  • Santa can jump to (x+1, y+1), (x+1, y), or (x, y+1) from any cell (x, y).

  • Travel time between two buildings equals the absolute difference in their heights.

  • Find the quickest path with least travel time.

  • Example: For grid [[1, 3, 5], [2, 8, 0], [4, 7, 6]], the output is 7.

Add your answer
right arrow

Q2. Reach the Destination Problem Statement

You are given a source point (sx, sy) and a destination point (dx, dy). Determine if it is possible to reach the destination point using only the following valid moves:

    ...read more
Ans.

The problem involves determining if it is possible to reach a destination point from a source point using specified moves.

  • Iterate through each test case and check if destination is reachable from source using specified moves

  • Implement a recursive function to simulate the moves and check if destination is reached

  • Consider constraints to optimize the solution

  • Example: For input (1, 1, 3, 5), the output should be true as destination is reachable

Add your answer
right arrow

Q3. Ways To Make Coin Change

Given an infinite supply of coins of varying denominations, determine the total number of ways to make change for a specified value using these coins. If it's not possible to make the c...read more

Ans.

The task is to find the total number of ways to make change for a specified value using given denominations.

  • Use dynamic programming to solve this problem efficiently.

  • Create a 1D array to store the number of ways to make change for each value from 0 to the target value.

  • Iterate through the denominations and update the array based on the current denomination.

  • The final answer will be the value at the target index of the array.

Add your answer
right arrow

Q4. Pythagorean Triplets Detection

Determine if an array contains a Pythagorean triplet by checking whether there are three integers x, y, and z such that x2 + y2 = z2 within the array.

Input:

The first line contai...read more
Ans.

Detect if an array contains a Pythagorean triplet by checking if there are three integers x, y, and z such that x^2 + y^2 = z^2.

  • Iterate through all possible triplets of numbers in the array and check if they form a Pythagorean triplet.

  • Use a nested loop to generate all possible combinations of three numbers from the array.

  • Check if the sum of squares of two numbers is equal to the square of the third number for each triplet.

  • Return 'yes' if a Pythagorean triplet is found, otherw...read more

Add your answer
right arrow
Discover Tata CLiQ interview dos and don'ts from real experiences

Q5. Cycle Detection in a Singly Linked List

Determine if a given singly linked list of integers forms a cycle or not.

A cycle in a linked list occurs when a node's next points back to a previous node in the list. T...read more

Ans.

Detect if a singly linked list forms a cycle by checking if a node's next pointer points back to a previous node.

  • Use Floyd's Tortoise and Hare algorithm to detect a cycle in the linked list.

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

  • If there is a cycle, the two pointers will eventually meet.

  • If one of the pointers reaches the end of the list (null), there is no cycle.

Add your answer
right arrow

Q6. Explain a situation where you had to solve for a major problem. (ABC framework)

Ans.

Resolved a major equipment malfunction by quickly identifying the issue and implementing a temporary solution.

  • Identified the root cause of the problem by conducting a thorough inspection of the equipment.

  • Devised a temporary workaround to keep production running smoothly while waiting for replacement parts.

  • Collaborated with maintenance team to expedite the repair process and prevent further downtime.

Add your answer
right arrow
Are these interview questions helpful?

Q7. How can you be patient while dwaling with customers

Ans.

I remain calm and listen attentively to their concerns, taking breaks when necessary.

  • I take deep breaths and remind myself to stay calm

  • I listen attentively to their concerns without interrupting

  • I empathize with their situation and apologize for any inconvenience

  • I take breaks when necessary to avoid burnout

  • I focus on finding a solution to their problem

  • I maintain a positive attitude and avoid taking their frustration personally

View 1 answer
right arrow

Q8. What would you improve to improve add to cart for products on Tata cliq

Ans.

Implement one-click add to cart feature for faster checkout process.

  • Integrate a one-click add to cart button next to each product for quick purchase.

  • Allow users to save their payment and shipping information for faster checkout.

  • Implement a feature to show related products or accessories to encourage additional purchases.

  • Optimize the add to cart button placement and design for better visibility and usability.

Add your answer
right arrow
Share interview questions and help millions of jobseekers 🌟
man with laptop

Q9. How will you streamline railway ticketing operations

Ans.

To streamline railway ticketing operations, I would implement online ticketing systems, automate processes, improve customer service, and optimize resource allocation.

  • Implement online ticketing systems to reduce manual ticketing processes and long queues.

  • Automate ticket booking, cancellation, and refund processes to save time and improve efficiency.

  • Improve customer service by providing self-service kiosks, mobile ticketing options, and real-time updates on train schedules and...read more

Add your answer
right arrow

Q10. How covid has influence the middle class family?

Ans.

Covid has significantly impacted the middle class family.

  • Many middle class families have faced financial difficulties due to job losses or reduced income.

  • Remote work and online schooling have become the new norm, leading to additional expenses for technology and home office setup.

  • The pandemic has also caused mental health issues and increased stress levels for many families.

  • Travel plans and leisure activities have been disrupted, leading to a change in lifestyle.

  • Healthcare ex...read more

Add your answer
right arrow

Q11. How would increase revenue given certain commitmenets with the category team or brand

Ans.

To increase revenue, I would collaborate closely with the category team and brand to implement targeted marketing strategies.

  • Analyze market trends and consumer behavior to identify opportunities for growth

  • Develop and execute data-driven marketing campaigns to drive customer acquisition and retention

  • Optimize advertising channels and budgets based on performance metrics

  • Leverage customer insights and feedback to improve product positioning and messaging

  • Collaborate with the categ...read more

Add your answer
right arrow

Q12. There is a spike in conversion rate falling drastically over the weekend. Perform an RCA

Ans.

Performing RCA on a spike in conversion rate falling drastically over the weekend

  • Check if there were any technical issues on the website during the weekend that could have affected the conversion rate

  • Analyze if there were any changes in marketing campaigns or promotions that could have impacted user behavior

  • Look into any external factors such as holidays or events that might have influenced customer activity

  • Review the performance of competitors to see if there were any extern...read more

Add your answer
right arrow

Q13. what is STLC and defect life cycle

Ans.

STLC stands for Software Testing Life Cycle, which is a sequence of activities conducted to perform software testing efficiently. Defect life cycle is the process of identifying, reporting, analyzing, and resolving defects in a software application.

  • STLC involves phases like requirement analysis, test planning, test design, test execution, and test closure.

  • Defect life cycle includes stages like defect identification, defect logging, defect triage, defect resolution, and defect...read more

Add your answer
right arrow

Q14. Difference between BPO and call Center ?

Ans.

BPO involves outsourcing of various business processes while call center is a subset of BPO that deals with customer support through phone calls.

  • BPO includes services like accounting, HR, and IT support while call center focuses solely on customer service through phone calls.

  • BPO involves outsourcing to third-party vendors while call centers can be in-house or outsourced.

  • BPO requires a broader skill set while call center agents need to have excellent communication skills.

  • Examp...read more

Add your answer
right arrow

Q15. SAP mm workings and projects orientation

Ans.

SAP MM is a module in SAP ERP that deals with procurement and inventory management.

  • SAP MM stands for Material Management

  • It includes functionalities such as purchasing, inventory management, and invoice verification

  • Projects oriented towards SAP MM can involve implementing the module in a company's ERP system, optimizing procurement processes, or improving inventory management

  • Examples of SAP MM projects include implementing a vendor evaluation system, setting up automatic purch...read more

Add your answer
right arrow

Q16. write test scenario for login with otp

Ans.

Test scenario for login with OTP

  • Verify OTP is sent to the registered mobile number/email

  • Enter the correct OTP and verify successful login

  • Enter incorrect OTP and verify error message is displayed

  • Test OTP expiry time and verify appropriate message is shown

Add your answer
right arrow

Q17. How to grow the category

Ans.

To grow the category, we need to focus on customer needs, expand product offerings, and improve marketing strategies.

  • Conduct market research to identify customer needs and preferences

  • Introduce new products or variations to existing products

  • Collaborate with suppliers to improve product quality and pricing

  • Develop targeted marketing campaigns to increase brand awareness and attract new customers

  • Analyze sales data to identify trends and adjust strategies accordingly

Add your answer
right arrow

Q18. Describe logistics in 3 words

Ans.

Efficient movement of goods

  • Supply chain management

  • Transportation and distribution

  • Inventory control

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

Interview Process at Tata CLiQ

based on 13 interviews
Interview experience
4.5
Good
View more
interview tips and stories logo
Interview Tips & Stories
Ace your next interview with expert advice and inspiring stories

Top Interview Questions from Similar Companies

CGI Group Logo
4.0
 • 362 Interview Questions
GlobalLogic Logo
3.6
 • 339 Interview Questions
Tata Projects Logo
4.2
 • 297 Interview Questions
Lenskart Logo
3.2
 • 165 Interview Questions
Tata Group Logo
4.2
 • 146 Interview Questions
Adani Power Logo
3.9
 • 139 Interview Questions
View all
Recently Viewed
INTERVIEWS
Swiss Re
No Interviews
INTERVIEWS
Swiss Re
30 top interview questions
REVIEWS
Tata CLiQ
No Reviews
SALARIES
Swiss Re
INTERVIEWS
Tata CLiQ
No Interviews
LIST OF COMPANIES
Tata CLiQ
Locations
REVIEWS
Swiss Re
No Reviews
REVIEWS
Swiss Re
No Reviews
REVIEWS
Tata CLiQ
No Reviews
REVIEWS
Naukri
No Reviews
Top Tata CLiQ Interview Questions And Answers
Share an Interview
Stay ahead in your career. Get AmbitionBox app
play-icon
play-icon
qr-code
Helping over 1 Crore job seekers every month in choosing their right fit company
75 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