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

16 Interview questions

A DOT NET Developer was asked
Q. Explain SQL join queries with an 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...

View all DOT NET Developer interview questions
A DOT NET Developer was asked
Q. What is the difference between the 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...

View all DOT NET Developer interview questions
A DOT NET Developer was asked
Q. Explain the concepts of overloading and overriding.
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.

  • Ov...

View all DOT NET Developer interview questions
A DOT NET Developer was asked
Q. What are the steps to call a database using ADO.NET?
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 d...

View all DOT NET Developer interview questions
A Senior Software Developer was asked
Q. What is the use of the yield keyword?
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...

View all Senior Software Developer interview questions
A Senior Software Developer was asked
Q. What is the difference between a controller and an 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...

View all Senior Software Developer interview questions
A Senior Software Developer was asked
Q. What is the difference between IEnumerable and IQueryable?
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 IQueryab...

View all Senior Software Developer interview questions
Are these interview questions helpful?
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

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
2w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
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
196 salaries
unlock blur

₹4 L/yr - ₹9 L/yr

Senior Software Engineer
58 salaries
unlock blur

₹8.2 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.5 L/yr - ₹17.5 L/yr

Explore more salaries
Compare Fingent with

Yodlee

3.9
Compare

Bravura Solutions

3.9
Compare

TEOCO Software

3.8
Compare

3Pillar Global

3.2
Compare
write
Share an Interview