Upload Button Icon Add office photos

Filter interviews by

Practo Sde1 Interview Questions and Answers

Updated 1 Dec 2022

Practo Sde1 Interview Experiences

1 interview found

Sde1 Interview Questions & Answers

user image Anonymous

posted on 1 Dec 2022

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

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

(2 Questions)

  • Q1. Find the median of two arrays
  • Ans. 

    To find the median of two arrays, merge them and then find the middle element(s).

    • Merge the two arrays into a single sorted array

    • If the length of the merged array is odd, return the middle element

    • If the length of the merged array is even, return the average of the two middle elements

  • Answered by AI
  • Q2. Resume based questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Practice leetcode hard and medium level questions and SQL related questions

Skills evaluated in this interview

Interview questions from similar companies

Sde1 Interview Questions & Answers

Blinkit user image Anonymous

posted on 14 Jan 2025

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

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

Round 1 - Coding Test 

Hackerrank - 3 questions 2 hrs

Sde1 Interview Questions & Answers

Meesho user image Anonymous

posted on 2 Jul 2024

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

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

Round 1 - Coding Test 

Hackerrank test with medium questions

Round 2 - Technical 

(1 Question)

  • Q1. Machine coding round to design a shopping cart

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare for machine coding well

Sde1 Interview Questions & Answers

Swiggy user image Anonymous

posted on 16 Jul 2024

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

I applied via Referral and was interviewed before Jul 2023. There were 3 interview rounds.

Round 1 - Coding Test 

Design splitwise. Low Level question. More like Machine Coding

Round 2 - Coding Test 

Question on Strings and DP

Round 3 - HM Round 

(2 Questions)

  • Q1. DynamoDB Working
  • Q2. General Discussion regarding projects in previous firm

Sde1 Interview Questions & Answers

Ola Cabs user image Anonymous

posted on 20 Jun 2021

I applied via Naukri.com and was interviewed in May 2021. There was 1 interview round.

Interview Questionnaire 

3 Questions

  • Q1. Write a react js parent and child components and show how passing props work?
  • Ans. 

    Example of React parent and child components with props

    • Create a parent component with state and pass it as props to child component

    • Access the props in child component using 'props' keyword

    • Update the parent state from child component using a callback function passed as prop

    • Example: Parent component -

    • Example: Child component -

  • Answered by AI
  • Q2. What is closure in JS?
  • Ans. 

    Closure is a function that has access to its outer function's variables, even after the outer function has returned.

    • Closure is created when a function returns another function.

    • The inner function has access to the outer function's variables.

    • Closure is used to create private variables and methods.

    • Example: function outer() { let x = 10; return function inner() { console.log(x); } }

    • Example: let closureFunc = outer(); closu

  • Answered by AI
  • Q3. Explain currying in JS? sum(1)(2)(); sum(2)(4)(); All these should return sum of numbers
  • Ans. 

    Currying is a technique of transforming a function that takes multiple arguments into a sequence of functions that each take a single argument.

    • Currying is achieved by returning a function that takes the next argument until all arguments are received.

    • In JavaScript, currying is often used for partial application of functions.

    • The sum function in the example takes one argument and returns a function that takes the next arg...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Learn fundamentals about JS

Skills evaluated in this interview

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

I applied via LinkedIn and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. What is clousers
  • Q2. What is promises
Round 2 - Technical 

(2 Questions)

  • Q1. Explain javascript architecture
  • Q2. What is mvvm architecture
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
Not Selected
Round 1 - Coding Test 

Questions were crayon box ,the bot and the game and happy neighbourhood for 90 mins

Round 2 - Technical 

(2 Questions)

  • Q1. Array basics was asked
  • Q2. Segment tree,prefix sum
Round 3 - Technical 

(1 Question)

  • Q1. Low level design was asked
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Job Fair and was interviewed in Jul 2024. There were 2 interview rounds.

Round 1 - Coding Test 

2 question of DSA (easy, medium) in 60 minutes

Round 2 - One-on-one 

(2 Questions)

  • Q1. Playlist Shuffle
  • Q2. Deletion in min heap
  • Ans. 

    Deletion in min heap involves removing the root node and rearranging the heap to maintain the min heap property.

    • To delete the root node in a min heap, swap it with the last node in the heap.

    • Remove the last node and then heapify the heap starting from the root to maintain the min heap property.

    • Example: If the min heap is [10, 20, 30, 25, 40], after deletion the heap becomes [20, 25, 30, 40].

  • Answered by AI

Skills evaluated in this interview

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

I applied via Instahyre

Round 1 - Coding Test 

1 hr, Java questions, SQL question, 1 DSA question

Round 2 - Technical 

(1 Question)

  • Q1. LLD about Hotel Booking system
Round 3 - Technical 

(1 Question)

  • Q1. Discussed about the project
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
4-6 weeks
Result
-

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

Round 1 - Coding Test 

Implement your own state management in React and integrate it into a React application.

Practo Interview FAQs

How many rounds are there in Practo Sde1 interview?
Practo interview process usually has 2 rounds. The most common rounds in the Practo interview process are Resume Shortlist and Technical.
What are the top questions asked in Practo Sde1 interview?

Some of the top questions asked at the Practo Sde1 interview -

  1. Find the median of two arr...read more
  2. Resume based questi...read more

Tell us how to improve this page.

Practo Sde1 Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

Swiggy Interview Questions
3.8
 • 431 Interviews
BigBasket Interview Questions
3.9
 • 355 Interviews
Udaan Interview Questions
4.0
 • 335 Interviews
Meesho Interview Questions
3.7
 • 329 Interviews
CARS24 Interview Questions
3.6
 • 325 Interviews
Lenskart Interview Questions
3.2
 • 299 Interviews
Myntra Interview Questions
4.0
 • 215 Interviews
Square Yards Interview Questions
4.0
 • 198 Interviews
Blinkit Interview Questions
3.7
 • 179 Interviews
BlackBuck Interview Questions
3.8
 • 172 Interviews
View all
Practo Sde1 Salary
based on 6 salaries
₹7.2 L/yr - ₹12 L/yr
55% less than the average Sde1 Salary in India
View more details
Business Development Manager
244 salaries
unlock blur

₹3 L/yr - ₹9.6 L/yr

Product Support Specialist
126 salaries
unlock blur

₹1 L/yr - ₹5 L/yr

Territory Sales Manager
109 salaries
unlock blur

₹3 L/yr - ₹10 L/yr

Team Lead
62 salaries
unlock blur

₹4 L/yr - ₹12.9 L/yr

Assistant Area Manager
58 salaries
unlock blur

₹5 L/yr - ₹14 L/yr

Explore more salaries
Compare Practo with

Lybrate

3.5
Compare

Mfine

3.6
Compare

DocsApp

3.9
Compare

Portea Medical

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