Upload Button Icon Add office photos
Premium Employer

i

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

Fareportal Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Fareportal Senior Wfm Analyst Interview Questions and Answers

Updated 9 Sep 2024

Fareportal Senior Wfm Analyst Interview Experiences

1 interview found

Senior Wfm Analyst Interview Questions & Answers

user image abhineet singh

posted on 9 Sep 2024

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

I applied via LinkedIn and was interviewed in Mar 2024. There were 2 interview rounds.

Round 1 - HR 

(1 Question)

  • Q1. About yourself and experience in WFM
Round 2 - Behavioral 

(1 Question)

  • Q1. Related questions to WFM

Interview questions from similar companies

I applied via Recruitment Consulltant and was interviewed in Sep 2021. There was 1 interview round.

Round 1 - One-on-one 

(1 Question)

  • Q1. Tell me about yourself

Interview Preparation Tips

Interview preparation tips for other job seekers - They will hire you,need not to worry

I applied via Recruitment Consultant and was interviewed before Jun 2019. There were 5 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. No relevant questions to the job
  • Q2. Basic English tests

Interview Preparation Tips

Interview preparation tips for other job seekers - If you are qualified above graduation, this is not the job you should be looking for.
Interview experience
1
Bad
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed before May 2023. There were 3 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. Basic communication and experience check
Round 2 - One-on-one 

(1 Question)

  • Q1. Basic communication and experience check
Round 3 - One-on-one 

(1 Question)

  • Q1. Basic communication and experience check
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed in Mar 2024.

Round 1 - Assignment 

I have met good experience

Round 2 - One-on-one 

(5 Questions)

  • Q1. What is your qualification?
  • Ans. I am M.A ,B.Ed
  • Answered Anonymously
  • Q2. How many years you have teaching experience?
  • Ans. 24 years teaching experience.
  • Answered Anonymously
  • Q3. Do you want job?
  • Q4. Where do you live?
  • Q5. When will join your job?
  • Ans. İmmediatiely
  • Answered by satinder kaur

Interview Preparation Tips

Interview preparation tips for other job seekers - If candidates are giving the good interview then you selected that person.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
-
Result
-

I was interviewed in Oct 2024.

Round 1 - One-on-one 

(1 Question)

  • Q1. Inventory and dispatch
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 

(2 Questions)

  • Q1. SQL hakcerank test, 10 questions 1 hour
  • Q2. On sql mainly, with some python and Excel.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare sql well, joins, lag, lead, row_number and other advance function in sql are must.

I was interviewed in Aug 2021.

Round 1 - Video Call 

(1 Question)

Round duration - 60 minutes
Round difficulty - Medium

Timing was fine - It was in the afternoon
Interviewer was friendly and helpful

  • Q1. 

    Find Duplicates in an Array

    Given an array ARR of size 'N', where each integer is in the range from 0 to N - 1, identify all elements that appear more than once.

    Return the duplicate elements in any orde...

  • Ans. 

    Find duplicates in an array of integers within a specified range.

    • Iterate through the array and keep track of the count of each element using a hashmap.

    • Return elements with count greater than 1 as duplicates.

    • Handle edge cases like empty array or no duplicates found.

    • Example: For input [0, 3, 1, 2, 3], output should be [3].

  • Answered by AI
Round 2 - Coding Test 

(1 Question)

Round duration - 60 minutes
Round difficulty - Medium

- Timing was fine - Afternoon
- Interviewer was friendly

  • Q1. How would you design a caching library?
  • Ans. 

    Designing a caching library involves considering data storage, retrieval, expiration policies, and cache invalidation strategies.

    • Define the caching requirements such as data size, access patterns, and expiration policies.

    • Choose a suitable data structure for caching like LRU, LFU, or a simple key-value store.

    • Implement cache eviction policies to handle memory constraints and optimize performance.

    • Consider thread safety an...

  • Answered by AI
Round 3 - Face to Face 

(1 Question)

Round duration - 60 minutes
Round difficulty - Medium

- Timing was fine - Afternoon
- Interviewer was friendly

  • Q1. What is the number of edges in a 10x10 cube?
  • Ans. 

    A 10x10 cube has 600 edges.

    • A cube has 12 edges, so a 10x10 cube would have 12 edges on each of its 6 faces.

    • 12 edges x 6 faces = 72 edges for the entire cube.

    • However, each edge is shared by two faces, so we need to divide by 2 to get the total number of unique edges.

    • 72 edges / 2 = 36 unique edges on the outer surface of the cube.

    • Since the cube has 10x10x10 = 1000 unit cubes, each with 12 edges, we need to subtract the e...

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI applied for the job as Senior Software Engineer in GurgaonEligibility criteriaGood professional experienceixigo interview preparation:Topics to prepare for the interview - iOS Development, Software Architecture, Protocol Oriented programming, System Design, Data StructuresTime required to prepare for the interview - 2 monthsInterview preparation tips for other job seekers

Tip 1 : Be confident
Tip 2 : Be always ready for white board coding
Tip 3 : Brush up your basics

Application resume tips for other job seekers

Tip 1 : Resume should not be more than 1 page long
Tip 2 : Write down your technical skills, Frameworks

Final outcome of the interviewSelected

Skills evaluated in this interview

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

I applied via LinkedIn and was interviewed before Mar 2023. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. To find the kth minimum element from BST
  • Ans. 

    To find the kth minimum element from a Binary Search Tree (BST)

    • Perform an in-order traversal of the BST to get elements in sorted order

    • Return the kth element from the sorted list

    • Time complexity: O(n) where n is the number of nodes in the BST

  • Answered by AI
  • Q2. Basic OOPs question like inheritance encapsulation
Round 2 - Technical 

(2 Questions)

  • Q1. In a BST two numbers are swapped find swapped nos.
  • Ans. 

    To find swapped numbers in a BST, perform inorder traversal and keep track of previous node.

    • Perform inorder traversal of the BST

    • Keep track of the previous node while traversing

    • If at any point, the current node's value is less than the previous node's value, those are the swapped numbers

  • Answered by AI
  • Q2. What you did in college projects
Round 3 - One-on-one 

(2 Questions)

  • Q1. Puzzles: find the fastest 3 horses in 25 horse race with a race and 5 horses can be run at a time
  • Q2. Weakness and strength. how a friend will describe you

Interview Preparation Tips

Topics to prepare for Ixigo.com Software Engineer interview:
  • java
  • dsa
  • puzzle
  • tree
Interview preparation tips for other job seekers - DSA and system design are needed

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Logical and qunatative

Fareportal Interview FAQs

How many rounds are there in Fareportal Senior Wfm Analyst interview?
Fareportal interview process usually has 2 rounds. The most common rounds in the Fareportal interview process are HR and Behavioral.

Tell us how to improve this page.

Fareportal Senior Wfm Analyst Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

Swiggy Interview Questions
3.8
 • 438 Interviews
Udaan Interview Questions
4.0
 • 335 Interviews
Meesho Interview Questions
3.7
 • 329 Interviews
Zomato Interview Questions
3.7
 • 322 Interviews
Myntra Interview Questions
4.0
 • 216 Interviews
Naukri Interview Questions
4.0
 • 186 Interviews
Blinkit Interview Questions
3.7
 • 182 Interviews
BlackBuck Interview Questions
3.8
 • 174 Interviews
Spinny Interview Questions
3.7
 • 168 Interviews
Uber Interview Questions
4.2
 • 167 Interviews
View all

Fareportal Senior Wfm Analyst Reviews and Ratings

based on 1 review

5.0/5

Rating in categories

5.0

Skill development

4.0

Work-life balance

5.0

Salary

4.0

Job security

5.0

Company culture

5.0

Promotions

5.0

Work satisfaction

Explore 1 Review and Rating
Senior Executive
417 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Team Lead
131 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
129 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Executive
112 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Assistant Manager
103 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Fareportal with

MakeMyTrip

3.7
Compare

Yatra

3.4
Compare

Cleartrip

3.4
Compare

Goibibo

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