Upload Button Icon Add office photos

Filter interviews by

Narvar India Software Engineer2 Interview Questions and Answers for Freshers

Updated 27 Dec 2024

Narvar India Software Engineer2 Interview Experiences for Freshers

1 interview found

Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Referral and was interviewed in Nov 2024. There were 3 interview rounds.

Round 1 - Coding Test 

LLD about Order Notification System

Round 2 - One-on-one 

(1 Question)

  • Q1. HLD of Zoomcar and discussing Tradeoff and some Behavioural Questions
Round 3 - One-on-one 

(1 Question)

  • Q1. Interview with VP of Engineering general discussion

Interview questions from similar companies

Interview experience
1
Bad
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Referral and was interviewed in Feb 2024. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. DSA based Questions- Strings, Stack and Linked List
Round 2 - Technical 

(1 Question)

  • Q1. DSA and Conceptual Based Question
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Nov 2023. There was 1 interview round.

Round 1 - Coding Test 

Basic maths question - given a number a and b get the nth number which is divisible by both a and b. And one sql query of concatinating the string in the column results.

Other - which movie you watched?
why do you watch?
who is your role model?
Why? What? How? Where?
Silly questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't join
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Referral and was interviewed before May 2023. There were 2 interview rounds.

Round 1 - Coding Test 

Code the LRU cache on hacker rank

Round 2 - One-on-one 

(1 Question)

  • Q1. Code the tail -f logger
  • Ans. 

    Implement a tail -f logger in code

    • Use a file pointer to open the log file

    • Read the file line by line and print new lines as they are added

    • Use a loop to continuously check for new lines in the file

  • Answered by AI

Skills evaluated in this interview

I was interviewed in Sep 2021.

Round 1 - Video Call 

(1 Question)

Round duration - 60 minutes
Round difficulty - Medium

The round was technical round and it was held on google meet around 1 pm

  • Q1. Maximum Sum Rectangle

    You are given an M X N matrix of integers ARR. Your task is to find the maximum sum rectangle.

    Maximum sum rectangle is a rectangle with the maximum value for the sum of integers pr...

  • Ans. Brute force

    In this approach, we'll try to consider each rectangle that can be formed using elements of the array. To do this we fix (X1,Y1) coordinates of starting vertex and iterate through the matrix for every pair (X2,Y2) as the coordinates of ending vertex. Now we have a rectangle with coordinates (X1,Y1), (X1,Y2), (X2,Y1) and (X2,Y2).

    We'll find the sum of elements within this rectangle and compare it with MAXSUM. ...

  • Answered Anonymously
Round 2 - Video Call 

(1 Question)

Round duration - 60 minutes
Round difficulty - Medium

It was managerial round and took place around 3 pm

  • Q1. Infix to Postfix

    You are given a string EXP which is a valid infix expression. Convert the given infix expression to postfix expression.

    Infix expression is of the form a op b. Where operator is is betwe...

  • Ans. Stack

    We will scan the expression from left to write and if we encounter an operand we will append it to our answer. If we encounter an operator we will pop all the operators with equal or higher precedence and append them to our answer. And push the current operator. In the end, we will empty the stack.

    Order of precedence = [ ‘^’, ‘*’ and ‘/’, ‘+’ and ‘-’, ‘(’, ‘)’]

    Order of precedence [ link ]

    The algorithm will be-

    1. ANS ...
  • Answered Anonymously

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Indian Institute of Technology Patna. I applied for the job as SDE - Intern in BangaloreEligibility criteria7 CGPA , Computer Science branchEnvestnet | Yodlee India interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, C++, Java, Object Oriented Programming, PointersTime required to prepare for the interview - 0.5 MonthsInterview preparation tips for other job seekers

Tip 1 : Java concepts should be strong
Tip 2 : OOPS
Tip 3 : Projects should have scalability

Application resume tips for other job seekers

Tip 1 : Projects detail should be short and precise
Tip 2 : Don't fake technical skills

Final outcome of the interviewSelected

Skills evaluated in this interview

I applied via Referral and was interviewed in Sep 2021. There were 2 interview rounds.

Round 1 - Technical 

(3 Questions)

  • Q1. Question from java string, collection. multithreading
  • Q2. Few question from Spring boot and hibernate
  • Q3. Project related question
Round 2 - Mangerial 

(2 Questions)

  • Q1. Question from behavioral point of view
  • Q2. Project related question

Interview Preparation Tips

Topics to prepare for 3Pillar Global Software Engineer II interview:
  • Java
  • SQL
  • React.Js
  • Spring
  • Spring Boot
Interview preparation tips for other job seekers - interviewer are cool and always supportive.

I was interviewed in Apr 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 120 Minutes
Round difficulty - Medium

I was MCQ + Coding round, Their were MCQ Based on DSA, Aptitude and 2 easy coding questions.

  • Q1. Ninja Competition

    Our hero Ninja is organizing a coding competition where only two teams can participate simultaneously. To make the competition interesting and fair, both the teams should have an equal nu...

  • Ans. Brute Force

    We will iterate from 1 to ‘N’ and count the number of even divisors and odd divisors. If they are equal, we will return true, else false.

     

    Algorithm:

     

    1. Declare two variables, ‘Odd_Count’ and ‘Even_Count’, and initialize them with zero.
    2. Start iterating from 1 to ‘N’.
    3. If the current iterator ( say i ) is a divisor of ‘N’ ( N % i == 0 ):
      1. If ‘i’ is odd, increase the ‘Odd_Count’ by 1.
      2. If ‘i’ is even, increase ...
  • Answered Anonymously
  • Q2. Help Bob Out!

    Bob has just turned 18 years old and has opened a Bank account. However, since he has just opened his bank account he is not very experienced about the working of banks, therefore he asks for...

  • Ans. Brute Force

    To check whether the string is a valid IFSC Code or not we can check every character of the string explicitly and check whether the string is in the correct format or not.

     

    Algorithm:-

    1. If the length of the string is not equal to 11, return False.
    2. Else, iterate from the first index to the fourth index.
      1. Check whether the ASCII values of the characters lie between 65 - 90. If not, return False.
    3. If yes, check wh...
  • Answered Anonymously
Round 2 - Video Call 

Round duration - 50 Minutes
Round difficulty - Easy

The nature of the interviewer was very kind. The test was proctored, our webcam and mic were on, and shared my screen.

Round 3 - Video Call 

Round duration - 50 minutes
Round difficulty - Easy

The nature of the interviewer was very kind. The test was proctored, our webcam and mic were on, and shared my screen.

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in BangaloreEligibility criteriaNo criteriaBottomline Technologies interview preparation:Topics to prepare for the interview - Data Structure, Algorithms, Development, Programming Languages, OOPsTime required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Tip 1 : Be strong at your basics.
Tip 2 : Do at least 2 projects and ask to find answers like why are you choosing this tech stack? why did not you choose its alternatives Know your project in and out because they might ask you for a modification in your project?

Application resume tips for other job seekers

Tip 1 : Have some projects on your resume.
Tip 2 : Do not put false things on your resume.
Tip 3 : Try to keep a single-page resume.

Final outcome of the interviewRejected

Skills evaluated in this interview

I was interviewed in Mar 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 60 Minutes
Round difficulty - Easy

The platform was HackerEarth time duration was 1 hour.
2 Coding questions were asked, 30 minutes for each were allotted.

  • Q1. Longest Substring Without Repeating Characters

    Given a string 'S' of length 'L', return the length of the longest substring without repeating characters.

    Example:

    Suppose given input is ...
  • Ans. Brute Force

    In the brute force approach, we will use two nested loops. The outer loop is used to select the starting index of the substring and the inner loop is used to fix the ending index of the substring. After selecting the substring, we will use another loop (or a method) to check whether the substring contains all unique characters or not using a HashSet.

    Space Complexity: O(n)Explanation:

    O(L), where L is the len...

  • Answered Anonymously
  • Q2. Triplets with Given Sum

    You are given an array/list ARR consisting of N integers. Your task is to find all the distinct triplets present in the array which adds up to a given number K.

    An array is said t...

  • Ans. Brute Force
    • The most trivial approach would be to find all triplets of the array and count all such triplets whose ‘SUM’ = 'K'.
    • We can find the answer using three nested loops for three different indexes and check if the values at those indexes sum up to 'K'.
    • Create a set  to keep the track of triplets we have visited. Run first loop from i = 0 to i = ‘N’ - 3, second loop from j = i + 1 to j = ‘N’ - 2 and third loop ...
  • Answered Anonymously
Round 2 - Video Call 

Round duration - 120 Minutes
Round difficulty - Hard

This was a 2 hours round, with the following problem statement. At the end of the allotted time you had give a demo and explain your implementation.

Round 3 - Video Call 

Round duration - 45 Minutes
Round difficulty - Medium

The platform was Zoom, time duration was 45 mins. Started with Tell me something about yourself. I told them, that I like solving algorithms and real life problems.

Round 4 - HR 

Round duration - 20 Minutes
Round difficulty - Easy

Interviewer was very friendly. Asked few questions about myself and then asked questions about what I know about the company.

Interview Preparation Tips

Professional and academic backgroundI completed Information Technology from Guru Gobind Singh Indraprastha University. I applied for the job as SDE - Intern in MumbaiEligibility criteriaAbove 7 CGPABrowserStack interview preparation:Topics to prepare for the interview - Data Structures, Dynamic Programming, Trees, NodeJS, OOPS, OS, MySQLTime required to prepare for the interview - 5 MonthsInterview preparation tips for other job seekers

Tip 1 : Participate in live contests on websites like Codechef, Codeforces etc as much as possible.
Tip 2 : Practice questions from leetcode as mostly questions were asked from that only.
Tip 3 : Revise Computer Science subjects like DBMS, OS & OOPS thoroughly, it'll help you ace last round
Tip 4 : Revise everything about your mentioned internship projects and self projects. Projects hold a great weight in selection.

Application resume tips for other job seekers

Tip 1 : Competitive programming profiles is a must. That'll help you get shortlisted.
Tip 2 : Resume should reflect development and experience in DSA.
Tip 3 : Be genuine in your skills and technologies section, question will be asked from them.

Final outcome of the interviewSelected

Skills evaluated in this interview

I was interviewed in Mar 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

The platform was HackerEarth time duration was 1 hour.
2 Coding questions were asked, 30 minutes for each were allotted.

  • Q1. Longest Substring Without Repeating Characters

    Given a string 'S' of length 'L', return the length of the longest substring without repeating characters.

    Example:

    Suppose given input is ...
  • Ans. 

    The problem asks to find the length of the longest substring without repeating characters in a given string.

    • Use a sliding window approach to iterate through the string and keep track of the characters seen so far.

    • Maintain a set to check for duplicate characters within the current substring.

    • Update the maximum length of the substring whenever a duplicate character is encountered.

    • Continue the process until the end of the ...

  • Answered by AI
  • Q2. Find All Triplets With Zero Sum

    You are given an array Arr consisting of n integers, you need to find all the distinct triplets present in the array which adds up to zero.

    An array is said to have a trip...

  • Ans. 

    The task is to find all distinct triplets in an array that add up to zero.

    • Iterate through the array and fix the first element of the triplet.

    • Use two pointers approach to find the other two elements that sum up to the negative of the fixed element.

    • Skip duplicate elements to avoid duplicate triplets.

    • Return the list of triplets found.

  • Answered by AI
Round 2 - Video Call 

Round duration - 120 Minutes
Round difficulty - Hard

This was a 2 hours round, with the following problem statement. At the end of the allotted time you had give a demo and explain your implementation.

Round 3 - Video Call 

Round duration - 45 Minutes
Round difficulty - Medium

The platform was Zoom, time duration was 45 mins. Started with Tell me something about yourself. I told them, that I like solving algorithms and real life problems.

Interview Preparation Tips

Professional and academic backgroundI completed Information Technology from Guru Gobind Singh Indraprastha University. I applied for the job as SDE - Intern in BengaluruEligibility criteriaNo criteriaBrowserStack interview preparation:Topics to prepare for the interview - Data Structures, Dynamic Programming, Trees, NodeJS, OOPS, OS, MySQLTime required to prepare for the interview - 5 MonthsInterview preparation tips for other job seekers

Tip 1 : Participate in live contests on websites like Codechef, Codeforces etc as much as possible.
Tip 2 : Practice questions from leetcode as mostly questions were asked from that only.
Tip 3 : Revise Computer Science subjects like DBMS, OS & OOPS thoroughly, it'll help you ace last round
Tip 4 : Revise everything about your mentioned internship projects and self projects. Projects hold a great weight in selection.

Application resume tips for other job seekers

Tip 1 : Competitive programming profiles is a must. That'll help you get shortlisted.
Tip 2 : Resume should reflect development and experience in DSA.
Tip 3 : Be genuine in your skills and technologies section, question will be asked from them.

Final outcome of the interviewSelected

Skills evaluated in this interview

Narvar India Interview FAQs

How many rounds are there in Narvar India Software Engineer2 interview for freshers?
Narvar India interview process for freshers usually has 3 rounds. The most common rounds in the Narvar India interview process for freshers are One-on-one Round and Coding Test.

Tell us how to improve this page.

Interview Questions from Similar Companies

Delhivery Interview Questions
3.9
 • 447 Interviews
Ecom Express Interview Questions
3.9
 • 193 Interviews
XpressBees Interview Questions
3.7
 • 153 Interviews
DTDC Express Interview Questions
3.8
 • 143 Interviews
GATI-KWE Interview Questions
4.0
 • 85 Interviews
Rivigo Interview Questions
3.9
 • 72 Interviews
BrowserStack Interview Questions
3.7
 • 45 Interviews
Fingent Interview Questions
4.4
 • 22 Interviews
View all
Narvar India Software Engineer2 Salary
based on 4 salaries
₹34 L/yr - ₹40 L/yr
88% more than the average Software Engineer2 Salary in India
View more details
Project Manager
10 salaries
unlock blur

₹21 L/yr - ₹28.5 L/yr

Technical Business Analyst
6 salaries
unlock blur

₹12 L/yr - ₹16.5 L/yr

Software Developer
5 salaries
unlock blur

₹9.5 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

Delhivery

3.9
Compare

Ecom Express

3.9
Compare

XpressBees

3.7
Compare

Shadowfax Technologies

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