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 Software Engineer Interview Questions, Process, and Tips

Updated 9 Feb 2024

Top Fareportal Senior Software Engineer Interview Questions and Answers

View all 10 questions

Fareportal Senior Software Engineer Interview Experiences

3 interviews found

I was interviewed in Aug 2021.

Round 1 - Video Call 

(4 Questions)

Round duration - 60 minutes
Round difficulty - Medium

Technical Interview round with questions on C#, Design patterns, OOPS etc.

  • Q1. What is a base class?
  • Ans. 

    A base class is a class that is used as a starting point for creating other classes. It can be inherited by other classes.

    • Base class provides common attributes and methods that can be inherited by other classes

    • Derived classes can extend or override the functionality of the base class

    • Example: Animal can be a base class with attributes like name and methods like eat, sleep

  • Answered by AI
  • Q2. What is a singleton design pattern?
  • Ans. 

    Singleton design pattern ensures a class has only one instance and provides a global point of access to it.

    • Used to restrict the instantiation of a class to one object

    • Commonly used in logging, caching, thread pools, database connections

    • Implemented by creating a static instance of the class and a private constructor to prevent external instantiation

  • Answered by AI
  • Q3. What are the different access modifiers in C#?
  • Ans. 

    Access modifiers in C# control the visibility and accessibility of classes, methods, and other members.

    • Public - accessible from any other class or assembly

    • Private - accessible only within the same class

    • Protected - accessible within the same class or derived classes

    • Internal - accessible within the same assembly

    • Protected Internal - accessible within the same assembly or derived classes

  • Answered by AI
  • Q4. What is the default access modifier in C#?
  • Ans. 

    The default access modifier in C# is 'private'.

    • Default access modifier is applied if no access modifier is specified for a class member

    • It restricts the access to the member within the same class

    • Example: private int myVariable = 10;

  • Answered by AI

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPAFareportal interview preparation:Topics to prepare for the interview - C#, Design patterns, Data Structures, Algorithms, System Design, Aptitude, OOPSTime required to prepare for the interview - 5 monthsInterview preparation tips for other job seekers

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Final outcome of the interviewRejected

Skills evaluated in this interview

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

I applied via LinkedIn and was interviewed before Feb 2023. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Components of service
  • Ans. 

    Components of a service include functionality, reliability, availability, and performance.

    • Functionality: The service should perform the intended tasks and meet the requirements.

    • Reliability: The service should consistently deliver the expected results.

    • Availability: The service should be accessible and operational when needed.

    • Performance: The service should perform efficiently and meet performance expectations.

  • Answered by AI
  • Q2. Lifecycles of web api
  • Ans. 

    The lifecycle of a web API refers to the stages it goes through from development to retirement.

    • The lifecycle typically includes stages like planning, development, testing, deployment, and retirement.

    • During planning, the requirements and design of the API are defined.

    • Development involves writing the code and implementing the functionality.

    • Testing ensures the API works as expected and meets the requirements.

    • Deployment in...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Corec# prepare well

Skills evaluated in this interview

Senior Software Engineer Interview Questions Asked at Other Companies

Q1. K Largest Elements Problem Statement You are given an integer k a ... read more
asked in DBS Bank
Q2. Tell me about yourself. What technology are you using? What is a ... read more
asked in GlobalLogic
Q3. MapSum Pair Implementation Create a data structure named 'MapSum' ... read more
asked in UST
Q4. Nth Prime Number Problem Statement Find the Nth prime number give ... read more
asked in Capgemini
Q5. Pascal's Triangle Construction You are provided with an integer ' ... read more

I applied via Naukri.com and was interviewed in Aug 2021. There were 3 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. What is aingleton and how it ia thread safe?
  • Ans. 

    Singleton is a design pattern that restricts the instantiation of a class to one object and provides a global point of access.

    • Singleton ensures that only one instance of a class is created and provides a way to access it globally.

    • It is thread-safe because the instance is created only once and accessed through a synchronized method or block.

    • Singleton can be implemented using different approaches such as eager initializa...

  • Answered by AI
  • Q2. What ia base class of class in c#?
  • Ans. 

    Object class is the base class of all classes in C#.

    • Object class provides basic functionalities like ToString(), GetHashCode(), and Equals() to all classes.

    • All classes in C# implicitly inherit from Object class.

    • Object class is defined in System namespace.

    • Example: class MyClass : Object { }

  • Answered by AI
  • Q3. Access modifiers in c#
  • Ans. 

    Access modifiers in C# control the visibility and accessibility of class members.

    • Public: accessible from anywhere

    • Private: accessible only within the class

    • Protected: accessible within the class and derived classes

    • Internal: accessible within the same assembly

    • Protected Internal: accessible within the same assembly and derived classes

    • Example: public int age; private string name;

    • Example: protected void DoSomething(); intern

  • Answered by AI
  • Q4. Default aceess modifiers?
  • Ans. 

    Default access modifiers are public, protected, and private.

    • Public: accessible from anywhere

    • Protected: accessible within the class and its subclasses

    • Private: accessible only within the class

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - More of a thery related questions

Skills evaluated in this interview

Interview questions from similar companies

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

Round 1 - Technical 

(1 Question)

  • Q1. Basics of android and java
Round 2 - Coding Test 

Ds related questions

Round 3 - Technical 

(1 Question)

  • Q1. All Android (Java and kotlin)
Round 4 - Behavioral 

(1 Question)

  • Q1. Past projects,android,kotlin
Round 5 - HR 

(1 Question)

  • Q1. About Salary discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared if you want to join in yatra
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in Nov 2023. 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 Resume tips
Round 2 - Technical 

(2 Questions)

  • Q1. Given array of integer create subarray with sum = 0
  • Ans. 

    Create subarrays with sum = 0 from given array of integers.

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

    • Store the running sum in a hashmap and check if the current sum - any previous sum equals 0.

    • If yes, then the subarray between those two indices has a sum of 0.

  • Answered by AI
  • Q2. Left view of binary tree
  • Ans. 

    The left view of a binary tree is the set of nodes visible when the tree is viewed from the left side.

    • Traverse the tree in a level order manner and keep track of the first node at each level.

    • Use a queue to store nodes at each level and update the left view nodes accordingly.

    • Example: For a binary tree with root node 1, left child 2, and right child 3, the left view would be [1, 2].

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Company Website and was interviewed before Mar 2023. There were 4 interview rounds.

Round 1 - Coding Test 

Solve sudoku, row and columns should have 1-9 numbers and the numbers shouldnt repeat

Round 2 - Technical 

(1 Question)

  • Q1. What is the toughest problem you solved and once I answered they started digging in to it
Round 3 - Technical 

(1 Question)

  • Q1. System Design - Design a parking lot
  • Ans. 

    Design a parking lot system with features like parking, retrieving, and tracking available spots.

    • Create a ParkingLot class with attributes like total number of spots, available spots, and a list of parked vehicles.

    • Implement methods for parking a vehicle, retrieving a vehicle, and tracking available spots.

    • Use data structures like arrays or lists to manage parked vehicles and available spots.

    • Consider implementing feature...

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

(1 Question)

  • Q1. Several questions related to behavioral and troubleshooting

Interview Preparation Tips

Interview preparation tips for other job seekers - be confidant

Skills evaluated in this interview

Interview Questionnaire 

2 Questions

  • Q1. I interviewed for Qlikview Team, So most questions were regarding qlikview.
  • Q2. Some questions were regarding SQL also.
Contribute & help others!
anonymous
You can choose to be anonymous

Fareportal Interview FAQs

How many rounds are there in Fareportal Senior Software Engineer interview?
Fareportal interview process usually has 1 rounds. The most common rounds in the Fareportal interview process are Technical.
How to prepare for Fareportal Senior Software Engineer 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 C#, .Net Core, Web Api, ASP.Net MVC and Angular.
What are the top questions asked in Fareportal Senior Software Engineer interview?

Some of the top questions asked at the Fareportal Senior Software Engineer interview -

  1. What is aingleton and how it ia thread sa...read more
  2. What ia base class of class in ...read more
  3. Default aceess modifie...read more

Recently Viewed

JOBS

Jio

No Jobs

SALARIES

Mahanagar Telephone Nigam

REVIEWS

Fareportal

No Reviews

REVIEWS

Fareportal

No Reviews

REVIEWS

Fareportal

No Reviews

SALARIES

Telenor

INTERVIEWS

Fareportal

10 top interview questions

INTERVIEWS

Parekh Integrated Services

No Interviews

REVIEWS

Telenor

No Reviews

SALARIES

Jio

Tell us how to improve this page.

Fareportal Senior Software Engineer Interview Process

based on 1 interview

Interview experience

4
  
Good
View more
Fareportal Senior Software Engineer Salary
based on 129 salaries
₹9 L/yr - ₹32.6 L/yr
47% more than the average Senior Software Engineer Salary in India
View more details

Fareportal Senior Software Engineer Reviews and Ratings

based on 13 reviews

3.2/5

Rating in categories

3.0

Skill development

3.4

Work-life balance

2.6

Salary

3.2

Job security

2.7

Company culture

3.1

Promotions

2.7

Work satisfaction

Explore 13 Reviews and Ratings
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