Upload Button Icon Add office photos
Engaged Employer

i

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

Finicity Verified Tick

Compare button icon Compare button icon Compare
3.5

based on 99 Reviews

Filter interviews by

Finicity Javascript Developer Interview Questions and Answers

Updated 4 Jun 2022

Finicity Javascript Developer Interview Experiences

1 interview found

I applied via LinkedIn and was interviewed in May 2022. There were 2 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 - Technical 

(1 Question)

  • Q1. All basic dom manipulation questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview was very smooth. But didn't received feedback upto 2 weeks. Later after calling HR he said that i am not selected. Bad experience.

Interview questions from similar companies

Software Engineer Interview Questions & Answers

Preqin user image Vinay Madhamanchi1

posted on 7 Dec 2024

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

Quantitative interview

Round 2 - Coding Test 

Java coding and c language

Round 3 - HR 

(2 Questions)

  • Q1. C language question
  • Q2. Java language question
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Behaviour of js
  • Ans. 

    JavaScript is a dynamic programming language commonly used for web development.

    • JavaScript is a high-level, interpreted language.

    • It is known for its flexibility and ability to manipulate the DOM.

    • Commonly used for client-side scripting in web development.

    • Supports object-oriented, imperative, and functional programming styles.

  • Answered by AI
  • Q2. Call by value, call by reference
Round 2 - Coding Test 

Reverse fibonacci using recursion

Skills evaluated in this interview

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

I was interviewed in Jul 2023.

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 - Coding Test 

3 programs to write in arrays linked lists and trees

Round 3 - Technical 

(1 Question)

  • Q1. Was asked questions on core Java, spring framework, apis and micro services
Round 4 - HR 

(2 Questions)

  • Q1. What expertise will you bring to cme group of you join?
  • Q2. Why are you quitting your current company?
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
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 

(2 Questions)

  • Q1. What is regression testing
  • Ans. 

    Regression testing is the process of testing changes made to a software application to ensure that existing functionality still works.

    • It is performed after making changes to the software

    • It ensures that existing functionality is not affected by the changes

    • It helps to identify any new defects introduced by the changes

    • It can be automated to save time and effort

    • Examples include testing after bug fixes, new feature addition

  • Answered by AI
  • Q2. What is smoke testing
  • Ans. 

    Smoke testing is a preliminary testing to check if the software build is stable enough for further testing.

    • It is a quick and shallow testing of the critical functionalities of the software

    • It is performed to ensure that the build is stable enough for further testing

    • It is usually performed after each build or deployment

    • It helps in identifying major issues early in the development cycle

    • Examples include checking if the app...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Worst company

Skills evaluated in this interview

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

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

Round 1 - Coding Test 

Any online ideas, ds-algo, medium level

Round 2 - Coding Test 

Swift, security framework, api, memory management

Round 3 - One-on-one 

(1 Question)

  • Q1. Basic ds-algo nd technical question
Round 4 - HR 

(1 Question)

  • Q1. Managerial question

I applied via Recruitment Consulltant and was interviewed before Aug 2021. There was 1 interview round.

Round 1 - One-on-one 

(3 Questions)

  • Q1. Sql join and basic sql queries
  • Q2. Basic and Some advance knowledge of Linux command
  • Q3. Previous company project details in depth

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident while giving the answer and if you dont know about the answer than say No to straight forward other wise interviewer make you in trouble.

I applied via Recruitment Consultant and was interviewed in Oct 2019. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. API testing questions, database questions, manual testing, team lead experience

Interview Preparation Tips

Interview preparation tips for other job seekers - I got a call via an agency, first there was telephonic interview with manager where team lead experience, manual testing, activities you performed, database and API testing questions were asked

Then had face to face with almost similar questions

Make sure you are aware about the JD and well prepared with basic fundamentals
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Explain how javascript works
  • Ans. 

    JavaScript is a high-level, interpreted programming language that is used to make web pages interactive.

    • JavaScript is a client-side scripting language that runs in the browser.

    • It is used to add interactivity to websites, such as form validation, animations, and dynamic content.

    • JavaScript code is executed line by line and can manipulate the HTML and CSS of a webpage.

    • It can also communicate with servers to retrieve or se

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Build a to do app in react
  • Ans. 

    A to do app built in React for managing tasks and deadlines.

    • Use React components to create a user interface for adding, editing, and deleting tasks

    • Implement state management to keep track of tasks and their completion status

    • Utilize local storage or a backend server to persist tasks between sessions

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

I applied via campus placement at Delhi College of Engineering (DCE), Delhi and was interviewed in Jun 2022. There were 2 interview rounds.

Round 1 - Technical 

(3 Questions)

  • Q1. Sql vs non sql difference
  • Ans. 

    SQL is a relational database management system while NoSQL is a non-relational database management system.

    • SQL databases are structured and use tables with predefined schema while NoSQL databases are unstructured and use collections or documents.

    • SQL databases use SQL language for querying and managing data while NoSQL databases use various query languages like MongoDB's query language.

    • SQL databases are vertically scalab...

  • Answered by AI
  • Q2. Explain critical section and solution to critical section
  • Ans. 

    Critical section is a code segment that should not be executed by multiple threads simultaneously. Solution is to use synchronization techniques.

    • Critical section is a part of code that should be executed by only one thread at a time

    • Multiple threads accessing critical section can lead to race conditions and data inconsistency

    • Synchronization techniques like locks, semaphores, and monitors can be used to ensure mutual exc...

  • Answered by AI
  • Q3. 2 dsa questions which were of dynamic programming
Round 2 - HR 

(3 Questions)

  • Q1. First give introduction
  • Q2. They asked about family background
  • Q3. Some basic hr questions

Interview Preparation Tips

Topics to prepare for Biz 2 Credit Info Services Softwaretest Engineer interview:
  • SQL
  • OS
  • DBMS
Interview preparation tips for other job seekers - Should revise os, dbms and oops. you should be able to write sql query and know your project well.

Skills evaluated in this interview

Finicity Interview FAQs

How many rounds are there in Finicity Javascript Developer interview?
Finicity interview process usually has 2 rounds. The most common rounds in the Finicity interview process are Resume Shortlist and Technical.

Tell us how to improve this page.

Software Engineer
95 salaries
unlock blur

₹3.9 L/yr - ₹17 L/yr

Senior Software Engineer
59 salaries
unlock blur

₹8.9 L/yr - ₹34.2 L/yr

Software Engineer2
47 salaries
unlock blur

₹7.4 L/yr - ₹23.5 L/yr

Associate
34 salaries
unlock blur

₹2.7 L/yr - ₹4 L/yr

Software Engineer II
23 salaries
unlock blur

₹9 L/yr - ₹21 L/yr

Explore more salaries
Compare Finicity with

Samunnati Financial Intermediation and Services

4.4
Compare

Biz 2 Credit Info Services

4.1
Compare

Fexprime Finance

4.5
Compare

Kalkine

4.1
Compare
Did you find this page helpful?
Yes No
write
Share an Interview