Upload Button Icon Add office photos

Filter interviews by

Flemingo International Interview Questions and Answers

Updated 14 Dec 2021

Flemingo International Interview Experiences

1 interview found

FNB Executive Interview Questions & Answers

user image Anonymous

posted on 14 Dec 2021

I applied via Walk-in and was interviewed in Jun 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. What's my goal?

Interview Preparation Tips

Interview preparation tips for other job seekers - Always be prepared where you are going which company you are going to have interview study there history and be positive always while giving interview never show nervous ness on your face be confident what your are telling

FNB Executive Interview Questions asked at other Companies

Q1. Tell me some food items of ur previous hotel
View answer (1)

Interview questions from similar companies

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

I was interviewed in Nov 2024.

Round 1 - Technical 

(4 Questions)

  • Q1. What is the code for implementing middleware in .NET?
  • Ans. 

    Middleware in .NET can be implemented using the 'UseMiddleware' method in the Startup class.

    • Use the 'UseMiddleware' method in the Configure method of the Startup class to add middleware in the request pipeline.

    • Create a custom middleware class that implements the 'IMiddleware' interface.

    • Register the custom middleware class in the ConfigureServices method of the Startup class.

  • Answered by AI
  • Q2. What are the common exceptions encountered in middleware?
  • Ans. 

    Common exceptions encountered in middleware include timeout errors, connection errors, and invalid input errors.

    • Timeout errors occur when a request takes too long to process.

    • Connection errors happen when there is a problem connecting to a database or external service.

    • Invalid input errors occur when the data provided does not meet the expected format or criteria.

  • Answered by AI
  • Q3. What is change detection in Angular?
  • Ans. 

    Change detection in Angular is the process of detecting changes in the application state and updating the view accordingly.

    • Angular uses change detection to keep the UI in sync with the application state.

    • It compares the current state of the application with the previous state to determine what has changed.

    • If a change is detected, Angular updates the view to reflect the new state.

    • Change detection can be triggered by user...

  • Answered by AI
  • Q4. What is the use of the Subject in Angular?
  • Ans. 

    Subject in Angular is used for multicasting observables to multiple subscribers.

    • Subject is a type of Observable that allows values to be multicasted to multiple Observers.

    • It acts as both an Observable and an Observer.

    • Subjects are hot Observables, meaning they start emitting values immediately upon creation.

    • Example: const subject = new Subject(); subject.next(1); subject.subscribe(value => console.log(value)); // Out

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Concentrate on the fundamental principles of .NET and Angular.

Skills evaluated in this interview

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

I applied via Job Fair and was interviewed in Sep 2024. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. About scrum values
  • Q2. Agile methodology
Round 2 - Technical 

(2 Questions)

  • Q1. Dependency management
  • Q2. Scrum values and core principle
Round 3 - HR 

(2 Questions)

  • Q1. Salary negotiations
  • Q2. Reasons for job change
  • Ans. 

    Seeking new challenges and growth opportunities in a dynamic environment.

    • Desire for career advancement

    • Interest in working on new projects

    • Seeking a more challenging role

    • Opportunity to learn new skills

  • Answered by AI
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is pooling
  • Ans. 

    Pooling is a technique used in convolutional neural networks to reduce the spatial dimensions of the input volume.

    • Pooling helps in reducing the computational complexity of the network by reducing the number of parameters and computations in the network.

    • Common types of pooling include max pooling and average pooling.

    • Max pooling selects the maximum value from a group of values in the input, while average pooling calculat...

  • Answered by AI
  • Q2. What is Xgboost
  • Ans. 

    Xgboost is a scalable and accurate implementation of gradient boosting machines.

    • Xgboost stands for eXtreme Gradient Boosting.

    • It is a popular machine learning algorithm known for its speed and performance.

    • Xgboost is used in various fields such as data science competitions, finance, and healthcare.

    • It can handle missing data and is resistant to overfitting.

    • Example: Xgboost has been used to win multiple Kaggle competitions

  • Answered by AI
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
-
Round 1 - HR 

(2 Questions)

  • Q1. Quality pollicy?
  • Q2. How to controll production?
  • Ans. 

    Production can be controlled by implementing quality control measures, monitoring processes, setting standards, and conducting regular inspections.

    • Implement quality control measures to ensure products meet standards

    • Monitor production processes to identify any deviations or issues

    • Set quality standards and communicate them to the production team

    • Conduct regular inspections to check for quality and compliance

    • Use data analy

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - improve the job titile catacrcy
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

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

Round 1 - Aptitude Test 

1 hour duration. Normal aptitude test

Round 2 - Technical 

(2 Questions)

  • Q1. What is testing?
  • Ans. 

    Testing is the process of evaluating a system or application to identify defects or errors.

    • Testing involves executing a system or application to find bugs or issues.

    • It ensures that the software meets the specified requirements and functions correctly.

    • Types of testing include unit testing, integration testing, system testing, and acceptance testing.

    • Examples of testing tools include Selenium, JUnit, and TestNG.

  • Answered by AI
  • Q2. Linux based questions
Round 3 - One-on-one 

(2 Questions)

  • Q1. Everything you have in the resume
  • Q2. Test case scenarios

Interview Preparation Tips

Interview preparation tips for other job seekers - Good company to work
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Technical 

(5 Questions)

  • Q1. Basic css,js,reactjs questions
  • Q2. Reactjs coding questions related to array, mapping
  • Q3. Difference between ecma6 and ecma5
  • Ans. 

    ECMA6 introduced new features like arrow functions, classes, and let/const declarations compared to ECMA5.

    • ECMA6 introduced arrow functions for more concise syntax: const add = (a, b) => a + b;

    • ECMA6 added classes for object-oriented programming: class Person { constructor(name) { this.name = name; } }

    • ECMA6 introduced let/const declarations for block-scoped variables: let x = 5; const y = 10;

  • Answered by AI
  • Q4. Form in reactjs
  • Ans. 

    Form handling in ReactJS involves creating controlled components to manage form data and handle user input.

    • Use state to manage form data and update it with user input

    • Handle form submission with onSubmit event handler

    • Use controlled components to ensure form data is synced with state

  • Answered by AI
  • Q5. Box-modal, arrow function, DOM

Skills evaluated in this interview

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

I applied via Job Fair and was interviewed in Mar 2024. There were 4 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Friendly interview
  • Q2. One on ine round
Round 2 - One-on-one 

(1 Question)

  • Q1. One on one round
Round 3 - One-on-one 

(1 Question)

  • Q1. One on one round
Round 4 - One-on-one 

(1 Question)

  • Q1. One on one round

Interview Preparation Tips

Topics to prepare for Colorbar Cosmetics Makeup Artist and Trainer interview:
  • Management
  • Team Management
  • Marketing
  • MS Office
  • Business Development
  • HTML
  • Project Management
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - HR 

(3 Questions)

  • Q1. Prepare on retail KPI
  • Q2. Product knowledge
  • Q3. Self introduction
Round 2 - HR 

(2 Questions)

  • Q1. Self introduction and KPI
  • Q2. Product knowledge

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare on retail KPI and previous company products knowledge
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

If the candidate is successful, the company will extend a job offer, which includes details about compensation, benefits, and other terms of employment.

Round 2 - Technical 

(2 Questions)

  • Q1. Candidates may also discuss salary expectations, benefits, and other logistical details.
  • Q2. There may be a period of negotiation before the candidate accepts the offer.

Flemingo International Interview FAQs

How to prepare for Flemingo International 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 Flemingo International. The most common topics and skills that interviewers at Flemingo International expect are Communication Skills and English.

Tell us how to improve this page.

People are getting interviews through

based on 1 Flemingo International interview
WalkIn
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.

Interview Questions from Similar Companies

Liberty Shoes Interview Questions
3.8
 • 13 Interviews
KGK Group Interview Questions
3.7
 • 11 Interviews
Bacardi Interview Questions
3.7
 • 11 Interviews
Kazo Fashion Interview Questions
3.2
 • 10 Interviews
JAY JAY MILLS Interview Questions
4.3
 • 10 Interviews
View all

Flemingo International Reviews and Ratings

based on 16 reviews

2.2/5

Rating in categories

2.3

Skill development

2.5

Work-Life balance

3.6

Salary & Benefits

2.1

Job Security

2.3

Company culture

2.1

Promotions/Appraisal

2.2

Work Satisfaction

Explore 16 Reviews and Ratings
Sales Executive
5 salaries
unlock blur

₹1.5 L/yr - ₹2.2 L/yr

HR Manager
4 salaries
unlock blur

₹7.5 L/yr - ₹10.1 L/yr

Team Lead
4 salaries
unlock blur

₹1.2 L/yr - ₹4.9 L/yr

Logistics Executive
3 salaries
unlock blur

₹4.8 L/yr - ₹4.8 L/yr

HR Executive
3 salaries
unlock blur

₹2.5 L/yr - ₹4.2 L/yr

Explore more salaries
Compare Flemingo International with

Naaptol Online Shopping

3.6
Compare

Pepe Jeans

4.4
Compare

Liberty Shoes

3.8
Compare

KGK Group

3.7
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview