Premium Employer

i

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

NIKE Verified Tick

Compare button icon Compare button icon Compare
4.2

based on 251 Reviews

Filter interviews by

NIKE Software Development Engineer 3 Interview Questions and Answers

Updated 21 Feb 2024

NIKE Software Development Engineer 3 Interview Experiences

1 interview found

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

I applied via Recruitment Consulltant and was interviewed before Feb 2023. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. It was a DSA Round
  • Q2. Find the level of a node in a binary tree?
  • Ans. 

    The level of a node in a binary tree is determined by the number of edges on the path from the root to that node.

    • The level of the root node is 0.

    • To find the level of a node, traverse the tree starting from the root and increment a level counter as you move down the tree.

    • The level of a node can also be determined by its distance from the root node.

  • Answered by AI

Skills evaluated in this interview

Interview questions from similar companies

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

First Round DSA : 1 Find cycle in the graph and distance of each node to the cyclee

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

I applied via Approached by Company and was interviewed in Jul 2023. There were 2 interview rounds.

Round 1 - Coding Test 

In 60 mins, you have to write a text wrap library. Code should be clean, and modular and should have ways to make it more usable.

Round 2 - Technical 

(1 Question)

  • Q1. Design a mook-my-show type of system for companies. Companies can define schedule of event, number of seats available and prices if any. Only employee of company should be able to book show.
  • Ans. 

    Design a system for companies to schedule events, manage seats, and allow only employees to book shows.

    • Create a database to store company information, event schedules, seat availability, and employee details

    • Implement an authentication system to verify employee credentials

    • Develop a user interface for companies to define event schedules, seat availability, and prices

    • Allow employees to search and book shows based on their...

  • Answered by AI

Skills evaluated in this interview

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

I applied via Approached by Company and was interviewed in Oct 2024. There were 4 interview rounds.

Round 1 - Coding Test 

2 DSA questions and some MCQ on Java and Spring

Round 2 - Technical 

(2 Questions)

  • Q1. Longest palindromic substring
  • Ans. 

    A palindromic substring is a string that reads the same forwards and backwards.

    • Use dynamic programming to find the longest palindromic substring.

    • Start by considering each character as the center of a potential palindrome.

    • Expand outwards from each center to check for palindromes of odd and even lengths.

  • Answered by AI
  • Q2. Remove duplicates in place from a 1D array
  • Ans. 

    Remove duplicates from a 1D array of strings in place

    • Iterate through the array and use a HashSet to keep track of unique elements

    • Replace duplicates with null or an empty string to remove them in place

  • Answered by AI
Round 3 - Technical 

(3 Questions)

  • Q1. Project discussion
  • Q2. Search min element in a rotated sorted array with duplicate elements
  • Ans. 

    Search for the minimum element in a rotated sorted array with duplicate elements.

    • Use binary search to find the minimum element in the rotated sorted array.

    • Handle the case where duplicate elements are present by adjusting the search conditions.

    • Consider cases where the array is not rotated or contains only one element.

  • Answered by AI
  • Q3. Ways of declaring singleton class
  • Ans. 

    A singleton class is a class that can only have one instance created throughout the application.

    • Declare a private static instance variable of the class

    • Create a private constructor to prevent external instantiation

    • Provide a public static method to access the instance

  • Answered by AI
Round 4 - Technical 

(2 Questions)

  • Q1. Project discussion
  • Q2. Behavioural questions

Skills evaluated in this interview

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

(1 Question)

  • Q1. DSA Problem solving

Interview Preparation Tips

Interview preparation tips for other job seekers - 1. DSA -> generate permutation of a string "abc", no repeated characters
2. JAVA + DSA bit-> comparator, thread(race condition (synchronised), joins, singleton), BFS of a tree level order
3. Managerial

I applied via Referral and was interviewed in 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 

Ds Algo question on Merge Interval with JUnit Coverage

Round 3 - Coding Test 

System Design discussion covering DR strategy, Rest API details, handling offline and online system processing.

Round 4 - Technical 

(5 Questions)

  • Q1. How you motivate Team
  • Ans. 

    Motivating a team involves setting clear goals, providing support and recognition, fostering a positive work environment, and promoting collaboration.

    • Set clear goals and communicate them effectively

    • Provide support and resources to help team members achieve their goals

    • Recognize and reward team members for their achievements

    • Create a positive work environment by promoting open communication and trust

    • Encourage collaboratio...

  • Answered by AI
  • Q2. Tell me about your weakness
  • Ans. 

    I tend to be overly critical of my own work.

    • I have high standards for myself and strive for perfection.

    • I often spend extra time reviewing and revising my work to ensure it meets my expectations.

    • I sometimes struggle with accepting compliments or recognizing my achievements.

    • I am actively working on finding a balance between self-improvement and self-acceptance.

  • Answered by AI
  • Q3. Offline store management system
  • Ans. 

    An offline store management system is a software that helps manage inventory, sales, and customer data in a physical store without an internet connection.

    • The system should have a database to store product information, sales data, and customer information.

    • It should have a user-friendly interface for employees to input and access data.

    • The system should be able to generate reports on sales, inventory levels, and customer ...

  • Answered by AI
  • Q4. Write code for Boggle game
  • Ans. 

    Code for Boggle game

    • Create a 2D grid of letters

    • Generate all possible words using the grid and a dictionary

    • Implement a search algorithm to find valid words

    • Track score based on word length and rarity

    • Allow for multiple players and rounds

  • Answered by AI
  • Q5. Find overlapping interval to calculate final payment for store worker
  • Ans. 

    Finding overlapping intervals for calculating final payment of store worker

    • Identify all the intervals for which the worker is eligible for payment

    • Check for overlapping intervals and merge them

    • Calculate the final payment based on the merged intervals

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Tesco Software Development Engineer 3 interview:
  • Merge Interval
  • Graphs
  • LinkedList
  • JUnit
  • System Design
Interview preparation tips for other job seekers - Stick to basics and practice lot of questions on Merge Interval, Graph DFS, BFS.
Understand the basics of System Design and the importance of Authentication, DR management.

Skills evaluated in this interview

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

I applied via Walk-in and was interviewed in Oct 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. System Design Questions, Situation based problems of system design
  • Q2. Data Structure Coding question of HashMap
Round 2 - Technical 

(1 Question)

  • Q1. Again System design, Question from your project and architecture of your project
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Find Mirror of tree
  • Ans. 

    To find the mirror of a tree, we need to swap the left and right children of each node recursively.

    • Start from the root node of the tree

    • Swap the left and right children of the current node

    • Recursively call the mirror function on the left and right subtrees

  • Answered by AI
  • Q2. Find median in two sorted arrays
  • Ans. 

    Merge two sorted arrays and find the median

    • Merge the two arrays into one sorted array

    • Calculate the median based on the length of the merged array

    • Handle cases where the total length is even or odd

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - be good in DS Algo

Skills evaluated in this interview

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

I applied via LinkedIn and was interviewed before Jun 2023. There was 1 interview round.

Round 1 - Coding Test 

React Context Question

Software Engineer Interview Questions & Answers

Lowe's user image Abhishek Agrawal

posted on 20 Aug 2024

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

I applied via Referral and was interviewed in Jul 2024. There were 4 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. React js questions like Dom manipulation, useCallback and useMemo these kind of questions
  • Q2. Create some dynamic buttons with a json data and whenever you click on that you need to maintain active and inactive states and also you need to show the content of the button based on the json data whenev...
  • Ans. 

    Create dynamic buttons with JSON data, maintain active/inactive states, and show content on click

    • Create buttons dynamically using JSON data

    • Toggle between active and inactive states on click

    • Display button content based on JSON data on click

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. More advanced react based questions like test cases handling and redux state management techniques
  • Q2. Prop drilling concepts
Round 3 - Behavioral 

(1 Question)

  • Q1. More about your projects you have worked on and also front end technical basic questions
Round 4 - HR 

(2 Questions)

  • Q1. Why Lowe's only
  • Ans. 

    Lowe's is a leading home improvement retailer with a strong focus on technology and innovation.

    • Lowe's has a strong reputation for investing in technology and innovation within the home improvement industry.

    • I am impressed by Lowe's commitment to digital transformation and their use of cutting-edge tools and technologies.

    • I believe Lowe's offers a challenging and rewarding environment for software engineers to grow and de...

  • Answered by AI
  • Q2. What are your expectations here nd all
  • Ans. 

    I expect a challenging work environment, opportunities for growth, and a supportive team.

    • Challenging work that allows me to utilize my skills and learn new technologies

    • Opportunities for career advancement and professional development

    • A supportive team that fosters collaboration and growth

    • Clear communication and expectations from management

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Just prepare well and have a good core understanding of reactjs and css and javascript you can crack it.

Skills evaluated in this interview

NIKE Interview FAQs

How many rounds are there in NIKE Software Development Engineer 3 interview?
NIKE interview process usually has 1 rounds. The most common rounds in the NIKE interview process are Technical.
What are the top questions asked in NIKE Software Development Engineer 3 interview?

Some of the top questions asked at the NIKE Software Development Engineer 3 interview -

  1. Find the level of a node in a binary tr...read more
  2. It was a DSA Ro...read more

Tell us how to improve this page.

Join NIKE WELCOME TO NIKE, INC.

Interview Questions from Similar Companies

Reliance Retail Interview Questions
3.9
 • 1.5k Interviews
Walmart Interview Questions
3.8
 • 395 Interviews
Landmark Group Interview Questions
4.0
 • 140 Interviews
Lowe's Interview Questions
4.2
 • 127 Interviews
Tesco Interview Questions
3.9
 • 120 Interviews
Target Interview Questions
4.2
 • 114 Interviews
Reliance Trends Interview Questions
4.3
 • 100 Interviews
Decathlon Interview Questions
3.9
 • 98 Interviews
Future Group Interview Questions
4.3
 • 76 Interviews
Adidas Interview Questions
3.9
 • 72 Interviews
View all
NIKE Software Development Engineer 3 Salary
based on 6 salaries
₹38 L/yr - ₹45 L/yr
11% more than the average Software Development Engineer 3 Salary in India
View more details

NIKE Software Development Engineer 3 Reviews and Ratings

based on 2 reviews

4.0/5

Rating in categories

3.3

Skill development

3.7

Work-Life balance

2.7

Salary & Benefits

3.7

Job Security

3.7

Company culture

3.0

Promotions/Appraisal

4.0

Work Satisfaction

Explore 2 Reviews and Ratings
Software Engineer2
47 salaries
unlock blur

₹14 L/yr - ₹40.2 L/yr

Senior Software Engineer
45 salaries
unlock blur

₹24 L/yr - ₹39.7 L/yr

Software Engineer III
44 salaries
unlock blur

₹28.7 L/yr - ₹47.8 L/yr

Store Manager
43 salaries
unlock blur

₹3.4 L/yr - ₹9 L/yr

Sales Executive
40 salaries
unlock blur

₹1.5 L/yr - ₹4.2 L/yr

Explore more salaries
Compare NIKE with

Adidas

3.9
Compare

PUMA

4.3
Compare

Under Armour

4.1
Compare

Reebok

4.6
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview