Upload Button Icon Add office photos

Filter interviews by

SimplifyVMS Software Developer Intern Interview Questions and Answers for Freshers

Updated 4 Dec 2024

SimplifyVMS Software Developer Intern Interview Experiences for Freshers

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 appeared for an interview 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 for Fresher

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 appeared for an interview 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 appeared for an interview 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)

 Senior Software Engineer

 (1)

 Associate Software Engineer

 (1)

Interview questions from similar companies

Interview Questionnaire 

1 Question

  • Q1. A-Z in MySQL, programming languages(only concepts)

I applied via Campus Placement and was interviewed before Mar 2020. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. Basics about .Net and SQl server
  • Q2. What are triggers
  • Ans. 

    Triggers are database objects that automatically execute in response to certain events or changes in data.

    • Triggers are used to enforce business rules or data integrity.

    • They can be used to audit changes to data.

    • Triggers can be set to execute before or after an event, such as an insert, update, or delete operation.

    • They can be defined on tables, views, or schemas.

    • Examples of triggers include sending an email notification ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Just be honest. They prefer learnability over current knowledge

Skills evaluated in this interview

I applied via Naukri.com and was interviewed before Jan 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Java Basic questions and Git

Interview Preparation Tips

Interview preparation tips for other job seekers - After selection they haven't rolled the offer and put the profile on hold and then doesn't pick calls.

I applied via Naukri.com and was interviewed in Aug 2020. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. Interfaces
  • Q2. Oop concepts

Interview Preparation Tips

Interview preparation tips for other job seekers - I interviewed for software engineer profile. Interview process were easy 1st apti round 2nd pseudo code round 3rd technical and HR. It was quite easy.

I applied via Walk-in and was interviewed in Aug 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. They ask only basics of programming languages which are mentioned in resume

Interview Preparation Tips

Interview preparation tips for other job seekers - Be good in communication skills and be aware of general questions.

Interview Questionnaire 

1 Question

  • Q1. Drupal data migration

SimplifyVMS Interview FAQs

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

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

  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 for Freshers

based on 1 interview

1 Interview rounds

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

₹7 L/yr - ₹14 L/yr

Associate Software Engineer
14 salaries
unlock blur

₹5 L/yr - ₹7 L/yr

Senior Software Engineer
13 salaries
unlock blur

₹8.6 L/yr - ₹17.5 L/yr

UI/UX Designer
6 salaries
unlock blur

₹7 L/yr - ₹13.5 L/yr

Associate Lead Engineer
5 salaries
unlock blur

₹20 L/yr - ₹26 L/yr

Explore more salaries
Compare SimplifyVMS with

TCS

3.7
Compare

Accenture

3.8
Compare

Wipro

3.7
Compare

Cognizant

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