Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by FNP Team. If you also belong to the team, you can get access from here

FNP Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

FNP Senior Manager Interview Questions and Answers

Updated 9 Oct 2024

FNP Senior Manager Interview Experiences

1 interview found

Interview experience
1
Bad
Difficulty level
Easy
Process Duration
More than 8 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed in Sep 2024. There was 1 interview round.

Round 1 - HR 

(4 Questions)

  • Q1. What is the age of your family member?
  • Q2. Are you ready to work at 50% of your current package?
  • Ans. 

    I am open to discussing compensation based on the overall package and benefits offered.

    • I am open to discussing compensation based on the overall package and benefits offered.

    • I would need more information on the specific details of the package and benefits before making a decision.

    • I am willing to negotiate and find a mutually beneficial solution.

    • I believe in the value I bring to the role and would like to discuss how th

  • Answered by AI
  • Q3. You have worked with top MNC's, why do you want to join a company like ours?
  • Ans. 

    I am drawn to the unique challenges and opportunities that your company offers, which align with my career goals and values.

    • Your company's innovative approach to problem-solving excites me

    • I am impressed by the company's commitment to employee development and growth

    • I believe my skills and experience can make a significant impact in a company like yours

  • Answered by AI
  • Q4. I still don't believe, why do you want to join our company?
  • Ans. 

    I am impressed by the company's innovative approach and strong reputation in the industry.

    • I am drawn to the company's commitment to excellence and continuous improvement.

    • I believe my skills and experience align well with the company's goals and values.

    • I am excited about the opportunity to contribute to a dynamic and forward-thinking team.

    • I have heard positive feedback from current employees about the company culture an

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - FnP HR: A Disappointing Experience
[***potential RED FLAGS about company's culture***]

My recent interaction with FnP HR left a VERY NEGATIVE impression.
Their unprofessional behavior and lack of basic courtesy raised significant red flags.

Key Issues:
Lack of communications etiquettes - Despite repeated follow-ups, I never received timely responses on phone calls/Emails/SMS/WhatsApp messages. Even one of their HR POC is posting jobs on LinkedIn but never reads Linkedin messages.

Disrespectful Interview Process - The tone of HR POC and questions were intrusive and inappropriate, including personal inquiries about the age of my family members.

Unprofessional Offer - During the resume screening call itself, the HR POC had the guts to offer me a lower salary despite having the senior level experience in a top level MNC. (I was so surprised by the shamelessness of HR)

Poor Communication Skills - HR POC seemed frustrated and disengaged, which created an unpleasant interview experience.

Overall Assessment:
In my opinion, The behaviour exhibited by FnP HR reflects a deeply flawed company culture. Their unprofessionalism and lack of respect for candidates are major deterrents for anyone considering joing their organization. I strongly advise potential job seekers to be cautious when considering FnP.

Interview questions from similar companies

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

I was interviewed in Dec 2024.

Round 1 - HR 

(2 Questions)

  • Q1. Existing job and salary.
  • Q2. Location and details of existing job.

Interview Preparation Tips

Interview preparation tips for other job seekers - plan to prepare information regarding FMCG knowledge and warehouse management.
Interview experience
3
Average
Difficulty level
Hard
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed before Mar 2022. There were 2 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 - Technical 

(4 Questions)

  • Q1. Designer concept, tolerance stacking
  • Q2. New product development case study
  • Q3. Plastic material and stainless steel material application
  • Q4. Product performance testing

Interview Preparation Tips

Interview preparation tips for other job seekers - One night study must before interview facing. Contents of interview as per department
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
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

I applied via Naukri.com and was interviewed in Dec 2024. There was 1 interview round.

Round 1 - One-on-one 

(4 Questions)

  • Q1. What is the difference between 2A and 2b
  • Ans. 

    2A and 2B are different subtypes or classifications within a larger category.

    • 2A and 2B are typically used to differentiate between similar items or concepts.

    • They may represent different levels, versions, or variations of the same thing.

    • For example, 2A could refer to a higher level or more advanced option compared to 2B.

    • The distinction between 2A and 2B is important for categorization and organization purposes.

  • Answered by AI
  • Q2. What is blocked credit in gst .
  • Ans. 

    Blocked credit in GST refers to input tax credit that cannot be utilized for payment of output tax liability.

    • Blocked credit includes items like motor vehicles, food and beverages, health services, etc.

    • Input tax credit on blocked items cannot be used to pay output tax liability.

    • Blocked credit provisions are specified under Section 17(5) of the CGST Act.

  • Answered by AI
  • Q3. How to reverse input tax credit on fixed assets and expenses if there is nill rate supply
  • Ans. 

    Reverse input tax credit on fixed assets and expenses for nill rate supply

    • Identify the fixed assets and expenses for which input tax credit needs to be reversed

    • Calculate the amount of input tax credit to be reversed

    • Reverse the input tax credit in the accounting records

    • Adjust the tax liability accordingly

  • Answered by AI
  • Q4. Difference between nill rate supply and exempt supply
  • Ans. 

    Nil rate supply is taxable but at a rate of 0%, while exempt supply is not taxable at all.

    • Nil rate supply is a taxable supply but at a rate of 0%, meaning that the supplier can claim input tax credits on related expenses.

    • Exempt supply is not taxable at all, meaning that the supplier cannot claim input tax credits on related expenses.

    • Examples of nil rate supply include certain food items and healthcare services, while e...

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Related to replenishment
  • Q2. As a senior what do I bring to the table
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Work about and sallery
  • Q2. Work about and sallary
Round 2 - One-on-one 

(1 Question)

  • Q1. Work about and sallery
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
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Dec 2023. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. .net core framework, .net core MVC, Vue js , js , SQL
Round 2 - Technical 

(6 Questions)

  • Q1. .net core question
  • Q2. .net mvc questions
  • Q3. Authentication in .net
  • Ans. 

    Authentication in .NET involves verifying the identity of users accessing a system.

    • Use ASP.NET Identity for user authentication and authorization

    • Implement OAuth for secure authentication with third-party services

    • Utilize JWT tokens for stateless authentication

    • Implement multi-factor authentication for added security

  • Answered by AI
  • Q4. About your project architecture
  • Q5. Sql related questions
  • Q6. Entity framework
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

I applied via Naukri.com and was interviewed in Jan 2024. There was 1 interview round.

Round 1 - HR 

(2 Questions)

  • Q1. About yourself, family background
  • Q2. It's very easy to tell

FNP Interview FAQs

How many rounds are there in FNP Senior Manager interview?
FNP interview process usually has 1 rounds. The most common rounds in the FNP interview process are HR.
How to prepare for FNP Senior Manager 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 FNP. The most common topics and skills that interviewers at FNP expect are Sales, Analytical, B2B Marketing, B2B Sales and Business Improvement.

Tell us how to improve this page.

FNP Senior Manager Interview Process

based on 1 interview

Interview experience

1
  
Bad
View more

Interview Questions from Similar Companies

Landmark Group Interview Questions
4.0
 • 147 Interviews
Lowe's Interview Questions
4.2
 • 127 Interviews
Tesco Interview Questions
3.8
 • 121 Interviews
Target Interview Questions
4.2
 • 110 Interviews
V2 Retail Interview Questions
3.4
 • 57 Interviews
Fabindia Interview Questions
4.0
 • 52 Interviews
Vijay Sales Interview Questions
4.1
 • 47 Interviews
View all
FNP Senior Manager Salary
based on 12 salaries
₹12 L/yr - ₹25 L/yr
17% less than the average Senior Manager Salary in India
View more details

FNP Senior Manager Reviews and Ratings

based on 3 reviews

2.7/5

Rating in categories

1.6

Skill development

2.3

Work-life balance

2.3

Salary

1.6

Job security

2.0

Company culture

2.3

Promotions

2.0

Work satisfaction

Explore 3 Reviews and Ratings
Assistant Manager
64 salaries
unlock blur

₹3.9 L/yr - ₹10.2 L/yr

Software Engineer
55 salaries
unlock blur

₹3.7 L/yr - ₹12 L/yr

Senior Executive
45 salaries
unlock blur

₹3 L/yr - ₹5.2 L/yr

Customer Service Specialist
44 salaries
unlock blur

₹2.2 L/yr - ₹3.7 L/yr

Senior Software Engineer
42 salaries
unlock blur

₹5.8 L/yr - ₹18 L/yr

Explore more salaries
Compare FNP with

Archies

3.4
Compare

IndianGiftsPortal

4.9
Compare

FlowerAura

3.1
Compare

Myflowertree

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