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 at Madhav Institute of Technology and Science, Gwalior 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

    It’s christmas and Santa is here with ‘K’ gifts. There are ‘N’ children in the park who are standing in a straight line, and not crowding up due to COVID restrictions. You are given an array “di...

  • Ans. Brute Force

    We can note that it is always optimal to distribute gifts to ‘K’ children who are adjacent to each other. 

     

    For example, if the position of children are [2, 4, 7] and K = 2, it is optimal to give gifts to children with positions 2 and 4. If the positions were to be [2, 5, 7], it is optimal to give gifts to children at positions 5 and 7. In general, if the positions are [p1, p2, p3] where p1 < p2 ...

  • Answered by CodingNinjas
  • Q2. Valid String

    You have been given a string 'S' containing only three types of characters, i.e. '(', ')' and '*'.

    A Valid String is defined as follows:

    1. Any left parenthe...
  • Ans. Brute Force

    We can try each of the three possibilities for every asterisk in the string with the help of recursion. 

     

    We will use a temporary string which will keep track of our current possible string. In the end, we can linearly check each possible string. If any of the possible string is a valid string, we print ‘Yes’, otherwise ‘No’.

    Space Complexity: O(n)Explanation:

    O(N), where ‘N’ is the length of the str...

  • Answered by CodingNinjas

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 Max And MinYou are given an array “ARR” of size N. Your ta ... read more
asked in CommVault
Q2. Sliding Maximum You are given an array 'ARR' of integers of lengt ... read more
asked in Amazon
Q3. Fish EaterThere is a river which flows in one direction. One day, ... read more
Q4. Program to check the validity of a PasswordNinjas are trying to h ... read more
Q5. Find K Closest ElementsYou are given a sorted array 'A' of length ... 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

    It’s christmas and Santa is here with ‘K’ gifts. There are ‘N’ children in the park who are standing in a straight line, and not crowding up due to COVID restrictions. You are given an array “di...

  • Ans. Brute Force

    We can note that it is always optimal to distribute gifts to ‘K’ children who are adjacent to each other. 

     

    For example, if the position of children are [2, 4, 7] and K = 2, it is optimal to give gifts to children with positions 2 and 4. If the positions were to be [2, 5, 7], it is optimal to give gifts to children at positions 5 and 7. In general, if the positions are [p1, p2, p3] where p1 < p2 ...

  • Answered by CodingNinjas
  • Q2. Valid Parentheses

    You're given string ‘STR’ consisting solely of “{“, “}”, “(“, “)”, “[“ and “]” . Determine whether the parentheses are balanced.

    Input Format:
    The first line contains an Integer &...
  • Ans. Valid Parenthesis

    Make use of the stack. Traverse the string and push the current character in the stack if it is an opening brace else pop from the stack If it is the corresponding starting brace for current closing brace then move to the next character of the string otherwise return false.

     

    If after complete traversal if the stack is empty then the string is balanced else it is not balanced.

     

    Pseudo Code:

    • Decla...
  • Answered by CodingNinjas

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

    It’s christmas and Santa is here with ‘K’ gifts. There are ‘N’ children in the park who are standing in a straight line, and not crowding up due to COVID restrictions. You are given an array “di...

  • Ans. Brute Force

    We can note that it is always optimal to distribute gifts to ‘K’ children who are adjacent to each other. 

     

    For example, if the position of children are [2, 4, 7] and K = 2, it is optimal to give gifts to children with positions 2 and 4. If the positions were to be [2, 5, 7], it is optimal to give gifts to children at positions 5 and 7. In general, if the positions are [p1, p2, p3] where p1 < p2 ...

  • Answered by CodingNinjas
  • Q2. Valid Parentheses

    You're given string ‘STR’ consisting solely of “{“, “}”, “(“, “)”, “[“ and “]” . Determine whether the parentheses are balanced.

    Input Format:
    The first line contains an Integer &...
  • Ans. Valid Parenthesis

    Make use of the stack. Traverse the string and push the current character in the stack if it is an opening brace else pop from the stack If it is the corresponding starting brace for current closing brace then move to the next character of the string otherwise return false.

     

    If after complete traversal if the stack is empty then the string is balanced else it is not balanced.

     

    Pseudo Code:

    • Decla...
  • Answered by CodingNinjas

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

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

I applied via LinkedIn and was interviewed in Sep 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Easy Questions- Can be done with decent practice

Round 2 - Technical 

(2 Questions)

  • Q1. Array question - basic knowledge sufficient
  • Q2. Maths questions + stack implementation
Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via campus placement at SRM university (SRMU) and was interviewed in Nov 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

It is easy and not that much tough.

Round 2 - Coding Test 

Both questions from strings

Round 3 - HR 

(2 Questions)

  • Q1. Introduce yourself
  • Ans. 

    I am a passionate software developer with experience in Java, Python, and web development.

    • Experienced in Java and Python programming languages

    • Proficient in web development technologies like HTML, CSS, and JavaScript

    • Currently pursuing a degree in Computer Science

  • Answered by AI
  • Q2. Projects

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well on resume projects
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via LinkedIn and was interviewed in Jul 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Test has many reasoning and coding question work on building logic and data Structure

Round 2 - Coding Test 

Coding round is kind of tough practice dsa questions and build your logic

Interview Preparation Tips

Interview preparation tips for other job seekers - work on skills
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via campus placement at BRACT's Vishwakarma Institute of Information Technology, Pune and was interviewed in May 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Leetcode medium questions was asked on hackerrank

Round 2 - Technical 

(2 Questions)

  • Q1. What is database, system design
  • Ans. 

    A database is a structured collection of data, while system design involves creating a plan for how different components of a system will work together.

    • Database is used to store and organize data in a structured manner.

    • System design involves creating a plan for how different components of a system will interact and work together efficiently.

    • Examples of databases include MySQL, PostgreSQL, and MongoDB.

    • Examples of system...

  • Answered by AI
  • Q2. Standard leetcode questions + hashmaps + projects

Skills evaluated in this interview

Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(2 Questions)

  • Q1. Please introduce yourself .
  • Q2. Why do you want to join tech mahindra
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed in Nov 2023. There were 2 interview rounds.

Round 1 - Technical 

(5 Questions)

  • Q1. Conduct a phone or video interview
  • Q2. Consider how candidates may work in your team
  • Q3. Conduct a more in depth interview
  • Q4. Assign a remote coding assessment
  • Ans. 

    Assign a remote coding assessment

    • Clearly define the problem statement and requirements

    • Provide a set of input/output examples for testing

    • Specify the programming language and any constraints

    • Set a time limit for completion

    • Include instructions for submission and evaluation

  • Answered by AI
  • Q5. Request previous work samples
Round 2 - Assignment 

The task of Assignment

Interview Preparation Tips

Interview preparation tips for other job seekers - Every job has the very important of the person of Future carrier,life,family💖so even small job has and do that job very importantly so that's y I like this job

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.

People are getting interviews through

based on 1 SimplifyVMS interview
Campus Placement
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.
Software Engineer
18 salaries
unlock blur

₹7 L/yr - ₹14 L/yr

Senior Software Engineer
12 salaries
unlock blur

₹8.6 L/yr - ₹17.5 L/yr

Associate Software Engineer
10 salaries
unlock blur

₹5 L/yr - ₹7 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

PeopleStrong

3.4
Compare

Quess

3.9
Compare

Team Lease

3.9
Compare

Keka HR Payroll Software

2.9
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview