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 Work with us arrow

Compare button icon Compare button icon Compare

Filter interviews by

Fareportal Interview Questions and Answers

Updated 25 Apr 2025
Popular Designations

23 Interview questions

A React Js Frontend Developer was asked 2mo ago
Q. What is a function expression?
Ans. 

A function expression is a way to define a function in JavaScript, often assigned to a variable.

  • Function expressions can be anonymous or named.

  • They are defined using the 'function' keyword followed by parentheses.

  • Example of an anonymous function expression: const add = function(a, b) { return a + b; };

  • Example of a named function expression: const multiply = function multiplyFunc(a, b) { return a * b; };

  • Function ex...

View all React Js Frontend Developer interview questions
A React Js Frontend Developer was asked 2mo ago
Q. What is an IIFE, and what is its syntax?
Ans. 

IIFE (Immediately Invoked Function Expression) is a JavaScript function that runs as soon as it is defined.

  • An IIFE is defined using function syntax followed by parentheses: (function() { /* code */ })();

  • It helps in creating a private scope, avoiding global variable pollution.

  • IIFEs can take parameters: (function(param) { /* code */ })(value);

  • Commonly used for module patterns and encapsulating code.

  • Example: (functio...

View all React Js Frontend Developer interview questions
A Software Development Engineer Intern was asked 9mo ago
Q. What are the basic concepts of OOP?
Ans. 

Object-Oriented Programming (OOP) is a programming paradigm based on the concept of objects, which can contain data and code.

  • Encapsulation: Bundling data and methods that operate on the data within one unit, e.g., a class in Java.

  • Inheritance: Mechanism to create a new class using properties of an existing class, e.g., a 'Dog' class inheriting from an 'Animal' class.

  • Polymorphism: Ability to present the same interfa...

View all Software Development Engineer Intern interview questions
A Full Stack Software Developer was asked 12mo ago
Q. What are your OOPS concepts?
Ans. 

Object-Oriented Programming (OOP) is a programming paradigm based on the concept of objects, which can contain data and code.

  • Encapsulation: Bundling data and methods that operate on the data within one unit (e.g., a class).

  • Inheritance: Mechanism where a new class derives properties and behavior from an existing class (e.g., a 'Dog' class inheriting from an 'Animal' class).

  • Polymorphism: Ability to present the same ...

View all Full Stack Software Developer interview questions
A Senior Systems Engineer was asked
Q. How can we access different types of hardware on the console?
Ans. 

Different types of hardware can be accessed on console through device drivers and APIs.

  • Use device drivers to communicate with hardware components such as printers, scanners, and network cards

  • Utilize APIs provided by hardware manufacturers to access specific functionalities of hardware devices

  • Interact with hardware through command line tools or graphical user interfaces

View all Senior Systems Engineer interview questions
A Senior Systems Engineer was asked
Q. What is the PowerShell command to create a checkpoint on SCVMM?
Ans. 

Use the New-SCVMCheckpoint cmdlet in PowerShell to create a checkpoint on SCVMM.

  • Use the New-SCVMCheckpoint cmdlet in PowerShell

  • Specify the VM name and checkpoint name as parameters

  • Example: New-SCVMCheckpoint -VM 'VMName' -Name 'CheckpointName'

View all Senior Systems Engineer interview questions
A Software Development Engineer was asked
Q. What do you know about polymorphism?
Ans. 

Polymorphism is the ability of a function or method to behave differently based on the object it is called with.

  • Polymorphism allows objects of different classes to be treated as objects of a common superclass.

  • There are two types of polymorphism: compile-time (method overloading) and runtime (method overriding).

  • Example: Inheritance in object-oriented programming languages like Java allows for polymorphism.

  • Example: ...

View all Software Development Engineer interview questions
Are these interview questions helpful?
A Worker was asked
Q. How many classes do you take?
Ans. 

I read a variety of classes for work and personal development.

  • I read multiple classes related to my field of work to stay updated on industry trends and advancements.

  • I also read classes on personal development, such as time management or communication skills.

  • Examples: Business management classes, leadership development classes, online courses on marketing strategies.

View all Worker interview questions
A Worker was asked
Q. How do you manage employees under your supervision?
Ans. 

To control under employees, establish clear expectations, provide regular feedback, offer training and development opportunities, and address performance issues promptly.

  • Set clear expectations for performance and behavior

  • Provide regular feedback and recognition for good work

  • Offer training and development opportunities to help employees improve

  • Address performance issues promptly and fairly

  • Lead by example and commun...

View all Worker interview questions
A Senior Software Engineer was asked
Q. What are 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(); i...

View all Senior Software Engineer interview questions

Fareportal Interview Experiences

32 interviews found

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(4 Questions)

  • Q1. Data structure and algorithm
  • Q2. Some tricky logical question
  • Q3. Stack and queue
  • Q4. Some basic question about system Design
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I appeared for an interview in Mar 2025, where I was asked the following questions.

  • Q1. What is function expression
  • Ans. 

    A function expression is a way to define a function in JavaScript, often assigned to a variable.

    • Function expressions can be anonymous or named.

    • They are defined using the 'function' keyword followed by parentheses.

    • Example of an anonymous function expression: const add = function(a, b) { return a + b; };

    • Example of a named function expression: const multiply = function multiplyFunc(a, b) { return a * b; };

    • Function express...

  • Answered by AI
  • Q2. What’s IIFE and it’s syntax
  • Ans. 

    IIFE (Immediately Invoked Function Expression) is a JavaScript function that runs as soon as it is defined.

    • An IIFE is defined using function syntax followed by parentheses: (function() { /* code */ })();

    • It helps in creating a private scope, avoiding global variable pollution.

    • IIFEs can take parameters: (function(param) { /* code */ })(value);

    • Commonly used for module patterns and encapsulating code.

    • Example: (function() {...

  • Answered by AI
  • Q3. What is hoisting and local decoration hoisting and global scope hoisting
  • Ans. 

    Hoisting is a JavaScript mechanism where variable and function declarations are moved to the top of their containing scope during compilation.

    • Variable Hoisting: In JavaScript, variable declarations (using var) are hoisted to the top of their scope, but initializations are not. Example: console.log(x); var x = 5; // undefined

    • Function Hoisting: Function declarations are fully hoisted, meaning you can call a function befo...

  • Answered by AI

Senior Systems Engineer Interview Questions & Answers

user image Rishikesh Kumar Yadav

posted on 20 May 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Assignment 

It was a project to make automation VM creation with powershell.

Round 2 - Technical 

(4 Questions)

  • Q1. How we can access different types of hardware on console?
  • Ans. 

    Different types of hardware can be accessed on console through device drivers and APIs.

    • Use device drivers to communicate with hardware components such as printers, scanners, and network cards

    • Utilize APIs provided by hardware manufacturers to access specific functionalities of hardware devices

    • Interact with hardware through command line tools or graphical user interfaces

  • Answered by AI
  • Q2. Powershell command to make checkpoint on scvmm?
  • Ans. 

    Use the New-SCVMCheckpoint cmdlet in PowerShell to create a checkpoint on SCVMM.

    • Use the New-SCVMCheckpoint cmdlet in PowerShell

    • Specify the VM name and checkpoint name as parameters

    • Example: New-SCVMCheckpoint -VM 'VMName' -Name 'CheckpointName'

  • Answered by AI
  • Q3. What were your last 2-3 projects?
  • Q4. About different types of OSs.

Skills evaluated in this interview

Interview Questions & Answers

user image Anonymous

posted on 30 Apr 2024

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Naukri.com and was interviewed in Mar 2024. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Process plans testing grc
Round 2 - Technical 

(2 Questions)

  • Q1. GRC, VAPT, Firewall etc
  • Q2. Detailed information given
Round 3 - Technical 

(1 Question)

  • Q1. Patch management vapt

Interview Preparation Tips

Interview preparation tips for other job seekers - Do not appear for interview here. HR is worst. They cant decide what they want in candidate
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(2 Questions)

  • Q1. Tell me about yourself.
  • Q2. What are your professional skills?
  • Ans. 

    My professional skills include strong leadership, excellent communication, problem-solving abilities, and a deep understanding of transportation logistics.

    • Strong leadership skills demonstrated through effectively managing a team of transport staff

    • Excellent communication skills in coordinating with drivers, clients, and other departments

    • Proven problem-solving abilities in resolving transportation issues and optimizing r...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - How many years of experience do you have, and what are your strengths?
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

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 experience
1
Bad
Difficulty level
-
Process Duration
-
Result
Not Selected
Round 1 - Technical 

(2 Questions)

  • Q1. Oops question asked
  • Ans. 

    Object-Oriented Programming (OOP) is a programming paradigm based on the concept of objects, which can contain data and code.

    • Encapsulation: Bundling data and methods that operate on the data within one unit (e.g., a class).

    • Inheritance: Mechanism where a new class derives properties and behavior from an existing class (e.g., a 'Dog' class inheriting from an 'Animal' class).

    • Polymorphism: Ability to present the same inter...

  • Answered by AI
  • Q2. Sql questions asked

Interview Preparation Tips

Interview preparation tips for other job seekers - please ask them if there is really vacant position. as they do multiple rounds and then say no position

Worker Interview Questions & Answers

user image Anonymous

posted on 22 Aug 2023

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

I applied via Company Website and was interviewed in Jul 2023. There were 4 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 tips
Round 2 - Case Study 

I am student of class 10 i m worker plz give me naurkari

Round 3 - Group Discussion 

I am discuss the meeting from company

Round 4 - One-on-one 

(5 Questions)

  • Q1. What is your aim
  • Q2. How many classe doy you read
  • Ans. 

    I read a variety of classes for work and personal development.

    • I read multiple classes related to my field of work to stay updated on industry trends and advancements.

    • I also read classes on personal development, such as time management or communication skills.

    • Examples: Business management classes, leadership development classes, online courses on marketing strategies.

  • Answered by AI
  • Q3. How to grow. The company
  • Q4. How. To behave of your company members
  • Q5. How to control the under employees
  • Ans. 

    To control under employees, establish clear expectations, provide regular feedback, offer training and development opportunities, and address performance issues promptly.

    • Set clear expectations for performance and behavior

    • Provide regular feedback and recognition for good work

    • Offer training and development opportunities to help employees improve

    • Address performance issues promptly and fairly

    • Lead by example and communicate...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - I am growing the company shares
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(2 Questions)

  • Q1. Describe your job profile
  • Q2. Why do you want to leave

Top trending discussions

View All
Interview Tips & Stories
1w (edited)
a team lead
Why are women still asked such personal questions in interview?
I recently went for an interview… and honestly, m still trying to process what just happened. Instead of being asked about my skills, experience, or how I could add value to the company… the questions took a totally unexpected turn. The interviewer started asking things like When are you getting married? Are you engaged? And m sure, if I had said I was married, the next question would’ve been How long have you been married? What does my personal life have to do with the job m applying for? This is where I felt the gender discrimination hit hard. These types of questions are so casually thrown at women during interviews but are they ever asked to men? No one asks male candidates if they’re planning a wedding or how old their kids are. So why is it okay to ask women? Can we please stop normalising this kind of behaviour in interviews? Our careers shouldn’t be judged by our relationship status. Period.
Got a question about Fareportal?
Ask anonymously on communities.

Fareportal Interview FAQs

How many rounds are there in Fareportal interview?
Fareportal interview process usually has 2-3 rounds. The most common rounds in the Fareportal interview process are HR, Technical and Resume Shortlist.
How to prepare for Fareportal 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 Travel Sales, C#, Javascript, SQL and Azure.
What are the top questions asked in Fareportal interview?

Some of the top questions asked at the Fareportal interview -

  1. What is aingleton and how it ia thread sa...read more
  2. How we can access different types of hardware on conso...read more
  3. What is hoisting and local decoration hoisting and global scope hoist...read more
How long is the Fareportal interview process?

The duration of Fareportal interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Overall Interview Experience Rating

3.4/5

based on 25 interview experiences

Difficulty level

Easy 50%
Moderate 50%

Duration

Less than 2 weeks 92%
2-4 weeks 8%
View more
Join Fareportal Uniting people and places across the planet

Interview Questions from Similar Companies

Swiggy Interview Questions
3.7
 • 475 Interviews
Meesho Interview Questions
3.7
 • 370 Interviews
Udaan Interview Questions
3.9
 • 347 Interviews
Blinkit Interview Questions
3.8
 • 241 Interviews
Oyo Rooms Interview Questions
3.2
 • 232 Interviews
Myntra Interview Questions
3.9
 • 229 Interviews
Naukri Interview Questions
4.1
 • 201 Interviews
BlackBuck Interview Questions
3.7
 • 194 Interviews
Tata 1mg Interview Questions
3.6
 • 189 Interviews
FirstCry Interview Questions
3.5
 • 188 Interviews
View all

Fareportal Reviews and Ratings

based on 737 reviews

3.3/5

Rating in categories

3.1

Skill development

3.1

Work-life balance

3.3

Salary

3.0

Job security

2.9

Company culture

2.7

Promotions

3.0

Work satisfaction

Explore 737 Reviews and Ratings
Opening For Associate Director - Pricing Product Management

Gurgaon / Gurugram

8-13 Yrs

Not Disclosed

Fraud Prevention Analyst

Gurgaon / Gurugram

1-6 Yrs

Not Disclosed

Sr. Machine Learning Engineer

Gurgaon / Gurugram

4-8 Yrs

Not Disclosed

Explore more jobs
Senior Executive
415 salaries
unlock blur

₹3.2 L/yr - ₹6.7 L/yr

Team Lead
146 salaries
unlock blur

₹6.3 L/yr - ₹12 L/yr

Senior Software Engineer
116 salaries
unlock blur

₹14.2 L/yr - ₹26.4 L/yr

Assistant Manager
108 salaries
unlock blur

₹8.1 L/yr - ₹14.2 L/yr

Executive
100 salaries
unlock blur

₹2.7 L/yr - ₹6 L/yr

Explore more salaries
Compare Fareportal with

Udaan

3.9
Compare

Swiggy

3.7
Compare

Oyo Rooms

3.2
Compare

Blinkit

3.8
Compare
write
Share an Interview