Upload Button Icon Add office photos

Filter interviews by

Fashion Tech Interview Questions and Answers

Be the first one to contribute and help others!

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
Hard
Process Duration
-
Result
-

I was interviewed before Feb 2024.

Round 1 - Aptitude Test 

Test that assesses a person's skills and abilities in a particular area. They are used in schools, by employers, and to help people decide on a career.
Types of aptitude tests
Logical reasoning: Measures a person's ability to analyze information and draw conclusions
Situational judgment: Assesses how a person would respond to real-life work scenarios
Abstract reasoning: Measures a person's ability to identify patterns, logical rules, and data trends
Spatial reasoning: Measures a person's ability to understand and manipulate 2D or 3D objects
Diagrammatic reasoning: Measures a person's problem-solving, abstract reasoning, and critical thinking abilities
Inductive reasoning: Measures a person's ability to see the underlying logic in patterns
Critical thinking: Measures a person's ability to solve complex problems and make the right decision
Tips for taking aptitude tests Understand the underlying concepts and formulas, Practice regularly, Use elimination to narrow down multiple-choice options, Work backwards to solve problems, and Practice solving questions within a time limit.

Round 2 - Coding Test 

Coding test is a programming challenge that assesses a candidate's coding skills and problem-solving abilities. It's a common part of the technical recruitment process for programmers and developers.
Purpose To evaluate a candidate's programming skills, To screen potential candidates, To reduce time to hire, and To increase efficiency.
How they're used
To assess a candidate's ability to solve problems
To assess a candidate's understanding of coding
To assess a candidate's ability to debug
To assess a candidate's ability to design systems
To assess a candidate's ability to organize and manage data
How to prepare
Learn basic algorithms and data structures
Understand the Big-O Notation
Practice coding in writing
Practice common data structures and algorithms
Study problem-solving patterns
Practice with mock tests
How to solve coding problems
Understand the problem
Break the problem down into smaller steps
Write the code
Test your code with examples
Optimize if necessary
Handle mistakes gracefully
This video can also help you learn how to pass a coding assessment test:


1m


Online Training for Everyone
YouTube · 26 Sept 2023

Interview Preparation Tips

Interview preparation tips for other job seekers - Share advice for job seekersdonate-icon
Share your tips
Good work
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I was interviewed in Jan 2025.

Round 1 - Aptitude Test 

Conduct a voice test focusing on spontaneous communication within the software, ensuring it is time-oriented.

Round 2 - One-on-one 

(1 Question)

  • Q1. Self Intro and overall experience.

Interview Preparation Tips

Interview preparation tips for other job seekers - The interviewer appeared to be dozing off during the conversation. As it was on saturday. In the month of Jan 2025.
His name is Sourabh Sharma who just joined the organization 7 months ago. Maybe in the third quarter of 2024.
Interview experience
1
Bad
Difficulty level
Hard
Process Duration
More than 8 weeks
Result
Selected Selected
Round 1 - Group Discussion 

Medical sales interested

Round 2 - One-on-one 

(4 Questions)

  • Q1. Long work shift afternoon to night
  • Q2. Work to work hard important
  • Q3. My hard to interested
  • Q4. My work to imparted
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Aptitude Test 

It is oru skills and communication and problem solving time management

Round 2 - Technical 

(4 Questions)

  • Q1. Languageas and knowledge are designned to acess you specific and work wirh skills to the technical aspects of the job
  • Q2. And job role and solve the problem whether the good communication activness and spirit an leadership and time management
  • Q3. And basically i was interested in sports also like football cricket and highlight the achievement and work for this company so i was interested and like sales executive
  • Q4. I was work I company sure I was layout tha product design and some strategies and diffent ideas to use it and good communication and active listening of working and great leadership to empriaze thank you
Round 3 - Group Discussion 

Group dicussion is nothinv but face to face of interview choose one topic and say somethinh about from 5 to 7 minutes of paragarpah and to be staright forward of this group discussion and proper pronuciation and way of speaking and communication language whether right or wrong we must do and speak

Round 4 - HR 

(2 Questions)

  • Q1. It also oru skills and communication to be check and about tha company the will explain about that
  • Q2. At finally good communictaion and posiively and leadership is to work and developed that company in every situation

Interview Preparation Tips

Interview preparation tips for other job seekers - Thank you for most giving wonderful opportunities to gving me and i will interest to work in this company and I'll do my best and best comparison and deceion making and layout of the company thank you so much

CLM manager Interview Questions & Answers

Croma user image Anonymous

posted on 18 Dec 2024

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

I applied via Referral and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - One-on-one 

(3 Questions)

  • Q1. What is your professional experience?
  • Ans. 

    I have over 10 years of experience in contract lifecycle management, including implementing CLM systems and leading cross-functional teams.

    • Implemented CLM system at previous company, resulting in 20% increase in contract efficiency

    • Led a team of contract managers to streamline processes and reduce contract cycle times by 30%

    • Developed and implemented contract templates to ensure compliance and reduce legal risks

  • Answered by AI
  • Q2. What is your experience in marketing, specifically in creating awareness about new services and increasing conversion rates?
  • Ans. 

    I have over 5 years of experience in marketing, with a focus on creating awareness for new services and increasing conversion rates.

    • Developed targeted marketing campaigns to introduce new services to the market

    • Utilized social media platforms and email marketing to reach a wider audience

    • Analyzed data to optimize conversion rates and make data-driven decisions

    • Collaborated with sales teams to align marketing efforts with

  • Answered by AI
  • Q3. What is your knowledge of the electronics industry, specifically in relation to the service and extended warranty business?
  • Ans. 

    I have extensive knowledge of the electronics industry, particularly in the service and extended warranty business.

    • I have worked in the electronics industry for X years, gaining valuable experience in service and warranty management.

    • I am familiar with the various products and technologies in the electronics sector, allowing me to understand the specific needs of customers when it comes to service and warranties.

    • I have ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - I went through three rounds of interviews, all of which went well. The final round was with the marketing head, who asked questions related to marketing. At the end of the interview, he mentioned that HR would reach out to me in 2-3 days. However, it has been more than two weeks, and HR has not answered my calls nor responded to my emails. When I emailed the hiring manager, HR called me in an angry tone to inform me that it would take another week. Now, a week has passed without any response. This is the second time the HR team at Croma has ghosted me.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

In the aptitude test we have mental ability, general knowledge, communication,etc

Round 2 - One-on-one 

(5 Questions)

  • Q1. Self/family introduction
  • Q2. Related to internship/ communication
  • Q3. About Languages
  • Q4. About Locations
  • Q5. About MBA topics
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

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

Round 1 - Coding Test 

2 DSA questions and some MCQ on Java and Spring

Round 2 - Technical 

(2 Questions)

  • Q1. Longest palindromic substring
  • Ans. 

    A palindromic substring is a string that reads the same forwards and backwards.

    • Use dynamic programming to find the longest palindromic substring.

    • Start by considering each character as the center of a potential palindrome.

    • Expand outwards from each center to check for palindromes of odd and even lengths.

  • Answered by AI
  • Q2. Remove duplicates in place from a 1D array
  • Ans. 

    Remove duplicates from a 1D array of strings in place

    • Iterate through the array and use a HashSet to keep track of unique elements

    • Replace duplicates with null or an empty string to remove them in place

  • Answered by AI
Round 3 - Technical 

(3 Questions)

  • Q1. Project discussion
  • Q2. Search min element in a rotated sorted array with duplicate elements
  • Ans. 

    Search for the minimum element in a rotated sorted array with duplicate elements.

    • Use binary search to find the minimum element in the rotated sorted array.

    • Handle the case where duplicate elements are present by adjusting the search conditions.

    • Consider cases where the array is not rotated or contains only one element.

  • Answered by AI
  • Q3. Ways of declaring singleton class
  • Ans. 

    A singleton class is a class that can only have one instance created throughout the application.

    • Declare a private static instance variable of the class

    • Create a private constructor to prevent external instantiation

    • Provide a public static method to access the instance

  • Answered by AI
Round 4 - Technical 

(2 Questions)

  • Q1. Project discussion
  • Q2. Behavioural questions

Skills evaluated in this interview

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

(1 Question)

  • Q1. Store operation process
Round 2 - Technical 

(1 Question)

  • Q1. Product knowledge
Round 3 - Case Study 

Customer behaviour, staff motivation

Round 4 - Case Study 

Customer issue handling

Round 5 - One-on-one 

(2 Questions)

  • Q1. Future of company
  • Q2. What is ur current openion
Interview experience
5
Excellent
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 

(7 Questions)

  • Q1. Risk management
  • Q2. Stakeholder management
  • Q3. Solution architecture and block diagram
  • Ans. 

    Solution architecture and block diagram involves designing the overall structure of a system and visually representing it.

    • Identify key components and their interactions

    • Define data flow and communication protocols

    • Consider scalability, security, and performance

    • Use tools like UML diagrams or flowcharts

    • Example: AWS architecture with EC2 instances, S3 storage, and RDS database

  • Answered by AI
  • Q4. Program values and benefits
  • Ans. 

    Program values and benefits are essential for successful project management, ensuring alignment with organizational goals and delivering value to stakeholders.

    • Program values define the principles and beliefs that guide decision-making and behavior within the program.

    • Benefits are the positive outcomes or results that the program aims to achieve, such as cost savings, increased efficiency, or improved customer satisfacti...

  • Answered by AI
  • Q5. How to assess a program benefits
  • Ans. 

    Assessing program benefits involves identifying key metrics, collecting data, analyzing results, and comparing against goals.

    • Identify key metrics to measure success, such as cost savings, revenue growth, customer satisfaction, etc.

    • Collect relevant data to track progress and measure impact of the program.

    • Analyze the data to determine if the program is meeting its objectives and delivering expected benefits.

    • Compare the r...

  • Answered by AI
  • Q6. Project life cycle and framework and methodology
  • Q7. Values and principles
Round 2 - Case Study 

2 case study rounds for 1.5 hours, 1st case study is a small use case with 2 questions and there will be 10 mins given for preparation. 2nd case study will have 5 questions and time given for preparation will be 25 mins.

Round 3 - Leadership - Values 

(8 Questions)

  • Q1. Tesco cultural values
  • Q2. Tesco leadership values
  • Q3. Conflict management
  • Q4. Risk management
  • Q5. Resilience and Humility
  • Q6. Trust and believe
  • Q7. Team work and collaboration
  • Q8. Failures and lessons learned
  • Ans. 

    I have experienced failures in past projects and have learned valuable lessons from them.

    • Recognizing the importance of clear communication and setting expectations early on

    • Implementing regular project status updates to stakeholders to avoid surprises

    • Documenting lessons learned to prevent repeating the same mistakes in future projects

  • Answered by AI
Round 4 - Technical 

(16 Questions)

  • Q1. Product life cycle
  • Q2. Program life cycle
  • Q3. Project life cycle
  • Q4. Schedule and effort estimate
  • Ans. 

    Schedule and effort estimation is crucial for successful project management.

    • Understand the scope of the project and break it down into smaller tasks

    • Estimate the time and resources required for each task

    • Consider dependencies between tasks and potential risks

    • Use historical data or expert judgment to improve accuracy

    • Regularly review and update the schedule as needed

  • Answered by AI
  • Q5. Cost estimates and tracking
  • Q6. Define project phases
  • Ans. 

    Project phases are distinct stages in a project's lifecycle, each with specific goals and deliverables.

    • Initiation: Define project scope, objectives, and stakeholders.

    • Planning: Create a detailed project plan, including timelines and resources.

    • Execution: Implement the project plan and deliver the project's objectives.

    • Monitoring and Controlling: Track project progress, identify issues, and make necessary adjustments.

    • Closi...

  • Answered by AI
  • Q7. Difference between Opex and Capex
  • Ans. 

    Opex refers to operational expenses, while Capex refers to capital expenses.

    • Opex includes day-to-day expenses like salaries, rent, utilities, and maintenance.

    • Capex involves investments in assets that provide long-term value, such as equipment, property, and infrastructure.

    • Opex is typically incurred regularly and is fully tax-deductible in the year it is incurred.

    • Capex is usually depreciated over time as the asset is us...

  • Answered by AI
  • Q8. Quality and various tools used
  • Ans. 

    Quality is crucial in delivering successful projects. Various tools like Jira, Confluence, and Jenkins are commonly used to ensure high quality.

    • Quality assurance processes are essential to maintain high standards in project deliverables

    • Tools like Jira are used for issue tracking and project management

    • Confluence is used for documentation and collaboration among team members

    • Jenkins is used for continuous integration and ...

  • Answered by AI
  • Q9. Demonstrate one project with technical expertise and IT landscape and Tech Stacks
  • Ans. 

    Led a project to implement a cloud-based data analytics platform using AWS services and Python tech stack.

    • Designed architecture for data analytics platform using AWS services like S3, Glue, and Athena.

    • Implemented ETL processes using Python and Apache Spark for data transformation and analysis.

    • Integrated machine learning models into the platform for predictive analytics.

    • Ensured scalability and performance optimization o...

  • Answered by AI
  • Q10. Waterfall and Agile Software Development
  • Q11. Business benefits and realisation
  • Q12. Managing conflicting priorities
  • Ans. 

    Managing conflicting priorities involves prioritizing tasks, communicating effectively, and being flexible.

    • Prioritize tasks based on importance and deadlines

    • Communicate with stakeholders to understand their needs and expectations

    • Be flexible and willing to adjust plans as needed

    • Use tools like project management software to track progress and manage tasks

  • Answered by AI
  • Q13. Managing stakeholders expectations and demands
  • Ans. 

    Managing stakeholders expectations and demands is crucial for successful project delivery.

    • Establish clear communication channels with stakeholders

    • Set realistic expectations from the beginning

    • Regularly update stakeholders on project progress

    • Address any concerns or issues promptly

    • Seek feedback from stakeholders to ensure alignment

  • Answered by AI
  • Q14. Scope management and scope creeps
  • Q15. Vendor management and CBA
  • Q16. Team performance and Backlog management

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep one or two case study ready with tech stacks, design architecture and approach each question and situation with Case study and in STAR format. Use good vocabulary and don’t fake anything.

Fashion Tech Interview FAQs

How to prepare for Fashion Tech interview?
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 Fashion Tech. The most common topics and skills that interviewers at Fashion Tech expect are Merchandising, 2D, Accessories, Action Plan and Analog.

Tell us how to improve this page.

Interview Questions from Similar Companies

Reliance Retail Interview Questions
3.9
 • 1.5k Interviews
Walmart Interview Questions
3.8
 • 407 Interviews
DMart Interview Questions
3.9
 • 397 Interviews
Myntra Interview Questions
4.0
 • 215 Interviews
AJIO Interview Questions
3.7
 • 64 Interviews
LimeRoad Interview Questions
2.6
 • 9 Interviews
Zivame.com Interview Questions
3.8
 • 9 Interviews
FabAlley Interview Questions
4.4
 • 5 Interviews
Nykaa Fashion Interview Questions
3.8
 • 3 Interviews
Voonik Interview Questions
2.1
 • 1 Interview
View all

Fashion Tech Reviews and Ratings

based on 3 reviews

4.9/5

Rating in categories

4.9

Skill development

4.9

Work-life balance

4.8

Salary

4.8

Job security

4.8

Company culture

4.8

Promotions

4.8

Work satisfaction

Explore 3 Reviews and Ratings
Billing Executive
4 salaries
unlock blur

₹3.3 L/yr - ₹4.3 L/yr

Garment Technician
3 salaries
unlock blur

₹3 L/yr - ₹3 L/yr

Garment Merchandiser
3 salaries
unlock blur

₹3.3 L/yr - ₹4 L/yr

Explore more salaries
Compare Fashion Tech with

Myntra

4.0
Compare

Voonik

2.1
Compare

LimeRoad

2.6
Compare

Koovs

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