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

Clear (1)

Fareportal Fraud Analyst Interview Questions and Answers

Updated 31 Oct 2023

Fareportal Fraud Analyst Interview Experiences

1 interview found

Fraud Analyst Interview Questions & Answers

user image Anonymous

posted on 31 Oct 2023

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

I applied via Walk-in and was interviewed before Oct 2022. There were 3 interview rounds.

Round 1 - HR 

(1 Question)

  • Q1. Intro, experience, what do you know abt fare portal , expected salary comfortable in 24*7 environment
  • Ans. Be confident introduce perfectly share your profile and work experience study abt fraud and travel
  • Answered Anonymously
Round 2 - Aptitude Test 

Versant practice versant download app

Round 3 - One-on-one 

(1 Question)

  • Q1. That's. Operation round with manager he would check your communication and your knowledge ablity to work under pressure
  • Ans. Just explain your work profile and show willingness to work in the company
  • Answered Anonymously

Interview Preparation Tips

Interview preparation tips for other job seekers - Always prepare and practice interviews what I used to do if I want to join one perticular company before that company I used to appear for an interview in other companies it was a part of preparation

Sun Pharmaceutical Industries

Join us and thrive in a company culture that inspires and empowers.

Interview questions from similar companies

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 Resume 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.

Interview Preparation Tips

Round: Test
Experience: 1. Rotate a matrix by 90 degrees clockwise.( He asked me have you heard of question.I said Yes.Then he asked me to code)2. Find vertical sum of nodes present in same vertical line in binary tree. ( He again asked me have you heard of question. I have heard it but didn’t remember the approach. It took some time and then I started telling my approach.He aasked me to write code and question regarding get sums from left to right , for which I made use of linked hashmap)
Overall It was very cool for me
Total Questions: 2

Round: Test
Experience: 1.Reverse K blocks of nodes in linked list.There are two interviewers this time, probably, guy was senior he was asking me question.He was very particular in coding. Checked every edge case.and asked me evrything.Initially I told the approach and then started coding.2.Find min in stack in O(1)Pretty straightforward written code.Again he checked all edge cases with my code.3. Then asked about counting sort and its code.4. And a simple question on array sorting.

Round: HR Interview
Experience: I thought this was last round as they have said like.She asked me about my strengths and challenges I faced.How I overcame through it1.Basic question on oops concepts.(runtime polymorphism).
2.Design tables for getting all employees under manager. I screwed it little bit.But some how I got answer which I was not satisfied as well.I was expecting result either yes/no.But they called me for another round of interview may be because of my expected salary which was high compared to my previous.

Round: Technical Interview
Experience: 1.Given “aaabbbccc” it should return “a3b3c3″ in place. Initially I explained brute force approach then he said array has 2n space.I was able to remember approach for quicksort and started explaining after which I grew confident on it.He was satisfied.Questions on time complexity of algo and space complexity discussions.2.Again a question on OOPs.This time I was completely wrong in answering it.I thought interview with yatra was closing for me.He was not satisified much with this.Luckily, there was another round with manager.

Round: Other Interview
Experience: 1.He asked me to find words which are having particular pattern.Then I said it was KMP algo. Can I explain it ?? I started explaining approach, may be he was busy with something, he asked me to write pseudo code.He left the room for 15 mins then he came back I had almost completed the code, which he was satisified.Some basic questions on spring ( my previous work was related to it). Then my expected salary and my position If I got selected in yatra were discussed.

College Name: NA

I applied via Other and was interviewed in Sep 2018. There were 3 interview rounds.

Interview Questionnaire 

5 Questions

  • Q1. As position was for UI developer. So first round was majorly based on HTML and CSS. They were checking the basic concepts.
  • Q2. Questions from JavaScript. Major JavaScript concepts and logical questions.
  • Q3. Main focus was on data structure, travel domain knowledge and optimisation techniques.
  • Q4. Main purpose of this round was to check how updated a person is with new technologies, his willingness to learn new things and attitude towards work.
  • Q5. General discussion and salary negotiation.

Interview Preparation Tips

General Tips: Focus on Data structures.
Skills: GIT, Css, HTML, JavaScript, Communication
Duration: <1 week

I applied via Company Website and was interviewed before Nov 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Oops concept, use of throws and exception, test cases for cash withdrawl at atm, booking ticket at railway test cases, spring boot annotations, jdbc questions, sql queries and programs on strings.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well before interview, be free and be yourself don't pretend to be a smart one just keep your confidence and answer all the questions, if you don't know the answer then please let them know.

Interview Questionnaire 

1 Question

  • Q1. Team handling
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before Nov 2022. 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 Resume tips
Round 2 - Technical 

(1 Question)

  • Q1. Prefer not to due to NDA
Round 3 - Coding Test 

Brush up on DS and Algorithms

Interview Preparation Tips

Interview preparation tips for other job seekers - Brush up on DS and algorithms
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Aug 2023. There were 4 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Hiring manager round
  • Q2. Questions on previous projects
Round 2 - One-on-one 

(2 Questions)

  • Q1. Longest subsequence with sum zero
  • Ans. 

    Find the longest subsequence in an array with sum zero.

    • Iterate through the array and keep track of the running sum.

    • Store the running sum in a hashmap along with the index.

    • If the same sum is encountered again, the subsequence between the two indices has a sum of zero.

  • Answered by AI
  • Q2. Find diameter of tree
  • Ans. 

    The diameter of a tree is the longest path between two leaf nodes in the tree.

    • Calculate the longest path between two leaf nodes in the tree

    • This can be done by finding the height of the left and right subtrees and adding them together

    • The diameter of the tree is the maximum of either the diameter of the left subtree, the diameter of the right subtree, or the sum of the heights of the left and right subtrees

  • Answered by AI
Round 3 - One-on-one 

(1 Question)

  • Q1. System design: Hotel booking system
  • Ans. 

    Design a hotel booking system for managing reservations and availability.

    • Use a database to store hotel information, room availability, and reservations.

    • Implement user authentication and authorization for booking.

    • Include a search feature for users to find available rooms based on their criteria.

    • Allow users to make reservations, modify or cancel them.

    • Send confirmation emails to users after successful bookings.

  • Answered by AI
Round 4 - Coding Test 

Divide one big integer by another

Skills evaluated in this interview

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

I applied via Company Website and was interviewed before Dec 2023. There was 1 interview round.

Round 1 - Coding Test 

Coding question related to tree - BFS

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

Logical and qunatative

Contribute & help others!
anonymous
You can choose to be anonymous

Fareportal Interview FAQs

How many rounds are there in Fareportal Fraud Analyst interview?
Fareportal interview process usually has 4 rounds. The most common rounds in the Fareportal interview process are Resume Shortlist, HR and Aptitude Test.
How to prepare for Fareportal Fraud Analyst 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 Fareportal. The most common topics and skills that interviewers at Fareportal expect are Fraud Detection, Fraud Management, AML, Dispute Management and Fraud.

Recently Viewed

JOBS

Gushwork

14 jobs

JOBS

Browse jobs

Discover jobs you love

JOBS

GroundTruth

33 jobs

PHOTOS

Growisto

7 office photos

JOBS

Vialto Partners

No Jobs

INTERVIEWS

Amazon

No Interviews

LIST OF COMPANIES

Lericon Informatics

Overview

JOBS

Global Calcium

No Jobs

INTERVIEWS

Zepto

No Interviews

INTERVIEWS

Fareportal

No Interviews

Tell us how to improve this page.

Fareportal Fraud Analyst Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

HCLTech

A more secure future awaits you

Interview Questions from Similar Companies

Swiggy Interview Questions
3.8
 • 425 Interviews
Udaan Interview Questions
4.0
 • 333 Interviews
Meesho Interview Questions
3.7
 • 328 Interviews
Zomato Interview Questions
3.8
 • 311 Interviews
Myntra Interview Questions
4.0
 • 214 Interviews
Naukri Interview Questions
4.0
 • 185 Interviews
Blinkit Interview Questions
3.7
 • 180 Interviews
BlackBuck Interview Questions
3.8
 • 175 Interviews
Spinny Interview Questions
3.7
 • 169 Interviews
FirstCry Interview Questions
3.6
 • 169 Interviews
View all
Fareportal Fraud Analyst Salary
based on 22 salaries
₹3.2 L/yr - ₹7.2 L/yr
29% more than the average Fraud Analyst Salary in India
View more details

Fareportal Fraud Analyst Reviews and Ratings

based on 6 reviews

3.9/5

Rating in categories

3.2

Skill development

3.3

Work-life balance

3.7

Salary

2.4

Job security

3.5

Company culture

3.5

Promotions

3.5

Work satisfaction

Explore 6 Reviews and Ratings
Senior Executive
418 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
114 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.6
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