Upload Button Icon Add office photos

Filter interviews by

Primarc Pecan Retail Interview Questions, Process, and Tips

Updated 1 Mar 2023

Primarc Pecan Retail Interview Experiences

1 interview found

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

I applied via Indeed and was interviewed in Feb 2023. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - HR 

(6 Questions)

  • Q1. Do you decide pricing strategies
  • Ans. 

    Yes, I am responsible for determining pricing strategies based on market research and analysis.

    • I conduct market research to understand the competition and consumer demand

    • I analyze the cost of production and distribution to determine a profitable price point

    • I consider factors such as brand positioning and target audience when setting prices

    • I regularly review and adjust pricing strategies based on market trends and perfo...

  • Answered by AI
  • Q2. What is your expectation from next opportunity
  • Q3. What are you strength and weakness
  • Q4. Where do you see yourself in 2023
  • Q5. Do you do competitior analysis
  • Ans. 

    Yes, we conduct competitor analysis to stay ahead in the market.

    • We analyze our competitors' products, pricing, marketing strategies, and customer feedback.

    • This helps us identify areas where we can improve and differentiate ourselves from the competition.

    • We also keep track of new entrants in the market and their offerings.

    • For example, we recently conducted a competitor analysis and found that one of our competitors was ...

  • Answered by AI
  • Q6. Have you handled Amazon and Flipkart
Round 3 - Excel test 

(3 Questions)

  • Q1. What is Amazon seller central
  • Ans. 

    Amazon Seller Central is a platform for individuals and businesses to sell their products on Amazon.

    • It allows sellers to manage their inventory, pricing, and orders.

    • Sellers can also access performance metrics and customer feedback.

    • Amazon provides tools and resources to help sellers grow their business.

    • Examples of successful sellers on Amazon include small businesses, entrepreneurs, and established brands.

  • Answered by AI
  • Q2. What documents are required for vendor registration
  • Ans. 

    Vendor registration requires various documents to be submitted.

    • Business registration documents

    • Tax registration documents

    • Bank account details

    • Proof of identity

    • Product catalog

    • Previous client references

  • Answered by AI
  • Q3. What was your daily tasks and responsibilities

Interview Preparation Tips

Interview preparation tips for other job seekers - Basically there were two HR rounds and both Hr was deeply asking about price and sale strategies.I feeled Hr itself was not knowing Amazon seller central.You have to work and implement on whatever knowledge you have and you know no extra learning or growing , development.I wasted my time for going in office interview.No reply no feedback after giving 3 rounds.Very bad experience.

Catalogue Executive Interview Questions asked at other Companies

Q1. What documents are required for vendor registration
View answer (1)

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
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed in Jan 2025.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Sales executive
  • Q2. How much salary
Round 2 - One-on-one 

(2 Questions)

  • Q1. Always set ur Goals and target
  • Q2. Focus in your work and marketing on your job profile
Round 3 - One-on-one 

(1 Question)

  • Q1. Discipline in work's
Round 4 - One-on-one 

(1 Question)

  • Q1. Motivational sales arena

Interview Preparation Tips

Interview preparation tips for other job seekers - Marketing is the best word in the world
Thanks Sir
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

Assistant Manager Interview Questions & Answers

Walmart user image Karisma jeanette singh

posted on 27 Jan 2025

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I was interviewed in Dec 2024.

Round 1 - One-on-one 

(3 Questions)

  • Q1. Can you tell me about yourself?
  • Q2. How would you conduct a mock feedback session with a high-performing team member who doesn’t sit with his team leader neither with his team. Instead sits alone in a corner. When asked he tells that he don...
  • Q3. What do you understand by the term Customer Relationship Management (CRM)?

Interview Preparation Tips

Interview preparation tips for other job seekers - Regardless of the response you provide, make sure to prioritize the needs of both clients and employees.

Review and cashier Interview Questions & Answers

Metro Cash & Carry user image gaurav pandey

posted on 17 Jan 2025

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

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

Round 1 - One-on-one 

(2 Questions)

  • Q1. What is profile in your life as hold on time .
  • Ans. 

    Punctuality is crucial in my life as it helps me stay organized, efficient, and reliable.

    • Punctuality helps me manage my time effectively and prioritize tasks

    • Being on time shows respect for others and builds trust

    • Examples: Arriving early for work shifts, meeting deadlines for projects, and being prompt for appointments

  • Answered by AI
  • Q2. I m give u time why r u not using tell .
Round 2 - One-on-one 

(2 Questions)

  • Q1. Review on time but manager is slow how its fast work.
  • Q2. I m going too complete my assignment but time is great faster then me .

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
Moderate
Process Duration
Less than 2 weeks
Result
No response

I was interviewed in Jan 2025.

Round 1 - HR 

(2 Questions)

  • Q1. What details can you provide regarding the compensation package?
  • Q2. What can you tell me about job security in this position?
Round 2 - One-on-one 

(2 Questions)

  • Q1. What can you tell me about the work culture?
  • Q2. What information can you provide about the yearly holidays?
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

Primarc Pecan Retail Interview FAQs

How many rounds are there in Primarc Pecan Retail interview?
Primarc Pecan Retail interview process usually has 3 rounds. The most common rounds in the Primarc Pecan Retail interview process are Resume Shortlist and HR.
How to prepare for Primarc Pecan Retail 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 Primarc Pecan Retail. The most common topics and skills that interviewers at Primarc Pecan Retail expect are Cold Calling, Excel, Market Research, Real Estate and Relationship Building.
What are the top questions asked in Primarc Pecan Retail interview?

Some of the top questions asked at the Primarc Pecan Retail interview -

  1. What documents are required for vendor registrat...read more
  2. Do you decide pricing strateg...read more
  3. What is Amazon seller cent...read more

Tell us how to improve this page.

Primarc Pecan Retail Interview Process

based on 2 interviews

Interview experience

3
  
Average
View more

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
Tata Group Interview Questions
4.2
 • 358 Interviews
V-Mart Interview Questions
4.2
 • 145 Interviews
Shoppers Stop Interview Questions
4.1
 • 110 Interviews
Trent Interview Questions
4.0
 • 75 Interviews
Future Retail Interview Questions
4.3
 • 53 Interviews
View all

Primarc Pecan Retail Reviews and Ratings

based on 21 reviews

4.7/5

Rating in categories

3.9

Skill development

4.3

Work-life balance

4.2

Salary

4.4

Job security

4.6

Company culture

4.1

Promotions

4.1

Work satisfaction

Explore 21 Reviews and Ratings
Executive Accountant
7 salaries
unlock blur

₹2.5 L/yr - ₹3.7 L/yr

Category Manager
5 salaries
unlock blur

₹5.1 L/yr - ₹12 L/yr

Assistant Manager
4 salaries
unlock blur

₹5 L/yr - ₹6.2 L/yr

Assistant Category Manager
4 salaries
unlock blur

₹3.2 L/yr - ₹6 L/yr

Senior Executive
4 salaries
unlock blur

₹2.9 L/yr - ₹4 L/yr

Explore more salaries
Compare Primarc Pecan Retail with

Future Retail

4.3
Compare

Trent

4.0
Compare

Aditya Birla Fashion and Retail

4.1
Compare

V-Mart

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