Upload Button Icon Add office photos

PharmEasy

Compare button icon Compare button icon Compare

Filter interviews by

Clear (1)

PharmEasy Software Engineer Interview Questions and Answers

Updated 25 Jul 2024

PharmEasy Software Engineer Interview Experiences

4 interviews found

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

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

Round 1 - Technical 

(3 Questions)

  • Q1. He asked to invert a binary tree
  • Q2. Deep dive in projects
  • Q3. Asked me indept js questions

Interview Preparation Tips

Topics to prepare for PharmEasy Software Engineer interview:
  • Binary search
Interview experience
4
Good
Difficulty level
-
Process Duration
Less than 2 weeks
Result
Not Selected

I was interviewed in Nov 2023.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all Resume tips
Round 2 - Coding Test 

Questions were based on Computer Science Fundamentals, Coding and SQL

Round 3 - Technical 

(1 Question)

  • Q1. 3 coding questions, 1 MCQ of data structures and 1 SQL
Round 4 - Behavioral 

(1 Question)

  • Q1. 1 coding question, other questions were based on my projects and hr based questions

Software Engineer Interview Questions Asked at Other Companies

asked in Qualcomm
Q1. Bridge and torch problem : Four people come to a river in the nig ... read more
asked in Capgemini
Q2. In a dark room,there is a box of 18 white and 5 black gloves. You ... read more
asked in TCS
Q3. Find the Duplicate Number Problem Statement Given an integer arra ... read more
Q4. Tell me something about yourself. Define encapsulation. What is i ... read more
asked in Paytm
Q5. Puzzle : 100 people are standing in a circle .each one is allowed ... read more
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
Selected Selected

I applied via Campus Placement

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 Resume tips
Round 2 - Coding Test 

1 Hour 2 Medium Coding Question and few DB OOPS OS Questions on Hackerearth

Round 3 - One-on-one 

(2 Questions)

  • Q1. Coding 1 : 1 Round
  • Q2. 2 Sum, 3 Sum, Maximum Sum Subarray
Round 4 - Behavioral 

(2 Questions)

  • Q1. Questions based on Resume, OOPS, Databases, OS
  • Q2. ACID Properties, Keys questions, Semaphore mutex

Software Engineer Interview Questions & Answers

user image DEEPAK KUMAR

posted on 25 Jul 2024

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

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

Round 1 - Coding Test 

Coding round and technical questions

Round 2 - Coding Test 

Some technical questions and few questions related to past projects

Round 3 - HR 

(1 Question)

  • Q1. Managerial questions

PharmEasy interview questions for designations

 Software Testing Engineer

 (1)

 Software Developer Intern

 (1)

 Software Automation Testing Engineer

 (1)

 Softwaretest Engineer

 (1)

 Executive Engineer

 (2)

 Backend Developer

 (1)

 Front end Developer

 (1)

Interview questions from similar companies

Software Engineer Interview Questions & Answers

Medlife user image nerella saikrishna

posted on 9 Jan 2016

Interview Questionnaire 

12 Questions

  • Q1. Insert a node in a Linked List, if a pointer to a node(it's not a head pointer) of Linked List is given.
  • Q2. What is the Time Complexity of Binary Search and it's derivation
  • Ans. 

    Binary Search has a time complexity of O(log n) and is derived from dividing the search space in half at each step.

    • Binary Search is a search algorithm that works on sorted arrays.

    • It starts by comparing the target value to the middle element of the array.

    • If the target value is smaller, the search continues on the lower half of the array.

    • If the target value is larger, the search continues on the upper half of the array.

    • T...

  • Answered by AI
  • Q3. Write code for QuickSort
  • Ans. 

    QuickSort is a sorting algorithm that uses divide and conquer approach.

    • Choose a pivot element from the array

    • Partition the array into two sub-arrays, one with elements less than the pivot and one with elements greater than the pivot

    • Recursively apply the above steps to the sub-arrays

    • Combine the sorted sub-arrays to get the final sorted array

  • Answered by AI
  • Q4. Write code for Fibonacci Series using Recursion, Iteration and Dynamic Programming
  • Ans. 

    Code for Fibonacci Series using Recursion, Iteration and Dynamic Programming

    • Recursion: Define a function that calls itself with the previous two numbers in the series as arguments

    • Iteration: Use a loop to calculate the series by adding the previous two numbers in each iteration

    • Dynamic Programming: Store the previous two numbers in variables and use them to calculate the next number in the series

  • Answered by AI
  • Q5. How to implement an operation with Stacks which will be similar to Queue
  • Ans. 

    Implementing a Queue using Stacks

    • Use two stacks to implement a queue

    • Push elements onto the first stack

    • When dequeuing, pop all elements from the first stack and push onto the second stack

    • Pop the top element from the second stack to dequeue

    • If the second stack is empty, pop all elements from the first stack and push onto the second stack

  • Answered by AI
  • Q6. Write code for MergeSort
  • Ans. 

    MergeSort is a divide and conquer algorithm that sorts an array of strings.

    • Divide the array into two halves

    • Recursively sort the two halves

    • Merge the sorted halves

  • Answered by AI
  • Q7. 2 types of detective ball puzzles
  • Q8. 25 Horses, 5 Tracks, 3 Fastest Puzzle
  • Q9. How the letters of a text are determined(Basically about OCR)
  • Q10. Write code for Insertion Sort and Selection Sort and find their time complexities and also the cases where their usage is efficient
  • Q11. Explain about Counting Sort
  • Ans. 

    Counting Sort is a sorting algorithm that sorts elements by counting the number of occurrences of each unique element.

    • Count the occurrences of each element in the array

    • Calculate the cumulative sum of the counts

    • Place each element in the sorted array based on its count and cumulative sum

    • Time complexity is O(n+k) where n is the number of elements and k is the range of input

    • Example: Sort an array of strings based on their

  • Answered by AI
  • Q12. When we type a part of a word in chrome, how is it able to show all the types of words, which are consisted of that part
  • Ans. 

    Chrome uses an algorithm to predict and suggest words based on user input.

    • Chrome's algorithm uses a combination of user history, bookmarks, and popular searches to predict and suggest words.

    • The algorithm also takes into account the frequency and recency of the user's input.

    • Chrome's suggestion feature is powered by Google's Autocomplete API, which uses machine learning to predict and suggest words.

    • The suggestions are di...

  • Answered by AI

Interview Preparation Tips

Round: Technical Interview
Experience: First Question, at the start I was not able to answer and he gave me an hint(He asked me the insertion in an array). So, I got the idea for the insertion in Linked List and was able to answer it.
Remaining questions, I was able to answer confidently.
Tips: Take your own time in answering a question and be clear over your answer before telling about the code that you have written.
If you don't know an answer for some question, just keep telling him simple cases(which are valid), so that the interviewer will sometimes try to guide you through the solution.

Round: Technical Interview
Experience: I was able to answer all the questions confidently, since I know the answers for them, But the last question was out of my scope and I explained based on my intuition and knowledge.
Tips: Take your own time in answering a question and be clear over your answer before telling about the code that you have written.
If you don't know an answer for some question, just keep telling him simple cases(which are valid), so that the interviewer will sometimes try to guide you through the solution.

Round: Technical Interview
Experience: I have given the answers for 1&2 questions with clear explanation. And the third question is again out of my scope and I explained this also based intuition.
Tips: Take your own time in answering a question and be clear over your answer before telling about the code that you have written.
If you don't know an answer for some question, just keep telling him simple cases(which are valid), so that the interviewer will sometimes try to guide you through the solution.

General Tips: Take your own time in answering a question and be clear over your answer before telling about the code that you have written.
If you don't know an answer for some question, just keep telling him simple cases(which are valid), so that the interviewer will sometimes try to guide you through the solution.
Skill Tips: Take your own time in answering a question and be clear over your answer before telling about the code that you have written.
If you don't know an answer for some question, just keep telling him simple cases(which are valid), so that the interviewer will sometimes try to guide you through the solution.
Skills: Logical Puzzles, Algorithms And DataStructures
College Name: IIT Madras
Motivation: 1. Primary Reason: Passionate about Programming and Problem solving.
2. The profile is software Engineer.
3. You can see your idea, having an impact on the society which is possible with this type of company.
4. And a good package.
Funny Moments: Nothing Really...

Skills evaluated in this interview

Interview Preparation Tips

Round: Test
Experience: There was Pool Campus Placement of  4 Colleges together(NIT Jalandhar,NIT Hamirpur ,Candigarh University and CGC Landran ) at Chandigarh University.Written test was taken on Hacker Rank. There were 5 Coding Questions of Linklist , Dynamic Programming,Priority Queues etc . 
You didn't have to do All the questions (3 can get you to the next round).

One thing that need to be beware of is that on Hacker Rank Your Draft is Saved every second(or so). So don't copy from the internet and just paste there(they will get to know).
Tips: Make sure you practice lot of Algorithms.
Duration: 120 minutes
Total Questions: 5

Round: Problem Statement
Experience: Only 8 Students were selected for this round
20 mins were given for it
and afterwards each student had personal discussion(10 mins) with them to explain their schema .
3-4 Questions were also asked related to your schema and how to perform a particular query
Tips: You should Be Through with DBMS
Make sure there is no redundant table and Primary keys are marked

Round: Technical Interview
Experience: 2 were selected for the Interview
Firstly they make you very Comfortable and ask how were the previous Rounds.
Then they asked about the two questions of First Round and my approach 
Then couple of questions on The design that was made Earlier.
Then there were questions on How Internet Works ,gcc,Linux,git,sql.

Then the Interviewer asked if I have any question
I asked about (as the work on doctor's app) how they know the credibility of a doctor which is enlisted in their app.
Interviewer was really Impressed by the question and told me all about it with all details.


Both were selected
Tips: Be cool in the Interview
Think Loudly and Interact with them well.
If they want you to ask any question ,it should not be related to technical stuff ,it should be related to the company

College Name: NIT JALANDHAR

I applied via Referral

Interview Questionnaire 

5 Questions

  • Q1. I was asked to optimize the last program mentioned above
  • Q2. I was asked in detail about my internship experience and projects
  • Q3. I was asked why I did not contribute to any open source projects
  • Q4. I was asked to explain the code of my android app from my dropbox account
  • Q5. The usual HR questions followed after that

Interview Preparation Tips

Skills:
College Name: NA

Software Engineer Interview Questions & Answers

Practo user image BEKKAM VENKATA ADITYA

posted on 27 Sep 2015

I applied via Campus Placement

Interview Questionnaire 

4 Questions

  • Q1. General questions. Where are you from, tell about yourself etc..,
  • Q2. Asked me about the projects which i have mentioned in my resume
  • Q3. Some algorithmic questions including data structures. Time complexity, space complexity etc.,
  • Q4. How would you design a snake game present in basic nokia mobiles. Just the data structure part and some functions which are used as the game goes on

Interview Preparation Tips

Round: Test
Experience: A bit difficult but sensible way to get started with the selection procedure. Questions purely attack the algorithmic and stastitic aspects.
Tips: Get yourself ready with conceptual clartity regarding algorithms and stastics . Don't be ambitious to attempt all the questions, completely solving one problem would be more than enough for getting through this level.
Duration: 120 minutes
Total Questions: 3

Round: Technical Interview
Experience: Believe me. You never feel inferior, it's really interactive and very friendly. Interviewer gave me a few chances and hints whenever i've gone wrong. Overall interview experience was awesome.
Tips: If you're up to this round, they believe you have the potential. So don't panic if you are unable to answer their questions. Just tell them which aspects which you are comfortable with and they will proceed correspondingly, Just be honest whatsoever.

Skill Tips: Prefer having some revision about the above skills before undergoing the selection process.
Skills: Math Puzzles, Algorithmic Approach To Problem Solving, Data Structures
Duration: 2months
College Name: IIT Madras
Funny Moments: Receiving the offer letter from HR official who visited our campus :)
Round 1 - One-on-one 

(3 Questions)

  • Q1. Remove duplicates from array
  • Ans. 

    Remove duplicates from array of strings

    • Create a new empty array

    • Loop through the original array

    • Check if the current element exists in the new array

    • If not, add it to the new array

    • Return the new array

  • Answered by AI
  • Q2. Check if num is int or not
  • Ans. 

    Use isinstance() function to check if num is int or not.

    • Use isinstance(num, int) to check if num is an instance of int class.

    • This function returns True if num is an instance of int class, else False.

    • Example: isinstance(5, int) will return True.

    • Example: isinstance(5.0, int) will return False.

  • Answered by AI
  • Q3. JS questions and fundamentalss

Interview Preparation Tips

Interview preparation tips for other job seekers - Learn JS concepts and DSA really well.

Skills evaluated in this interview

I applied via Other and was interviewed in Dec 2021. There were 4 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. Arrange odd and even numbers in an array , so that all even are placed on RHS and odd on LHS
  • Ans. 

    Arrange odd and even numbers in an array, even on RHS and odd on LHS.

    • Create two pointers, one at the start and one at the end of the array.

    • Swap the elements at the pointers if they are in the wrong position.

    • Continue swapping until the pointers meet in the middle.

  • Answered by AI
  • Q2. Evaluate BODMAS expression
  • Ans. 

    BODMAS is a mathematical rule used to evaluate expressions with multiple operators.

    • BODMAS stands for Brackets, Orders, Division, Multiplication, Addition, and Subtraction.

    • It is used to determine the order in which operations are performed in an expression.

    • Brackets are evaluated first, followed by orders (exponents and roots), then division and multiplication, and finally addition and subtraction.

    • For example, in the exp...

  • Answered by AI
  • Q3. Infix and Post fix expression
  • Q4. Android questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on DS Algo, and Android core fundamentals.

Skills evaluated in this interview

Contribute & help others!
anonymous
You can choose to be anonymous

PharmEasy Interview FAQs

How many rounds are there in PharmEasy Software Engineer interview?
PharmEasy interview process usually has 3 rounds. The most common rounds in the PharmEasy interview process are Coding Test, Behavioral and Technical.
What are the top questions asked in PharmEasy Software Engineer interview?

Some of the top questions asked at the PharmEasy Software Engineer interview -

  1. 3 coding questions, 1 MCQ of data structures and 1 ...read more
  2. ACID Properties, Keys questions, Semaphore mu...read more
  3. Questions based on Resume, OOPS, Databases,...read more

Recently Viewed

INTERVIEWS

McKinsey & Company

No Interviews

SALARIES

Avanti Learning Centres

INTERVIEWS

McKinsey & Company

No Interviews

JOBS

McKinsey & Company

No Jobs

INTERVIEWS

McKinsey & Company

No Interviews

INTERVIEWS

Utkarsh Small Finance Bank

No Interviews

LIST OF COMPANIES

ESAF Small Finance Bank

Overview

SALARIES

Avanti Learning Centres

SALARIES

Avanti Learning Centres

SALARIES

PhonePe

Tell us how to improve this page.

PharmEasy Software Engineer Interview Process

based on 5 interviews

1 Interview rounds

  • Coding Test Round
View more
PharmEasy Software Engineer Salary
based on 83 salaries
₹9 L/yr - ₹25 L/yr
96% more than the average Software Engineer Salary in India
View more details

PharmEasy Software Engineer Reviews and Ratings

based on 14 reviews

3.4/5

Rating in categories

3.3

Skill development

3.1

Work-life balance

3.2

Salary

2.4

Job security

2.9

Company culture

3.2

Promotions

3.1

Work satisfaction

Explore 14 Reviews and Ratings
Pharmacist
281 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Assistant Manager
191 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Customer Delight Officer
147 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Executive
113 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
95 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare PharmEasy with

Medlife

3.7
Compare

Tata 1mg

3.6
Compare

Netmeds.com

3.6
Compare

Practo

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