Upload Button Icon Add office photos

Filter interviews by

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 Company Website and was interviewed before Dec 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Questions on Java,SQL,some trending technologies(IOT,Big data),pattern questions, programming questions with different approaches.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare basics of DSA, have knowledge about the databases, some common dml ,ddl statements, programming knowledge of a particular language like C,Java, python,etc...have good command on oops concepts... little bit of frameworks knowledge will also help

I applied via Newspaper Ad and was interviewed before Jun 2021. There were 3 interview rounds.

Round 1 - Aptitude Test 
Round 2 - Technical 

(1 Question)

  • Q1. Basic questions of java.
Round 3 - HR 

(1 Question)

  • Q1. Intro and other hr related questions.

Interview Preparation Tips

Interview preparation tips for other job seekers - Cover the basic questions regarding the programming language.

I applied via Walk-in and was interviewed before Jul 2021. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. .net questions - routing in asp.net MVC ?

Interview Preparation Tips

Interview preparation tips for other job seekers - Nothing . Prepare well for interview on .Net technology stack

I applied via Company Website and was interviewed before Jun 2021. There were 2 interview rounds.

Round 1 - Aptitude Test 

First round was coding as well as aptitude done together went well I guess focusing on codes helps a lot.

Round 2 - Technical 

(1 Question)

  • Q1. 2nd round included tr and mr round went quite enegritic

Interview Preparation Tips

Interview preparation tips for other job seekers - Resume skills matters a lot don't fill resume the technologies you don't even aware of

I applied via Campus Placement and was interviewed before Jan 2021. There were 2 interview rounds.

Round 1 - Aptitude Test 

Good

Round 2 - Technical 

(1 Question)

  • Q1. Basic question from C++.Some questions from Data structure and computer architecture.

Interview Preparation Tips

Topics to prepare for TCS Software Engineer interview:
  • C++
Interview preparation tips for other job seekers - Prepare well. Aptitude is not very easy so you have to prepare well.

I was interviewed before Jun 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 180 minutes
Round difficulty - Easy

It was an mcq + coding round. There were aptitude and ouput based question in mcq. And coding questions were easy

  • Q1. 

    Find the Duplicate Number Problem Statement

    Given an integer array 'ARR' of size 'N' containing numbers from 0 to (N - 2). Each number appears at least once, and there is one number that appears twice. Yo...

  • Ans. 

    Find the duplicate number in an array of integers from 0 to (N-2).

    • Iterate through the array and keep track of the frequency of each number using a hashmap.

    • Return the number with a frequency greater than 1 as the duplicate number.

    • Time complexity can be optimized to O(N) using Floyd's Tortoise and Hare algorithm.

  • Answered by AI
  • Q2. 

    Reverse String Operations Problem Statement

    You are provided with a string S and an array of integers A of size M. Your task is to perform M operations on the string as specified by the indices in array A...

  • Ans. 

    Given a string and an array of indices, reverse substrings based on the indices to obtain the final string.

    • Iterate through the array of indices and reverse the substrings accordingly

    • Ensure the range specified by each index is non-empty

    • Return the final string after all operations are completed

  • Answered by AI
Round 2 - Video Call 

Round duration - 60 Minutes
Round difficulty - Easy

It was technical + hr round. there were 2 people as interviewer. They stated from intro and asked some basic puzzles and hr questions. After that they asked about my projects, technologies and some ds algo and dbms questions.

Interview Preparation Tips

Eligibility criterianaAccenture interview preparation:Topics to prepare for the interview - Data Structures, Pointers, OOPS, System Design, Algorithms, Dynamic ProgrammingTime required to prepare for the interview - 6 MonthsInterview preparation tips for other job seekers

Tip 1 : Practice aptitude
Tip 2 : Focus on practicing coding
Tip 3 : Learn from mistakes

Application resume tips for other job seekers

Tip 1 : Mention some projects that you have done
Tip 2 : Try to have skills that are required for the role

Final outcome of the interviewSelected

Skills evaluated in this interview

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

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

Senior Software Engineer
13 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Associate Software Engineer
12 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