Upload Button Icon Add office photos

Filter interviews by

Clear (1)

SimplifyVMS Software Developer Intern Interview Questions and Answers

Updated 4 Dec 2024

SimplifyVMS Software Developer Intern Interview Experiences

4 interviews found

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

I applied via Campus Placement and was interviewed before Dec 2023. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Implement stack Data structure
  • Q2. Basic C++ and OOPS concepts
Round 2 - Coding Test 

Interview was for about 30 mins . One easy level question was asked on array.
Q. Given a string. If on rearranging the characters of string it can become palindrome then return true else false.
Some follow up questions were asked on the implementation of the solution.

Round 3 - HR 

(2 Questions)

  • Q1. Why do you want to join us?
  • Q2. Where do you see yourself in next 5 yeas?

I was interviewed in Apr 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Easy

Timing was 10 AM. Platform is very good.

  • Q1. 

    Lazy Santa Problem Statement

    It's Christmas and Santa has 'K' gifts to distribute. There are 'N' children standing in a straight line in the park due to COVID restrictions. You are given an array distance...

  • Ans. 

    Find the minimum distance Santa must travel to distribute 'K' gifts to 'K' different children standing in a straight line.

    • Sort the array 'distance' in ascending order to simplify the problem.

    • Calculate the distance between each adjacent child and find the minimum sum of distances for 'K' gifts.

    • Keep track of the minimum sum of distances as you iterate through the array.

  • Answered by AI
  • Q2. 

    Valid String Problem Statement

    Given a string S consisting solely of the characters '(', ')', and '*', determine if it is a valid string.

    Definition of Valid String:

    1. Every left parenthesis '(' must h...
  • Ans. 

    Determine if a string consisting of '(' , ')' and '*' characters is valid based on given rules.

    • Iterate through the string and keep track of the count of left parentheses, right parentheses, and stars.

    • Use a stack to keep track of the positions of left parentheses.

    • If at any point the count of right parentheses exceeds the count of left parentheses + stars, the string is invalid.

    • If after iterating through the string, ther...

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Chitkara University. I applied for the job as SDE - Intern in NoidaEligibility criteriaAbove 7 CGPASimplify VMS interview preparation:Topics to prepare for the interview - Data Structures, Pointers, OOPS, System Design, Algorithms, Dynamic ProgrammingTime required to prepare for the interview - 2.5 monthsInterview preparation tips for other job seekers

Tip 1 : Have some projects.
Tip 2 : Practice coding problems on Coding ninjas.
 

Application resume tips for other job seekers

Tip 1 : Keep it short.
Tip 2 : Do not put false things.

Final outcome of the interviewRejected

Skills evaluated in this interview

Software Developer Intern Interview Questions Asked at Other Companies

Q1. Sum of Maximum and Minimum Elements Problem Statement Given an ar ... read more
asked in Amazon
Q2. Fish Eater Problem Statement In a river where water flows from le ... read more
asked in Apple
Q3. Kevin and his Fruits Problem Statement Kevin has 'N' buckets, eac ... read more
asked in CommVault
Q4. Sliding Maximum Problem Statement Given an array of integers ARR ... read more
Q5. Reverse Words in a String: Problem Statement You are given a stri ... read more

I was interviewed in Apr 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 90 minutes
Round difficulty - Medium

Timing was 10 AM. Platform is very good.

  • Q1. 

    Lazy Santa Problem Statement

    It's Christmas and Santa has 'K' gifts to distribute. There are 'N' children standing in a straight line in the park due to COVID restrictions. You are given an array distance...

  • Ans. 

    Find the minimum distance Santa must travel to distribute 'K' gifts to 'K' different children standing in a straight line.

    • Sort the array 'distance' in ascending order to simplify the problem.

    • Calculate the distance between each adjacent child and find the minimum sum of distances for 'K' gifts.

    • Keep track of the minimum sum of distances as you iterate through the array.

  • Answered by AI
  • Q2. 

    Valid Parentheses Problem Statement

    Given a string 'STR' consisting solely of the characters “{”, “}”, “(”, “)”, “[” and “]”, determine if the parentheses are balanced.

    Input:

    The first line contains an...
  • Ans. 

    The task is to determine if a given string consisting of parentheses is balanced or not.

    • Use a stack data structure to keep track of opening parentheses

    • Iterate through the string and push opening parentheses onto the stack and pop when encountering a closing parenthesis

    • If at the end the stack is empty, the string is balanced, otherwise it is not

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - Intern in NoidaEligibility criteriaAbove 7 CGPASimplify VMS interview preparation:Topics to prepare for the interview - Data Structures, Pointers, OOPS, System Design, Algorithms, Dynamic ProgrammingTime required to prepare for the interview - 2.5 monthsInterview preparation tips for other job seekers

Tip 1 : Have some projects.
Tip 2 : Practice coding problems on Coding ninjas.
 

Application resume tips for other job seekers

Tip 1 : Keep it short.
Tip 2 : Do not put false things.

Final outcome of the interviewRejected

Skills evaluated in this interview

I was interviewed in Apr 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Easy

Timing was 10 AM. Platform is very good.

  • Q1. 

    Lazy Santa Problem Statement

    It's Christmas and Santa has 'K' gifts to distribute. There are 'N' children standing in a straight line in the park due to COVID restrictions. You are given an array distance...

  • Ans. 

    Find the minimum distance Santa must travel to distribute 'K' gifts to 'K' different children standing in a straight line.

    • Sort the array 'distance' in ascending order to simplify the problem.

    • Calculate the distance between each adjacent child and find the minimum sum of distances for 'K' gifts.

    • Keep track of the minimum sum of distances as you iterate through the array.

  • Answered by AI
  • Q2. 

    Valid Parentheses Problem Statement

    Given a string 'STR' consisting solely of the characters “{”, “}”, “(”, “)”, “[” and “]”, determine if the parentheses are balanced.

    Input:

    The first line contains an...
  • Ans. 

    The task is to determine if a given string consisting of parentheses is balanced or not.

    • Iterate through the characters of the string and use a stack to keep track of opening parentheses.

    • When encountering an opening parenthesis, push it onto the stack. When encountering a closing parenthesis, check if it matches the top of the stack.

    • If the stack is empty at the end or if there are unmatched parentheses, the string is no...

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Chitkara University. I applied for the job as SDE - Intern in NoidaEligibility criteriaNASimplify VMS interview preparation:Topics to prepare for the interview - Data Structures, Pointers, OOPS, Algorithms, Dynamic ProgrammingTime required to prepare for the interview - 1 monthsInterview preparation tips for other job seekers

Tip 1 : Have some projects.
Tip 2 : Practice coding problems on GeeksForGeeks
 

Application resume tips for other job seekers

Tip 1 : Don't Lie on resume
Tip 2 : Have some certificates

Final outcome of the interviewRejected

Skills evaluated in this interview

SimplifyVMS interview questions for designations

 Software Developer

 (2)

 Software Engineer

 (3)

 DevOps Intern

 (1)

 UI Developer

 (1)

 Associate Software Engineer

 (1)

 Senior Software Engineer

 (1)

Interview questions from similar companies

I applied via Naukri.com and was interviewed in Mar 2021. There were 5 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Coding

Interview Preparation Tips

Interview preparation tips for other job seekers - It was nice experience

Interview Questionnaire 

1 Question

  • Q1. Level check error

I applied via Company Website and was interviewed in Feb 2021. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. Coding
  • Q2. Java C

Interview Preparation Tips

Interview preparation tips for other job seekers - Basics

Interview Questionnaire 

2 Questions

  • Q1. Tell us about projects
  • Q2. I explained it

Interview Questionnaire 

2 Questions

  • Q1. Tell about project
  • Q2. I explained it

I applied via Campus Placement and was interviewed before Oct 2020. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Training with job facilities are available..?
  • Q2. Cab facilities are available..?

Interview Preparation Tips

Interview preparation tips for other job seekers - This interview was a technical one but was majorly a stress test. The interviewer wanted to test both my knowledge and communication skills.most of the questions asked to me were related to my mba curriculum i.e. statistics and computers related topics. Luckily i was able to answers most of the questions correctly. I tried to answer each question with examples and also used props on the table.to explain my theories. I think that's my best fit for the position..
Contribute & help others!
anonymous
You can choose to be anonymous

SimplifyVMS Interview FAQs

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

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

  1. Where do you see yourself in next 5 ye...read more
  2. Why do you want to join ...read more
  3. Implement stack Data struct...read more

Recently Viewed

INTERVIEWS

HCLTech

No Interviews

DESIGNATION

INTERVIEWS

Sopra Steria

No Interviews

LIST OF COMPANIES

Osstem Implant India

Locations

REVIEWS

HashedIn by Deloitte

No Reviews

LIST OF COMPANIES

Siemens Healthineers

Locations

LIST OF COMPANIES

Randox Laboratories India Private Limited

Locations

SALARIES

Hindustan Syringes & Medical Devices

LIST OF COMPANIES

Dentcare Dental Lab

Locations

LIST OF COMPANIES

Appasamy Associates

Locations

Tell us how to improve this page.

SimplifyVMS Software Developer Intern Interview Process

based on 1 interview

1 Interview rounds

  • Coding Test Round
View more
Software Engineer
19 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Associate Software Engineer
14 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
13 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

UI/UX Designer
6 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Associate Lead Engineer
5 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare SimplifyVMS with

PeopleStrong

3.4
Compare

Quess

3.9
Compare

Team Lease

3.9
Compare

Darwinbox

3.9
Compare
Did you find this page helpful?
Yes No
write
Share an Interview
Rate your experience using AmbitionBox
Terrible
Terrible
Poor
Poor
Average
Average
Good
Good
Excellent
Excellent