Upload Button Icon Add office photos

Filter interviews by

Practo Software Developer Intern Interview Questions and Answers

Updated 20 Nov 2024

Practo Software Developer Intern Interview Experiences

1 interview found

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

2 DSA questions with in one hour.

Round 2 - Technical 

(2 Questions)

  • Q1. Merge two binary trees
  • Ans. 

    Merge two binary trees by summing up the values of corresponding nodes

    • Traverse both trees simultaneously and sum up the values of corresponding nodes

    • If a node exists in only one tree, add it to the merged tree as is

    • Recursively merge the left and right subtrees

  • Answered by AI
  • Q2. Explain project
  • Ans. 

    Developed a web application for tracking personal fitness goals and progress

    • Used HTML, CSS, and JavaScript for front-end development

    • Implemented a RESTful API using Node.js and Express for back-end functionality

    • Utilized MongoDB for database storage and retrieval

    • Incorporated user authentication and authorization using JWT tokens

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. Tell me about yourself.
  • Q2. Why should we hire you.
  • Ans. 

    I am a dedicated and quick learner with strong problem-solving skills and a passion for software development.

    • Strong problem-solving skills demonstrated through previous projects and coding challenges.

    • Quick learner who can adapt to new technologies and tools efficiently.

    • Passionate about software development and constantly seeking to improve my skills.

    • Dedicated to delivering high-quality code and meeting project deadline...

  • Answered by AI

Skills evaluated in this interview

Interview questions from similar companies

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

(1 Question)

  • Q1. It was based on dynamic programming

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare DSA very well
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via cuvette.tech and was interviewed before Sep 2022. There were 3 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 - Assignment 

Was asked to build a REST API for inventory management of a store using Django REST framework.

Round 3 - One-on-one 

(1 Question)

  • Q1. Had a discussion regarding my project and resume with the founder, he paid attention to detail and was polite and supportive.

Interview Preparation Tips

Topics to prepare for Spinny Software Developer Intern interview:
  • Python
  • Django
  • SQL
  • Docker
  • Basic system design
Interview preparation tips for other job seekers - Focus on problem solving with python and be honest in your resume, the position will require high level of planning and complex execution (for a fresher as compared to other internships)

I was interviewed in Feb 2021.

Round 1 - Assignment 

Round duration - 24 hours
Round difficulty - Medium

Round 2 - Video Call 

(2 Questions)

Round duration - 120 Minutes
Round difficulty - Medium

It was a Data Structures and Algorithm Round and Discussion on My assignment round to check my Problem Solving Skills.
And the Interviewer was very friendly to me. I first introduced myself to the interviewer and what did I have done in past as a Software Engineer and Why I want to work in Grofers.
 

  • Q1. 

    Top View of Binary Tree

    Given a binary tree of integers, the task is to return the top view of the given binary tree. The top view of the binary tree is the set of nodes visible when viewed from the top.

    ...
  • Ans. Using Pre-Order Traversal

    As we know that all three traversals, i.e. pre-order, in-order and post-order, visit the tree node at once. We can use any of them. Here we are going to use pre-order traversal for the explanation. So while traversing in the pre-order traversal, we will keep track of horizontal distance of the node which is going to be visited from the root node, and we also keep track of the vertical level of ...

  • Answered Anonymously
  • Q2. 

    Maximum Possible Time Problem Statement

    Given an array ARR consisting of exactly four integer digits, your task is to form the maximum possible valid time in a 24-hour format using those digits.

    Explanat...

  • Ans. Maximum Possible Time

    Approach:

    • The basic idea is that we will iterate over all the permutations of the 4 digits and check whether we are able to form a valid 24 Hr format time. If so we will then also find the maximum possible time.
    • Here we will use the ‘NEXT_PERMUTATION’ method to find all the permutations.

     

    Algorithm:

    • There are two conditions for valid 24 Hr format time:
      • The first two digits i.e the hour should be le...
  • Answered Anonymously

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from JAYPEE INSTITUTE OF INFORMATION TECHNOLOGY. Eligibility criteriaNo criteriaGrofers interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, Dynamic Programming, OOPS, Computer Networks, Operating systems, DMBS, System Design, Python, DjangoTime required to prepare for the interview - 6 MonthsInterview preparation tips for other job seekers

Tip 1 : Practise Data Structures and Algorithms as much as you can on daily basis. Don't Fix numbers in your head, but practise as much as you can from all topics on daily basis.
Tip 2 : Give Programming Contests on a Daily basis. As it helps you to think of any particular problem in the fixed time frame.
Tip 3 : For Mastering DP, Learn From Aditya Verma Youtube Playlist and apply around 100 questions for solving any DP problem.
Tip 4 : Also Learn Computer Science theory subject once a week so that you will have a deep understanding of the particular subject since many interviews grind on CS theory subjects like OS, DBMS and Networks 
Tip 5 : Make at least 2-3 Projects in any technology you like maybe Web Development or Android Development. It shows that you have some experience in Development and the company don't need to waste time on you for teaching frameworks.
Tip 6 : If you have time learn some System Design and learn how to design any system from end to end. Especially learn about designing a database of any application. In many interviews, the interviewer asks to design an application from end to end. So if you have some practice, then you can easily clear this type of rounds.

Application resume tips for other job seekers

Tip 1 : Always attached your Project links in your resume. As it seems your project is genuine and you are confident in showing your projects
Tip 2 : Don't add unnecessary things in your resume which are not related to the job, like your 10th class winning tournament certificate or managing a college society. These things didn't create any impact on your profile and takes an unnecessary space in your resume.
Tip 3 : Always make a 1-page resume. If you are making more than 1 page then it means you have added a lot of unnecessary information which are not related to the job profile.
Tip 4 : Always show your Project and Past experience on top, just after your basic info and education. Since these are the things which should be on top to showcast the skills.

Final outcome of the interviewSelected

Skills evaluated in this interview

I was interviewed in Sep 2020.

Round 1 - Coding Test 

(2 Questions)

Round duration - 90 mintues
Round difficulty - Medium

Goes good no problem at all exam is between 10 to 11:30.

  • Q1. 

    Game of Dominoes Problem Statement

    Rafiq loves to play with piles of dominoes, especially when they are of equal heights. His father gifted him 'N' piles of dominoes, each with a positive number of stacke...

  • Q2. 

    Pair Sum Problem Statement

    You are given an integer array 'ARR' of size 'N' and an integer 'S'. Your task is to find and return a list of all pairs of elements where each sum of a pair equals 'S'.

    Note:
    ...
Round 2 - Video Call 

(2 Questions)

Round duration - 90 minutes
Round difficulty - Hard

Goes good no problem at all exam at same time between 10 to 11:30.

  • Q1. What problems did you face in your project and how did you deal with them?
  • Q2. 

    Ninja and Sorted Arrays Problem

    You are given two sorted integer arrays, ARR1 and ARR2, with sizes M and N, respectively. Merge these arrays into ARR1 as a single sorted array. Assume ARR1 has a size equa...

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Guru Nanak Dev University. I applied for the job as SDE - Intern in BangaloreEligibility criteriaAbove 7 CGPAOla interview preparation:Topics to prepare for the interview - Array ,DP ,Graph ,Recursion, Tree ,Queue,Time required to prepare for the interview - 1 monthInterview preparation tips for other job seekers

Tip 1 : Do atleast 1 good projects
Tip 2 : Practice Atleast 300 Questions
Tip 3 : Should be able to explain your project

Application resume tips for other job seekers

Tip 1 : Always be true with the resume 
Tip 2 : Do not put false things on resume.

Final outcome of the interviewSelected

Skills evaluated in this interview

I was interviewed before Sep 2020.

Round 1 - Video Call 

(2 Questions)

Round duration - 1 hour
Round difficulty - Medium

It was a 1 hour round on coding and problem solving. 

  • Q1. 

    Problem: Search In Rotated Sorted Array

    Given a sorted array that has been rotated clockwise by an unknown amount, you need to answer Q queries. Each query is represented by an integer Q[i], and you must ...

  • Q2. 

    Merge Two Sorted Linked Lists Problem Statement

    You are provided with two sorted linked lists. Your task is to merge them into a single sorted linked list and return the head of the combined linked list.

    ...

Interview Preparation Tips

Professional and academic backgroundI completed Information Technology from Banasthali University. I applied for the job as SDE - Intern in BangaloreEligibility criteria7 CGPAMyntra interview preparation:Topics to prepare for the interview - C , OOPS , Java , MySql , Data StructuresTime required to prepare for the interview - 3 MonthsInterview preparation tips for other job seekers

Tip 1 : Always try to be clear with your basic concepts .As you are a fresher , you are expected to be clear with your basic concepts such as OOPS , MySql etc and also you should be able to explain it properly to the interviewer.
Tip 2 : Practice at least 200 Questions and the best platform for preparing is LeetCode.
Tip 3 : You should be clear with your projects and the technology it involved . 2-3 Projects are enough for the interview.

Application resume tips for other job seekers

Tip 1 : Make neat resume with projects and internships mentioned.
Tip 2 : Mention only those things which are true.
Tip 3 : Do mention if you won any Hackathon.

Final outcome of the interviewRejected

Skills evaluated in this interview

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

The exam duration is one and a half hours.

Round 2 - Coding Test 

The total exam time is one and a half hours.

Round 3 - Group Discussion 

It encompasses all topics related to full stack development.

Round 4 - Technical 

(2 Questions)

  • Q1. Asks questions on SQL
  • Q2. Asks question in typical topics
Round 5 - HR 

(1 Question)

  • Q1. Where do you see yourself in two years?
  • Ans. 

    In two years, I see myself as a senior software developer leading a team on innovative projects.

    • Advancing to a senior software developer role

    • Leading a team on new and innovative projects

    • Continuing to enhance my technical skills through ongoing learning and training

  • Answered by AI
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Technical 

(2 Questions)

  • Q1. Insert node in BST
  • Ans. 

    Insert a node in a Binary Search Tree (BST)

    • Start at the root node and compare the value of the node to be inserted with the current node

    • If the value is less than the current node, move to the left child. If greater, move to the right child

    • Repeat the process until reaching a leaf node, then insert the new node as a left or right child

  • Answered by AI
  • Q2. Design Lift system
  • Ans. 

    Design a lift system for efficient vertical transportation

    • Consider the number of floors in the building

    • Include safety features like emergency stop button

    • Optimize for speed and energy efficiency

    • Implement a user-friendly interface for passengers

  • Answered by AI

Skills evaluated in this interview

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

(1 Question)

  • Q1. Create APIs for a Quiz platform
  • Ans. 

    Create APIs for a Quiz platform

    • Design RESTful APIs for creating, updating, deleting, and retrieving quizzes

    • Include endpoints for managing quiz questions, answers, and user responses

    • Implement authentication and authorization mechanisms for secure access

    • Utilize JSON format for data exchange between client and server

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare Spring boot development well

Skills evaluated in this interview

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

I applied via Recruitment Consulltant and was interviewed in Dec 2022. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Coding Test 

Medium level array question was asked on hackerrank.

Round 3 - One-on-one 

(1 Question)

  • Q1. Simple string question was asked which required a little thinking and simple implementation.
Round 4 - One-on-one 

(1 Question)

  • Q1. This was a coding round. I was given a screenshot which has dropdowns in it and I had to make the UI of it using react.js

Interview Preparation Tips

Interview preparation tips for other job seekers - Simple DSA and MERN stack should be good

Practo Interview FAQs

How many rounds are there in Practo Software Developer Intern interview?
Practo interview process usually has 3 rounds. The most common rounds in the Practo interview process are HR, Coding Test and Technical.
What are the top questions asked in Practo Software Developer Intern interview?

Some of the top questions asked at the Practo Software Developer Intern interview -

  1. Merge two binary tr...read more
  2. Explain proj...read more

Tell us how to improve this page.

Practo Software Developer Intern Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more
Practo Software Developer Intern Salary
based on 4 salaries
₹10 L/yr - ₹12 L/yr
60% more than the average Software Developer Intern 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
111 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