Upload Button Icon Add office photos

Filter interviews by

Narvar India Senior Software Engineer Interview Questions, Process, and Tips

Updated 25 Aug 2024

Top Narvar India Senior Software Engineer Interview Questions and Answers

Narvar India Senior Software Engineer Interview Experiences

2 interviews found

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Recruitment Consulltant and was interviewed in Jul 2024. There were 2 interview rounds.

Round 1 - Technical 

(3 Questions)

  • Q1. Concept of Hoisting in Javascript
  • Ans. 

    Hoisting is a JavaScript behavior where variable and function declarations are moved to the top of their containing scope during compilation.

    • Variable declarations are hoisted to the top of their scope, but not their initializations.

    • Function declarations are fully hoisted, including their definitions.

    • Hoisting can lead to unexpected behavior if not understood properly.

  • Answered by AI
  • Q2. What is arrow function
  • Ans. 

    Arrow functions are a concise way to write functions in JavaScript.

    • Arrow functions are anonymous functions defined using the '=>' syntax.

    • They have a shorter syntax compared to traditional function expressions.

    • Arrow functions do not have their own 'this' keyword, instead they inherit it from the parent scope.

  • Answered by AI
  • Q3. Polyfill of Promise
  • Ans. 

    Polyfill of Promise is a code that adds Promise functionality to browsers that do not support it natively.

    • Polyfill is a piece of code that provides the technology that you expect the browser to provide natively.

    • Polyfill for Promise adds Promise functionality to browsers that do not support it, allowing developers to use Promises in their code.

    • Examples of Promise polyfills include 'es6-promise' and 'promise-polyfill'.

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Implementation of carousel
  • Ans. 

    Implementing a carousel for displaying multiple images or content in a rotating manner.

    • Use a library like Slick or Owl Carousel for easy implementation

    • Ensure images/content are responsive for different screen sizes

    • Add navigation arrows or dots for user interaction

    • Consider adding autoplay feature with customizable speed

    • Optimize performance by lazy loading images

  • Answered by AI

Skills evaluated in this interview

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

FInd 3 numbers in an array whose sum = k.

Round 2 - Technical 

(2 Questions)

  • Q1. Past projects I have worked on
  • Q2. Design a Elevator system
  • Ans. 

    Design an Elevator system for efficient vertical transportation

    • Consider the number of floors in the building

    • Implement a scheduling algorithm to optimize elevator movement

    • Include safety features such as emergency stop button

    • Allow for both manual and automatic operation

    • Consider peak hours and traffic flow in the building

  • Answered by AI

Skills evaluated in this interview

Senior Software Engineer Interview Questions Asked at Other Companies

asked in DBS Bank
Q1. Tell me about yourself. What technology are you using? What is a ... read more
asked in GlobalLogic
Q2. MapSum Pair Implementation Create a data structure named 'MapSum' ... read more
asked in UST
Q3. Nth Prime Number Problem Statement Find the Nth prime number give ... read more
asked in Capgemini
Q4. Pascal's Triangle Construction You are provided with an integer ' ... read more
Q5. K Largest Elements Problem Statement You are given an integer k a ... read more

Interview questions from similar companies

I applied via Company Website and was interviewed in Nov 2020. There were 5 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Can you walk me through your resume?

Interview Preparation Tips

Interview preparation tips for other job seekers - You will be asked only on the skills you have mentioned in your CV. Prepare well before the interview. People who had taken the interview was my current manager and senior manager. They are very friendly with everyone. Just keep in mind that you have to perform in such a way like you are talking to a friend. All the very best.

I applied via Referral and was interviewed in Oct 2020. There were 5 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. How to handle an impatient customer?
  • Ans. 

    Handling an impatient customer requires active listening, empathy, and clear communication.

    • Listen actively to the customer's concerns and acknowledge their frustration.

    • Show empathy by putting yourself in their shoes and understanding their perspective.

    • Communicate clearly and honestly about the situation and what steps can be taken to resolve it.

    • Offer solutions or alternatives to help alleviate their frustration.

    • Follow ...

  • Answered by AI
  • Q2. What to do if the engineers have not given any ETA for the fix , how can you give an update to the customer?
  • Ans. 

    Communicate with the customer and provide regular updates on the progress of the issue.

    • Request an update from the engineers and communicate the same to the customer.

    • Provide an estimated timeline based on the severity of the issue and the resources available.

    • Ensure that the customer is aware of any potential delays or roadblocks.

    • Offer alternative solutions or workarounds if possible.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - I could just say that be yourself and answer the question practically and be confident. The most important thing is to be sound enough in communication

I applied via Campus Placement and was interviewed before May 2020. There were 5 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Basic SQL Queries, some very basic Java questions, the interviewer herself didn't know much about coding in general.

Interview Preparation Tips

Interview preparation tips for other job seekers - Yodlee is a big company will several departments, every department has its own requirements.

I was inducted into the IAE department as an ASE through pool-campus placement.

The issue at Yodlee is that it's IAE department that they actively hire for, is the worst department as far as technical growth and knowledge are concerned. There is no learning. Hence usually the interviewers (mostly the directors, managers, and leads in IAE) who have been in the organization for a very large part of their career, are also very weak as far as their technical skills are concerned. Their political and toxic managerial skills skyrocket though. They stay there for too long and become virtually outdated in terms of their technical skills.

Therefore you can rest be assured that the interview quality will be well below average as far as IAE is concerned. I am not sure about other departments, but I would not assume otherwise. I would suggest, if you have to absolutely join IAE in Yodlee, just an average preparation would be more than enough. If you have other opportunities, I would suggest prioritizing them over Yodlee.

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.
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Company Website and was interviewed in Mar 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Implement readers-writer lock
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. What is VTable and VPtr
  • Ans. 

    VTable is a table of function pointers used in object-oriented programming to implement polymorphism. VPtr is a pointer to the VTable.

    • VTable is used to store pointers to virtual functions in a class.

    • VPtr points to the VTable of an object to enable dynamic dispatch of virtual functions.

    • VTable and VPtr are used in C++ to implement polymorphism and dynamic binding.

  • Answered by AI

Skills evaluated in this interview

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

I applied via Naukri.com

Round 1 - Technical 

(1 Question)

  • Q1. Technical questions that includes coding as well
Round 2 - Technical 

(1 Question)

  • Q1. Technical and Managerial discussion
Round 3 - HR 

(1 Question)

  • Q1. Salary discussion

Software Engineer Interview Questions & Answers

CyberArk user image Prasad Ashok Ajmire

posted on 29 Feb 2024

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

I applied via Company Website and was interviewed in Jan 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. List tuple python memory management Codig question RestAPIs HTTP methods State Management UI

Narvar India Interview FAQs

How many rounds are there in Narvar India Senior Software Engineer interview?
Narvar India interview process usually has 2 rounds. The most common rounds in the Narvar India interview process are Technical and Coding Test.
How to prepare for Narvar India Senior Software Engineer 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 Narvar India. The most common topics and skills that interviewers at Narvar India expect are C#, Java, MySQL, Performance Tuning and Postgresql.
What are the top questions asked in Narvar India Senior Software Engineer interview?

Some of the top questions asked at the Narvar India Senior Software Engineer interview -

  1. What is arrow funct...read more
  2. Concept of Hoisting in Javascr...read more
  3. Implementation of carou...read more

Tell us how to improve this page.

Narvar India Senior Software Engineer Interview Process

based on 2 interviews

Interview experience

4
  
Good
View more
Narvar India Senior Software Engineer Salary
based on 5 salaries
₹39.8 L/yr - ₹45.5 L/yr
171% more than the average Senior Software Engineer Salary in India
View more details

Narvar India Senior Software Engineer Reviews and Ratings

based on 1 review

5.0/5

Rating in categories

3.0

Skill development

5.0

Work-life balance

4.0

Salary

5.0

Job security

5.0

Company culture

3.0

Promotions

4.0

Work satisfaction

Explore 1 Review and Rating
Project Manager
9 salaries
unlock blur

₹21 L/yr - ₹30 L/yr

Implementation Consultant
6 salaries
unlock blur

₹14 L/yr - ₹22 L/yr

Software Developer
5 salaries
unlock blur

₹12 L/yr - ₹35 L/yr

Technical Support Engineer
5 salaries
unlock blur

₹7 L/yr - ₹16 L/yr

Senior Software Engineer
5 salaries
unlock blur

₹39.8 L/yr - ₹45.5 L/yr

Explore more salaries
Compare Narvar India with

Yodlee

3.8
Compare

Fingent

4.4
Compare

Bravura Solutions

3.9
Compare

CloudMoyo

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