Upload Button Icon Add office photos

Filter interviews by

Firstsource Solutions Front Office Executive Interview Questions and Answers

Updated 4 Sep 2023

Firstsource Solutions Front Office Executive Interview Experiences

1 interview found

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

I applied via Walk-in and was interviewed before Sep 2022. 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 - Aptitude Test 

Skill verifying by department oriented questions.

Round 3 - Technical 

(2 Questions)

  • Q1. About technical related
  • Q2. Query about technical knowledge.
Round 4 - HR 

(1 Question)

  • Q1. Self introduction and mindset of candidate related questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Gain extreme corporate office knowledge but salary is highly low.

Interview questions from similar companies

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

I was interviewed in Jul 2024.

Round 1 - HR 

(2 Questions)

  • Q1. Self introduction
  • Q2. Tell something about your personal experiences
  • Ans. 

    I have gained valuable customer service skills through my previous roles in hospitality.

    • Worked in customer-facing roles in the hospitality industry

    • Handled guest inquiries and resolved issues effectively

    • Received positive feedback from guests for excellent service

    • Trained new staff on customer service best practices

  • Answered by AI
Round 2 - Assignment 

Harvar voice assessment.

Round 3 - One-on-one 

(2 Questions)

  • Q1. Self introduction
  • Q2. Where do you see yourself in next 5 years
  • Ans. 

    In the next 5 years, I see myself growing within the company, taking on more responsibilities, and potentially moving into a managerial role.

    • Continuing to excel in my current role as a Front Office Executive

    • Participating in leadership development programs to enhance my skills

    • Building strong relationships with colleagues and clients to further my career

    • Working towards becoming a Front Office Manager or similar position

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Exude confidence and energy.

Interview Questionnaire 

1 Question

  • Q1. About any experience I have and my family background ,first round HR will check our communication minimum manageble English also fine , second round computer based test this is simple one ,Third round i...
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Coding Test 

Coding test was the first round of interview

Round 2 - Technical 

(1 Question)

  • Q1. What is virtual dom in react and what makes it faster ?
Round 3 - One-on-one 

(1 Question)

  • Q1. It was HR round
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Walk-in and was interviewed in Jul 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Asked questions on html
  • Q2. Question on Css and javascript
Round 2 - Technical 

(1 Question)

  • Q1. Question on react
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in May 2024. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. What is Currying
  • Ans. 

    Currying is a technique in functional programming where a function with multiple arguments is transformed into a sequence of nested functions, each taking a single argument.

    • Currying helps in creating reusable functions and partial application.

    • It allows for easier composition of functions.

    • Example: const add = (a) => (b) => a + b; add(2)(3) will return 5.

  • Answered by AI
  • Q2. What are closures
  • Ans. 

    Closures are functions that have access to their own scope, as well as the scope in which they were defined.

    • Closures allow functions to access variables from their outer function even after the outer function has finished executing.

    • They help in maintaining state in functional programming.

    • Example: function outerFunction() { let outerVar = 'I am outer'; return function innerFunction() { console.log(outerVar); }; }

    • Example...

  • Answered by AI
  • Q3. What hooks you are familiar with

Interview Preparation Tips

Topics to prepare for Infosys BPM React Js Frontend Developer interview:
  • React.Js
  • Java script
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

2 DSA questions. Both medium level difficult

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

I was interviewed in Jul 2024.

Round 1 - HR 

(2 Questions)

  • Q1. Self introduction
  • Q2. Tell something about your personal experiences
  • Ans. 

    I have gained valuable customer service skills through my previous roles in hospitality.

    • Worked in customer-facing roles in the hospitality industry

    • Handled guest inquiries and resolved issues effectively

    • Received positive feedback from guests for excellent service

    • Trained new staff on customer service best practices

  • Answered by AI
Round 2 - Assignment 

Harvar voice assessment.

Round 3 - One-on-one 

(2 Questions)

  • Q1. Self introduction
  • Q2. Where do you see yourself in next 5 years
  • Ans. 

    In the next 5 years, I see myself growing within the company, taking on more responsibilities, and potentially moving into a managerial role.

    • Continuing to excel in my current role as a Front Office Executive

    • Participating in leadership development programs to enhance my skills

    • Building strong relationships with colleagues and clients to further my career

    • Working towards becoming a Front Office Manager or similar position

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Exude confidence and energy.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
No response

I applied via Naukri.com and was interviewed in Mar 2024. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. What is reactjs?
  • Ans. 

    ReactJS is a JavaScript library for building user interfaces.

    • ReactJS is developed and maintained by Facebook.

    • It allows developers to create reusable UI components.

    • ReactJS uses a virtual DOM for better performance.

    • It follows a component-based architecture.

    • ReactJS can be used to build single-page applications.

  • Answered by AI
  • Q2. What is call, apply and bind in javascript?
  • Ans. 

    call, apply, and bind are methods in JavaScript used to manipulate the context of a function.

    • call() is used to invoke a function with a specified 'this' value and arguments provided individually.

    • apply() is similar to call() but arguments are passed as an array.

    • bind() is used to create a new function with a specified 'this' value and initial arguments.

  • Answered by AI
  • Q3. Data Types in javascript
  • Ans. 

    JavaScript has several data types including string, number, boolean, object, array, null, and undefined.

    • String: 'hello'

    • Number: 42

    • Boolean: true or false

    • Object: { key: value }

    • Array: [1, 2, 3]

    • Null: null

    • Undefined: undefined

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Good luck

Skills evaluated in this interview

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

I applied via LinkedIn and was interviewed in May 2024. There was 1 interview round.

Round 1 - One-on-one 

(1 Question)

  • Q1. Mostly questions from Domain, JavaScript, Like output based questions of objects, their memory location, reference, one DSA question from recursion, output based questions mostly

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on basic

Firstsource Solutions Interview FAQs

How many rounds are there in Firstsource Solutions Front Office Executive interview?
Firstsource Solutions interview process usually has 4 rounds. The most common rounds in the Firstsource Solutions interview process are Resume Shortlist, Aptitude Test and Technical.
What are the top questions asked in Firstsource Solutions Front Office Executive interview?

Some of the top questions asked at the Firstsource Solutions Front Office Executive interview -

  1. Query about technical knowled...read more
  2. About technical rela...read more

Tell us how to improve this page.

People are getting interviews through

based on 1 Firstsource Solutions interview
WalkIn
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.3k Interviews
Accenture Interview Questions
3.9
 • 8k Interviews
Infosys Interview Questions
3.7
 • 7.5k Interviews
Wipro Interview Questions
3.7
 • 5.5k Interviews
Cognizant Interview Questions
3.8
 • 5.5k Interviews
Capgemini Interview Questions
3.8
 • 4.8k Interviews
Tech Mahindra Interview Questions
3.6
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.7k Interviews
LTIMindtree Interview Questions
3.8
 • 2.9k Interviews
IBM Interview Questions
4.1
 • 2.4k Interviews
View all
Firstsource Solutions Front Office Executive Salary
based on 4 salaries
₹1.8 L/yr - ₹3.1 L/yr
6% less than the average Front Office Executive Salary in India
View more details

Firstsource Solutions Front Office Executive Reviews and Ratings

based on 1 review

5.0/5

Rating in categories

4.0

Skill development

3.0

Work-Life balance

4.0

Salary & Benefits

4.0

Job Security

5.0

Company culture

3.0

Promotions/Appraisal

4.0

Work Satisfaction

Explore 1 Review and Rating
Senior Analyst
2.2k salaries
unlock blur

₹2 L/yr - ₹7.3 L/yr

Analyst
1.7k salaries
unlock blur

₹1.9 L/yr - ₹6 L/yr

Customer Service Associate
1.1k salaries
unlock blur

₹0.9 L/yr - ₹5 L/yr

Associate
1k salaries
unlock blur

₹1.3 L/yr - ₹5.2 L/yr

Senior Customer Service Associate
948 salaries
unlock blur

₹1 L/yr - ₹5.6 L/yr

Explore more salaries
Compare Firstsource Solutions with

Infosys

3.7
Compare

Wipro

3.7
Compare

TCS

3.7
Compare

HCLTech

3.5
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview