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 Senior Internal Auditor Interview Questions and Answers

Updated 26 Feb 2025

Fareportal Senior Internal Auditor Interview Experiences

1 interview found

Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Case Study 

Case study on cancellation audit or Fraud cancellation

Interview Preparation Tips

Interview preparation tips for other job seekers - Should avoid this company

Sun Pharmaceutical Industries

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

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
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
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
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
Moderate
Process Duration
2-4 weeks
Result
Selected Selected
Round 1 - Technical 

(2 Questions)

  • Q1. Sdlc life cycle
  • Q2. Vapt question va and pt
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Logical and qunatative

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

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

Fareportal Interview FAQs

How many rounds are there in Fareportal Senior Internal Auditor interview?
Fareportal interview process usually has 1 rounds. The most common rounds in the Fareportal interview process are Case Study.

Recently Viewed

JOBS

Gushwork

14 jobs

JOBS

Browse jobs

Discover jobs you love

JOBS

GroundTruth

33 jobs

PHOTOS

Growisto

7 office photos

INTERVIEWS

Fareportal

No Interviews

JOBS

Barclays Shared Services

No Jobs

SALARIES

Northern Trust Operating Services

JOBS

Oberoi International School

No Jobs

JOBS

Oberoi International School

No Jobs

DESIGNATION

Tell us how to improve this page.

Fareportal Senior Internal Auditor Interview Process

based on 1 interview

Interview experience

1
  
Bad
View more

HCLTech

A more secure future awaits you

Interview Questions from Similar Companies

Swiggy Interview Questions
3.8
 • 428 Interviews
Udaan Interview Questions
4.0
 • 334 Interviews
Meesho Interview Questions
3.7
 • 328 Interviews
Zomato Interview Questions
3.8
 • 312 Interviews
Myntra Interview Questions
4.0
 • 215 Interviews
Naukri Interview Questions
4.0
 • 185 Interviews
Blinkit Interview Questions
3.7
 • 182 Interviews
BlackBuck Interview Questions
3.8
 • 176 Interviews
Spinny Interview Questions
3.7
 • 170 Interviews
FirstCry Interview Questions
3.6
 • 169 Interviews
View all

Fareportal Senior Internal Auditor Reviews and Ratings

based on 1 review

2.0/5

Rating in categories

1.0

Skill development

4.0

Work-life balance

3.0

Salary

1.0

Job security

2.0

Company culture

1.0

Promotions

3.0

Work satisfaction

Explore 1 Review and Rating
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