Medly Pharmacy interview experience Real time questions & tips from candidates to crack your interview

Associate Software Engineer

Medly Pharmacy
upvote
share-icon
3 rounds | 4 Coding problems

Interview preparation journey

expand-icon
Preparation
Duration: 6 months
Topics: Data Structures, DBMS, Operating System, OOPS, Algorithms, Dynamic Programming, Web Development, System Design
Tip
Tip

Tip 1 : DSA + OOPS and Web Development is needed
Tip 2 : Good knowledge of core subjects like DBMS, OS, CN
Tip 3 : 2 Good projects + SQL and queries

Application process
Where: Company Website
Eligibility: 2022 passed out B.Tech students with above 7 CGPA
Resume Tip
Resume tip

Tip 1 : Good formatting of resume, have the knowledge of what you put into your resume
Tip 2 : Should be a 1-page resume with at least 2 projects

Interview rounds

01
Round
Medium
Online Coding Interview
Duration120 minutes
Interview date1 Apr 2022
Coding problem2

This round was must to be cleared for reaching to interview rounds, it consists of 4 sections to be answered:
15 MCQs for DBMS
15 MCQs for CS concepts
15 MCQs for Output
2 Coding questions

1. Jump Game

Moderate
25m average time
75% success
0/80
Asked in companies
OracleUberShareChat

There is an array 'JUMP' of size 'N' which is 1-indexed and you are currently at index 1. Your goal is to reach index 'N' (end).


When you are at index 'i', you can jump a maximum length of 'JUMP[i]' which means you can make a jump of size 1 to JUMP[i]. Return true if you can reach the end otherwise false.


Example:-
N = 5
JUMP = [1,2,3,4,5]

ANSWER:- The answer should be YES as you can jump from 1st index to 2nd index, from 2nd index to 4th index, and from 4th index to 5th index.
Try solving now

2. Power Of 2

Moderate
20m average time
70% success
0/80
Asked in companies
CIS - Cyber InfrastructureMedly PharmacyPracto

You are given an integer ‘N’. We can reorder the digits in any order (including the original order) such that the leading digit is not zero.

Return true if and only if we can do this so that the resulting number is a power of two. Else, return false.

For Example :

Given :-
‘N’ = 218
Then the answer will be true because it can be rearranged to 128, which is 2 raised to the power of 7.
Try solving now
02
Round
Medium
Video Call
Duration60 minutes
Interview date6 Apr 2022
Coding problem1

This round had 2 interviewers, they had a good discussion with me:
They found Angular in my resume so asked about anguar:
Angular vs React
Features of Angular
who developed angular
Advantages/disadvantages
One way binding in Angular
property binding in angular
Then they asked me a coding question:
Given a number n and find all the prime numbers in range 0-n in sorted order
After that they asked some DBMS queries and finally wrapped up the interview.

1. All Prime Numbers less than or equal to N

Moderate
10m average time
90% success
0/80
Asked in companies
OptumIBMAdobe

You are given a positive integer 'N'. Your task is to return all the prime numbers less than or equal to the 'N'.

Note:

1) A prime number is a number that has only two factors: 1 and the number itself.

2) 1 is not a prime number.
Try solving now
03
Round
Medium
Video Call
Duration40 minutes
Interview date11 Apr 2022
Coding problem1

It was a short round, interviewer asked some generic questions on OS, DBMS, and Computer Networks. Also there was some discussion of project, how it works, why I made the project, etc.
Then he gave me a coding question to remove duplicates from linked list,
Then he asked me to code Object Oriented code on Polymorphism which I coded correctly after some errors.

1. Remove Duplicates From an Unsorted Linked List

Moderate
15m average time
85% success
0/80
Asked in companies
IBMAdobeAmazon

You are given a linked list of N nodes. Your task is to remove the duplicate nodes from the linked list such that every element in the linked list occurs only once i.e. in case an element occurs more than once, only keep its first occurrence in the list.

For example :
Assuming the linked list is 3 -> 2 -> 3 -> 4 -> 2 -> 3 -> NULL.

Number ‘2’ and ‘3’ occurs more than once. Hence we remove the duplicates and keep only their first occurrence. So, our list becomes : 3 -> 2 -> 4 -> NULL.
Try solving now

Here's your problem of the day

Solving this problem will increase your chance to get selected in this company

Skill covered: Programming

What is recursion?

Choose another skill to practice
Similar interview experiences
company logo
SDE - 1
3 rounds | 7 problems
Interviewed by OYO
4657 views
0 comments
0 upvotes
company logo
SDE - Intern
2 rounds | 3 problems
Interviewed by Amazon
961 views
0 comments
0 upvotes
company logo
SDE - 1
2 rounds | 5 problems
Interviewed by Meesho
6450 views
0 comments
0 upvotes
company logo
SDE - 1
3 rounds | 9 problems
Interviewed by Salesforce
3452 views
0 comments
0 upvotes
Companies with similar interview experiences
company logo
Associate Software Engineer
3 rounds | 10 problems
Interviewed by Amdocs
2370 views
0 comments
0 upvotes
company logo
Associate Software Engineer
3 rounds | 2 problems
Interviewed by Ernst & Young (EY)
2672 views
0 comments
0 upvotes
company logo
Associate Software Engineer
3 rounds | 15 problems
Interviewed by Ernst & Young (EY)
2347 views
0 comments
0 upvotes