Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Fingent Team. If you also belong to the team, you can get access from here

Fingent Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Fingent Interview Questions, Process, and Tips

Updated 8 Jan 2025

Top Fingent Interview Questions and Answers

View all 17 questions

Fingent Interview Experiences

Popular Designations

22 interviews found

I applied via Approached by Company and was interviewed in May 2022. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Action Filters In MVC
  • Ans. 

    Action filters are used in ASP.NET MVC to execute code before or after an action method is called.

    • Action filters can be used to perform authentication and authorization checks.

    • They can also be used to modify the result of an action method.

    • Examples of action filters include Authorize, OutputCache, and HandleError.

    • Action filters can be applied globally, to a controller, or to an individual action method.

  • Answered by AI
  • Q2. What is the difference between controller and API controller
  • Ans. 

    A controller is used for handling user requests while an API controller is used for handling API requests.

    • A controller is used for rendering views while an API controller is used for returning data in JSON format.

    • API controllers are usually lighter and faster than regular controllers.

    • API controllers are often used for building RESTful APIs.

    • Examples of API frameworks that use API controllers include Laravel and ASP.NET

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Difference between IEnumerable and IQuriable
  • Ans. 

    IEnumerable is read-only and forward-only while IQueryable is queryable and can be used with LINQ to SQL.

    • IEnumerable is used for in-memory collections while IQueryable is used for querying external data sources.

    • IQueryable allows for deferred execution while IEnumerable does not.

    • IQueryable can be used with LINQ to SQL to translate queries into SQL statements.

    • IEnumerable is simpler and more lightweight than IQueryable.

    • IE...

  • Answered by AI
  • Q2. What is the use of Yield Key word
  • Ans. 

    Yield keyword is used in Python to create generators that can be used to iterate over large datasets without loading them into memory.

    • Yield is used to pause and resume a function's execution.

    • Generators created using yield are memory efficient as they only load data when needed.

    • Yield can be used to implement lazy evaluation.

    • Yield can be used to create infinite sequences.

    • Example: def my_generator(): yield 1; yield 2; yie...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Should prepare OOPS concept, MVC Architeture, Basic Questions from SQL Server

Skills evaluated in this interview

Senior Software Developer Interview Questions asked at other Companies

Q1. Intersection of Linked List Problem You are provided with two singly linked lists containing integers, where both lists converge at some node belonging to a third linked list. Your task is to determine the data of the node at which they sta... read more
View answer (1)
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. Describe Life cycle in react
  • Ans. 

    React has three main phases in its lifecycle: mounting, updating, and unmounting.

    • Mounting: when a component is created and inserted into the DOM

    • Updating: when a component is updated due to changes in props or state

    • Unmounting: when a component is removed from the DOM

    • Lifecycle methods can be used to perform actions at each phase, such as componentDidMount() or componentWillUnmount()

    • React also has error handling methods,

  • Answered by AI
  • Q2. Explain strict mode in javascript and it's use
  • Ans. 

    Strict mode is a way to write secure and optimized JavaScript code.

    • Enables catching of silent errors

    • Disallows duplicate property names or parameters

    • Prevents use of undeclared variables

    • Makes `eval()` safer to use

    • Throws errors on invalid usage of `this` keyword

  • Answered by AI
Round 3 - Assignment 

CURD operations along with implementation of a mock UI

Interview Preparation Tips

Interview preparation tips for other job seekers - They are doing good job. If possible try to send a rejection mail along with the reason if candidate is not selected.

Skills evaluated in this interview

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (203)
Round 1 - Technical 

(1 Question)

  • Q1. Basics .net , c#, sql
Round 2 - Technical 

(1 Question)

  • Q1. Current Project Details, Roles and some technical questions too
Round 3 - HR 

(1 Question)

  • Q1. Package Discussion and Other basic details

Interview Preparation Tips

Interview preparation tips for other job seekers - Make sure your basics are strong and should be confident to explain about the current project and its technical details.

Senior Software Engineer Interview Questions asked at other Companies

Q1. Tell me about yourself. What technology are you using? What is a Collection? What are the different types of collection there? What is the difference between ArrayList and LinkedList What are the basic building blocks of Stream operators, s... read more
View answer (2)
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Jun 2023. There were 2 interview rounds.

Round 1 - HR 

(1 Question)

  • Q1. Basic details about me
Round 2 - Assignment 

Creating a welcome letter

HR Associate Operations Interview Questions asked at other Companies

Q1. HR tools used
View answer (1)

Fingent interview questions for popular designations

 Software Engineer

 (4)

 DOT NET Developer

 (3)

 Project Manager

 (2)

 Software Developer

 (2)

 Junior Software Developer

 (2)

 Senior Software Developer

 (1)

 Backend Developer

 (1)

 Senior Software Engineer

 (1)

Interview Questionnaire 

1 Question

  • Q1. State props,push notification.

Junior Software Developer Interview Questions asked at other Companies

Q1. Given n coins for two players playing a game. Each player picks coins from the given n coins in such a way that he can pick 1 to 5 coins in one turn and the game continues for both the players. The player who picks the last coin looses the ... read more
View answer (3)

I applied via Indeed and was interviewed in Nov 2020. There were 4 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. What is useEffect
  • Ans. 

    useEffect is a hook in React that allows you to perform side effects in functional components.

    • useEffect is used to manage component lifecycle in functional components.

    • It takes two arguments: a function that performs the side effect and an array of dependencies.

    • The function passed to useEffect is called after every render.

    • The array of dependencies is used to determine when the effect should be re-run.

    • If the array is emp...

  • Answered by AI
  • Q2. What is promise
  • Ans. 

    A promise is an object representing the eventual completion or failure of an asynchronous operation.

    • Promises are used to handle asynchronous operations such as fetching data from a server.

    • They provide a cleaner alternative to callbacks.

    • Promises have three states: pending, fulfilled, and rejected.

    • They can be chained together using .then() and .catch() methods.

    • Promises can also be used with async/await syntax.

  • Answered by AI
  • Q3. What is strict mode
  • Ans. 

    Strict mode is a way to write secure and optimized JavaScript code.

    • Enables modern JavaScript features

    • Prevents the use of undeclared variables

    • Throws errors for unsafe actions

    • Makes code more optimized for performance

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Was nice and pleasent

Skills evaluated in this interview

Junior Software Developer Interview Questions asked at other Companies

Q1. Given n coins for two players playing a game. Each player picks coins from the given n coins in such a way that he can pick 1 to 5 coins in one turn and the game continues for both the players. The player who picks the last coin looses the ... read more
View answer (3)

I applied via Company Website and was interviewed in Mar 2020. There were 4 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. About previous projects and challenges in those
  • Q2. About how to create backends which can take high traffic
  • Q3. Security related. SQL injection, XSS etc.

Interview Preparation Tips

Interview preparation tips for other job seekers - THink about your older projects and how you worked on them. It is a very comfortable discussion. Does not feel like interview.

Backend Developer Interview Questions asked at other Companies

Q1. Vertical Order Traversal of a Binary Tree Given a binary tree, your task is to return the vertical order traversal of its nodes' values. For each node located at a position (X, Y), its left child will be at (X-1, Y-1) and its right child wi... read more
View answer (1)

I applied via Naukri.com and was interviewed in Jun 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. About projects

Interview Preparation Tips

Interview preparation tips for other job seekers - Be transparent and real. Don't bluff :)
Fingent has got a good number of people in the interview panel(my personal experience)
Even if you do not know the answer, the panel will explain it to you.

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (203)

Project Lead Interview Questions & Answers

user image Anonymous

posted on 17 Jul 2020

I applied via Indeed and was interviewed before Jul 2019. There were 5 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. Challenges faced on previous projects
  • Ans. 

    Tight deadlines, communication issues, scope changes

    • Tight deadlines required efficient time management and prioritization

    • Communication issues led to misunderstandings and delays

    • Scope changes impacted project timeline and resources

    • Example: In one project, we had to deliver a product within a short timeframe which required us to adjust our plans constantly

  • Answered by AI
  • Q2. How do I build rapport with clients?
  • Ans. 

    Building rapport with clients requires active listening, empathy, and clear communication.

    • Listen actively to their needs and concerns

    • Show empathy by acknowledging their feelings and perspectives

    • Communicate clearly and transparently about expectations and progress

    • Find common ground and shared interests to establish a connection

    • Be respectful and professional in all interactions

  • Answered by AI
  • Q3. Tripple constraints specific to my projects.
  • Ans. 

    The triple constraints of my projects are time, cost, and scope.

    • Time: The project must be completed within a specific timeframe.

    • Cost: The project must be completed within a specific budget.

    • Scope: The project must meet the specific requirements and objectives.

    • Changes to one constraint may affect the others.

    • Example: If the scope of the project is increased, the time and cost may also increase.

  • Answered by AI
  • Q4. How did I handle requests that were not part of agreed scope?
  • Ans. 

    I handle requests outside scope by evaluating impact, discussing with stakeholders, and proposing solutions.

    • Evaluate the impact of the request on the project timeline and budget

    • Discuss the request with stakeholders to understand their needs and expectations

    • Propose solutions that balance the request with the project's goals and constraints

    • Document the decision-making process and communicate it to the team

    • Ensure that any

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Know your projects well. Tech and UX knowledge is good to have. Be honest. Interviews are more like discussions.

Project Lead Interview Questions asked at other Companies

Q1. PowerBuilder 1. How to build app in one click? 2. How to read data from web page? 3. Have you used any PDF tools 4. How to save data from datawindow to XML 5. How to read mail from Outlook 6. How you migrate to new version.net SQL 1. Perfor... read more
View answer (1)

I applied via Referral and was interviewed in Nov 2018. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Was asked to present a very interesting case as a role play. Requested to conceptualize and present a feature for a software to a client. The interviewers were looking for my approach and ability to presen...
  • Q2. Had to describe the previous projects I worked with, my role, the challenges I faced etc.

Interview Preparation Tips

Interview preparation tips for other job seekers - I received a call from the HR, who scheduled a session at their Kochi Office. The process started with a short 1 to 1, following which I was given a role play scenario. This was followed by an open discussion with my future colleagues and manager. They are happy to give you feedback. Tips: Be honest, be yourself.

Project Manager Interview Questions asked at other Companies

Q1. What is success & what is failure to you? How do you handle failure? - not much interviewer asks such questions, but I believe these are very important questions, if you want to succeed.
View answer (1)
Contribute & help others!
anonymous
You can choose to be anonymous

Fingent Interview FAQs

How many rounds are there in Fingent interview?
Fingent interview process usually has 2-3 rounds. The most common rounds in the Fingent interview process are Technical, HR and Resume Shortlist.
How to prepare for Fingent 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 Fingent. The most common topics and skills that interviewers at Fingent expect are Javascript, CSS, Angular, HTML and GIT.
What are the top questions asked in Fingent interview?

Some of the top questions asked at the Fingent interview -

  1. How did I handle requests that were not part of agreed scop...read more
  2. What is the difference between controller and API control...read more
  3. How do I build rapport with clien...read more

Recently Viewed

INTERVIEWS

AltaBioscience

No Interviews

LIST OF COMPANIES

Sona Comstar

Overview

JOBS

Khoros

No Jobs

INTERVIEWS

Khoros

No Interviews

SALARIES

Khoros

SALARIES

MASAI School

INTERVIEWS

RGBSI

No Interviews

SALARIES

Khoros

SALARIES

Sona Comstar

INTERVIEWS

HYWEL Paints

No Interviews

Tell us how to improve this page.

Fingent Interview Process

based on 11 interviews

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Infosys Interview Questions
3.6
 • 7.5k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
LTIMindtree Interview Questions
3.8
 • 2.9k Interviews
Mphasis Interview Questions
3.4
 • 788 Interviews
Backbase Interview Questions
3.9
 • 22 Interviews
View all

Fingent Reviews and Ratings

based on 217 reviews

4.4/5

Rating in categories

4.2

Skill development

4.2

Work-life balance

3.9

Salary

4.5

Job security

4.3

Company culture

3.7

Promotions

4.2

Work satisfaction

Explore 217 Reviews and Ratings
Test Specialist

Kochi

0-2 Yrs

Not Disclosed

Lead Business Development

Kochi

8-10 Yrs

Not Disclosed

Explore more jobs
Software Engineer
187 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
50 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Specialist Testing
40 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Developer
23 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Team Lead
20 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Fingent with

TCS

3.7
Compare

Infosys

3.6
Compare

Wipro

3.7
Compare

HCLTech

3.5
Compare
Did you find this page helpful?
Yes No
write
Share an Interview
Rate your experience using AmbitionBox
Terrible
Terrible
Poor
Poor
Average
Average
Good
Good
Excellent
Excellent