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

Updated 24 Jun 2025
Popular Designations

19 Interview questions

A Junior Software Developer was asked
Q. What is a 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.

View all Junior Software Developer interview questions
A Junior Software Developer was asked
Q. 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

View all Junior Software Developer interview questions
A Junior Software Developer was asked
Q. 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 i...

View all Junior Software Developer interview questions
A Backend Developer was asked
Q. How do you create backends that can handle high traffic?
Ans. 

Designing backends for high traffic involves scalability, load balancing, caching, and efficient database management.

  • Use load balancers to distribute traffic across multiple servers, e.g., AWS Elastic Load Balancing.

  • Implement caching strategies with tools like Redis or Memcached to reduce database load.

  • Design microservices architecture to isolate services and scale them independently.

  • Optimize database queries and ...

View all Backend Developer interview questions
A Project Lead was asked
Q. How did you handle requests that were not part of the 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 tha...

View all Project Lead interview questions
A Project Lead was asked
Q. 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

View all Project Lead interview questions
A 3D Artist was asked 3w ago
Q. What is your vision for augmented reality (AR), virtual reality (VR), and the latest emerging technologies? Could you elaborate on the potential of artificial intelligence (AI) in the design field and provi...
Ans. 

Exploring the transformative potential of AR, VR, and AI in design, enhancing creativity and efficiency in 3D workflows.

  • AR can enhance real-world experiences, like using apps to visualize furniture in your home before purchase.

  • VR offers immersive environments for training simulations, such as medical procedures or architectural walkthroughs.

  • AI tools like DALL-E and Midjourney can generate concept art, speeding up ...

View all 3D Artist interview questions
Are these interview questions helpful?
A Senior Software Developer was asked
Q. 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.

View all Senior Software Developer interview questions
A Project Lead was asked
Q. 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.

View all Project Lead interview questions

Fingent Interview Experiences

25 interviews found

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Job Portal and was interviewed in Feb 2024. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Asked basic and medium level .net core questions.
  • Q2. Azure SQL c# basic questions.
Round 2 - Technical 

(1 Question)

  • Q1. Managerial round questions abour project and roles
Round 3 - HR 

(1 Question)

  • Q1. Salary discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - Had 4 year of experience asked 10 LPA would have agreed for 8, they offered 6 . I have mentioned 10LPA in all the calls with HR, wasted 3 days for a low offer.They also need immediate joiner but can only offer low salary.total interview process took about a month.
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview in Dec 2024, where I was asked the following questions.

  • Q1. Basics of coding
  • Q2. Project based questions
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(5 Questions)

  • Q1. Almost asked the basics of .net, c#, ADO. NET, SQL
  • Q2. Difference between ref and out keywords?
  • Ans. 

    The ref and out keywords are used in C# to pass arguments by reference instead of by value.

    • The ref keyword is used to pass a variable by reference, allowing the called method to modify the value of the variable.

    • The out keyword is similar to ref, but it is used when the called method needs to assign a value to the variable being passed.

    • The ref keyword requires the variable to be initialized before passing it to the meth...

  • Answered by AI
  • Q3. Overloading and overriding concept and explanation ?
  • Ans. 

    Overloading is having multiple methods with the same name but different parameters. Overriding is implementing a method in a derived class with the same name and signature as in the base class.

    • Overloading allows a class to have multiple methods with the same name but different parameters.

    • Overriding allows a derived class to provide a different implementation of a method that is already defined in the base class.

    • Overloa...

  • Answered by AI
  • Q4. SQL join queries with one example ?
  • Ans. 

    SQL join queries are used to combine rows from two or more tables based on a related column between them.

    • Join queries are used to retrieve data from multiple tables in a single query.

    • Common types of joins include INNER JOIN, LEFT JOIN, RIGHT JOIN, and FULL JOIN.

    • Join conditions are specified using the ON keyword, which defines the column(s) to join on.

    • Example: SELECT * FROM table1 INNER JOIN table2 ON table1.column = ta...

  • Answered by AI
  • Q5. ADO .NET database calling steps ?
  • Ans. 

    ADO .NET database calling steps involve establishing a connection, creating a command object, executing the command, and handling the results.

    • Establish a connection to the database using a connection string

    • Create a command object to specify the SQL query or stored procedure to be executed

    • Execute the command to retrieve or modify data in the database

    • Handle the results by reading data from a DataReader or updating data u...

  • Answered by AI

Skills evaluated in this interview

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

I applied via Referral and was interviewed in Dec 2023. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Questions related to my project ,OOPS,then questions related to every skills in my resume (C# ,SQL , entity framework core)
Round 2 - Technical 

(1 Question)

  • Q1. Linq query , SQL questions,challenge faced in project

Interview Questions & Answers

user image Gilsa Mk

posted on 31 Oct 2023

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

I applied via LinkedIn and was interviewed in Oct 2023. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Technical 

(1 Question)

  • Q1. Explain what all responsibilities handled in the current company
Round 3 - Technical 

(1 Question)

  • Q1. Given a use case , need to prepare the wireframe and explain as if to the client
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Authentication,Authorization,Dependency Injection,

QA Analyst Interview Questions & Answers

user image Anonymous

posted on 8 Jan 2025

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before Jan 2024. There were 4 interview rounds.

Round 1 - HR 

(1 Question)

  • Q1. Asked about basic details during the first call, primarily to cross-check your resume.
Round 2 - Technical 

(1 Question)

  • Q1. A technical test was given like a case study.
Round 3 - One-on-one 

(1 Question)

  • Q1. Met a senior employee and had a discussion on various things. Questions based on the case study were asked.
Round 4 - HR 

(1 Question)

  • Q1. The final interview with HR was more like attitude checking. Had a casual conversion shared preferences and all.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be yourself and know your basics and current trends in the industry. The teams at Fingent are really friendly and approachable and will be available to help you at every point.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Jan 2023. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Basics Oops concepts and SQL queries along with currently working projects stacks
Round 2 - Technical 

(1 Question)

  • Q1. More in-depth technical questions use of reflections etc
Round 3 - HR 

(1 Question)

  • Q1. Usual HR interviews company values etc

Interview Preparation Tips

Interview preparation tips for other job seekers - The key is not answers all questions correctly key is the approach you take to solve the problem focus on that.

3D Artist Interview Questions & Answers

user image Anonymous

posted on 24 Jun 2025

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

I appeared for an interview before Jun 2024, where I was asked the following questions.

  • Q1. How will you manage your time when assigned a large task, and what strategies will you implement to contribute effectively to the company?
  • Ans. 

    I prioritize tasks, set milestones, and maintain open communication to manage large projects effectively.

    • Break down the task into smaller, manageable milestones to track progress.

    • Use project management tools like Trello or Asana to visualize tasks and deadlines.

    • Set specific daily or weekly goals to maintain focus and motivation.

    • Regularly communicate with team members for feedback and collaboration.

    • Allocate time for rev...

  • Answered by AI
  • Q2. What is your vision for augmented reality (AR), virtual reality (VR), and the latest emerging technologies? Could you elaborate on the potential of artificial intelligence (AI) in the design field and prov...
  • Ans. 

    Exploring the transformative potential of AR, VR, and AI in design, enhancing creativity and efficiency in 3D workflows.

    • AR can enhance real-world experiences, like using apps to visualize furniture in your home before purchase.

    • VR offers immersive environments for training simulations, such as medical procedures or architectural walkthroughs.

    • AI tools like DALL-E and Midjourney can generate concept art, speeding up the i...

  • Answered by AI
  • Q3. What are your weaknesses and strengths?
  • Ans. 

    I possess strong attention to detail and creativity, but I sometimes struggle with time management under tight deadlines.

    • Strength: Strong attention to detail - I ensure every texture and model is polished, which enhances the overall quality of my work.

    • Strength: Creativity - I often come up with unique concepts that push the boundaries of traditional 3D art.

    • Weakness: Time management - I tend to spend too long perfecting...

  • Answered by AI
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
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 - Technical 

(1 Question)

  • Q1. Tell about Oops concepts
Round 3 - Technical 

(1 Question)

  • Q1. Will ask coding related
Round 4 - HR 

(1 Question)

  • Q1. What is Expected salary

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 Fingent?
Ask anonymously on communities.

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, Angular, CSS, 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 your vision for augmented reality (AR), virtual reality (VR), and the l...read more
  3. What is the difference between controller and API control...read more
How long is the Fingent interview process?

The duration of Fingent 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

4.1/5

based on 15 interview experiences

Difficulty level

Easy 10%
Moderate 80%
Hard 10%

Duration

Less than 2 weeks 50%
2-4 weeks 30%
4-6 weeks 20%
View more

Interview Questions from Similar Companies

Backbase Interview Questions
3.7
 • 23 Interviews
3Pillar Global Interview Questions
3.2
 • 20 Interviews
Khoros Interview Questions
3.7
 • 20 Interviews
Bottomline Interview Questions
3.4
 • 20 Interviews
Mentor Graphics Interview Questions
4.0
 • 18 Interviews
Fourkites Interview Questions
3.7
 • 18 Interviews
Yodlee Interview Questions
3.8
 • 17 Interviews
ValGenesis Interview Questions
3.2
 • 17 Interviews
View all

Fingent Reviews and Ratings

based on 235 reviews

4.1/5

Rating in categories

4.0

Skill development

4.1

Work-life balance

3.7

Salary

4.2

Job security

4.1

Company culture

3.6

Promotions

4.0

Work satisfaction

Explore 235 Reviews and Ratings
Senior SAP MM Consultant (Onsite)

Bangalore / Bengaluru,

Saudi arabia

5-8 Yrs

Not Disclosed

Senior Ios Developer (Onsite)

United arab emirates

8-12 Yrs

Not Disclosed

Senior Android Developer (Onsite)

United arab emirates

8-12 Yrs

Not Disclosed

Explore more jobs
Software Engineer
205 salaries
unlock blur

₹4.2 L/yr - ₹9 L/yr

Senior Software Engineer
59 salaries
unlock blur

₹8.3 L/yr - ₹15 L/yr

Specialist Testing
45 salaries
unlock blur

₹3.2 L/yr - ₹7.5 L/yr

Software Developer
24 salaries
unlock blur

₹4.7 L/yr - ₹10.9 L/yr

Team Lead
22 salaries
unlock blur

₹9.9 L/yr - ₹17.5 L/yr

Explore more salaries
Compare Fingent with

Yodlee

3.9
Compare

Bravura Solutions

3.9
Compare

3Pillar Global

3.2
Compare

ValGenesis

3.2
Compare
write
Share an Interview