Upload Button Icon Add office photos
Engaged Employer

i

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

Navi Technologies Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Navi Technologies Sde1 Interview Questions and Answers

Updated 10 Nov 2024

Navi Technologies Sde1 Interview Experiences

3 interviews found

Sde1 Interview Questions & Answers

user image Anonymous

posted on 10 Nov 2024

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(1 Question)

  • Q1. Question on DSA and Projects

Sde1 Interview Questions & Answers

user image Anonymous

posted on 12 Apr 2023

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

I applied via campus placement at Birla Institute of Technology and Science (BITS), Pilani and was interviewed before Apr 2022. There were 4 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 - Coding Test 

45 Easy to Medium Analytical questions, 3 Coding questions , 2 easy, last one was stock spanning problem.

Round 3 - Technical 

(1 Question)

  • Q1. 2nd round was proper DSA elimination round. 2 LC Hard questions asked, one from DP and other sliding window minimum
Round 4 - Technical 

(1 Question)

  • Q1. Mixed of OOP, DBMS, DSA and resume grilling

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't lose hope

Sde1 Interview Questions Asked at Other Companies

Q1. DSA and Language Questions: 1. Difference between Arrays and Arra ... read more
asked in Park Plus
Q2. 1. What is a doubly-linked list? And real-world applications.
asked in Amazon
Q3. pid ={3,5,0,1} ppid ={5,4,2,2} process id(pid) ppid=parent proces ... read more
Q4. Given one point and circle how will you find if it's inside circl ... read more
asked in Amazon
Q5. N queen problem with problem statement and dry running of code wi ... read more

Sde1 Interview Questions & Answers

user image Suraj Sahani

posted on 1 Mar 2022

I applied via Company Website and was interviewed in Feb 2022. There were 2 interview rounds.

Round 1 - Assignment 

Create a github app to show app public close pull request.

Round 2 - Technical 

(1 Question)

  • Q1. Trapping Rain Water, Leetcode Question (Hard)

Interview Preparation Tips

Interview preparation tips for other job seekers - Just Go Throught DSA Part,
Andoid Assignment was easy following up with DSA was bit complecated for me.

Interview questions from similar companies

Sde1 Interview Questions & Answers

ACKO user image Anonymous

posted on 20 Jan 2025

Interview experience
2
Poor
Difficulty level
-
Process Duration
2-4 weeks
Result
No response

I applied via LinkedIn and was interviewed in Jul 2024. There was 1 interview round.

Round 1 - Coding Test 

Regex generator- used dp

Sde1 Interview Questions & Answers

Rupeek user image Anonymous

posted on 31 Aug 2024

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

I applied via LinkedIn and was interviewed before Aug 2023. There were 2 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. LinkedList / Tree
  • Q2. DP - Recursion - PnC
Round 2 - One-on-one 

(1 Question)

  • Q1. Projects , Last Exp
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Feb 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

Aptitude questions to be asked in this round

Round 2 - Coding Test 

Write a Java program to sort array in ascending order

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well

Sde1 Interview Questions & Answers

PayU Payments user image madhulika ghosh

posted on 9 Jul 2022

I applied via Naukri.com and was interviewed in Jun 2022. There were 2 interview rounds.

Round 1 - Coding Test 

In apri basic question logicial quesion

Round 2 - Aptitude Test 

The test was easy basic questins they asked

Interview Preparation Tips

Interview preparation tips for other job seekers - ds 1st 2nd desing and 3rd managerial and 4th normal hr. lear ds and also
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
-
Result
No response

I applied via Job Portal

Round 1 - Technical 

(2 Questions)

  • Q1. Explain the react lifecycle functions and how they work
  • Ans. 

    React lifecycle functions are methods that are automatically called at specific points in a component's life cycle.

    • Mounting: constructor, render, componentDidMount

    • Updating: render, componentDidUpdate

    • Unmounting: componentWillUnmount

  • Answered by AI
  • Q2. Css box model, difference between padding and margin
  • Ans. 

    Padding is the space inside the border of an element, while margin is the space outside the border.

    • Padding is used to create space between the content and the border of an element.

    • Margin is used to create space between the border of an element and other elements.

    • Padding affects the size of the content area, while margin affects the positioning of the element.

    • Example: padding: 10px will create 10 pixels of space inside ...

  • Answered by AI
Round 2 - HR 

(2 Questions)

  • Q1. What are your salary expectations in CTC and variables?
  • Q2. Will you relocate to the location required?

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare everything bookish! don't only speak related to your experience

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. LLD/Machine coding - Design a social media application with users, posts, comments, likes, etc. There is also an admin who needs to approve post creation and can delete any post they want. Create appropria...
Round 2 - Technical 

(1 Question)

  • Q1. High-level design - Design a chat-based application like WhatsApp with only user-to-user chat feature (no group chats). Explain and draw out the E2E design by mentioning all the components and design decis...
Round 3 - One-on-one 

(1 Question)

  • Q1. Hiring Manager - basic questions like why Razorpay, what are your career goals, what does career growth look like for you, etc.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

75 min test with 18 Java theory questions

Round 2 - Technical 

(5 Questions)

  • Q1. Synchronized keyword usage
  • Ans. 

    The synchronized keyword in Java is used to control access to shared resources in a multithreaded environment.

    • Synchronized keyword can be used to synchronize access to critical sections of code to prevent race conditions.

    • It can be applied to methods or code blocks to ensure only one thread can access them at a time.

    • Example: synchronized void myMethod() { // code }

    • Example: synchronized(this) { // code }

  • Answered by AI
  • Q2. Message Queue types
  • Q3. Thread Contention
  • Q4. Java Profiling Tools
  • Q5. Abstract classes

Skills evaluated in this interview

Navi Technologies Interview FAQs

How many rounds are there in Navi Technologies Sde1 interview?
Navi Technologies interview process usually has 2-3 rounds. The most common rounds in the Navi Technologies interview process are Technical, Assignment and Resume Shortlist.
What are the top questions asked in Navi Technologies Sde1 interview?

Some of the top questions asked at the Navi Technologies Sde1 interview -

  1. 2nd round was proper DSA elimination round. 2 LC Hard questions asked, one from...read more
  2. Trapping Rain Water, Leetcode Question (Ha...read more
  3. Mixed of OOP, DBMS, DSA and resume grill...read more

Tell us how to improve this page.

Navi Technologies Sde1 Interview Process

based on 2 interviews

Interview experience

4
  
Good
View more

Sde1 Interview Questions from Similar Companies

Paytm Sde1 Interview Questions
3.3
 • 3 Interviews
Flipkart Sde1 Interview Questions
4.0
 • 3 Interviews
Swiggy Sde1 Interview Questions
3.8
 • 2 Interviews
Zomato Sde1 Interview Questions
3.7
 • 1 Interview
BYJU'S Sde1 Interview Questions
3.1
 • 1 Interview
Blinkit Sde1 Interview Questions
3.7
 • 1 Interview
PayPal Sde1 Interview Questions
3.9
 • 1 Interview
Rupeek Sde1 Interview Questions
3.7
 • 1 Interview
View all
Navi Technologies Sde1 Salary
based on 31 salaries
₹18 L/yr - ₹27.7 L/yr
At par with the average Sde1 Salary in India
View more details

Navi Technologies Sde1 Reviews and Ratings

based on 4 reviews

2.4/5

Rating in categories

3.3

Skill development

2.4

Work-life balance

4.2

Salary

2.4

Job security

2.4

Company culture

2.7

Promotions

3.0

Work satisfaction

Explore 4 Reviews and Ratings
Associate Manager
63 salaries
unlock blur

₹10.5 L/yr - ₹40 L/yr

Senior Executive
47 salaries
unlock blur

₹3.5 L/yr - ₹10.6 L/yr

Business Analyst
40 salaries
unlock blur

₹15 L/yr - ₹30 L/yr

Collections Executive
32 salaries
unlock blur

₹2.2 L/yr - ₹4.9 L/yr

Software Developer
31 salaries
unlock blur

₹20 L/yr - ₹37 L/yr

Explore more salaries
Compare Navi Technologies with

Paytm

3.3
Compare

Flipkart

4.0
Compare

Ola Cabs

3.4
Compare

Swiggy

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