Upload Button Icon Add office photos

Filter interviews by

Vymo Technologies Software Developer Intern Interview Questions and Answers

Updated 16 Sep 2021

Vymo Technologies Software Developer Intern Interview Experiences

2 interviews found

I appeared for an interview in May 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 90 minutes
Round difficulty - Hard

Timing was 4 PM. Platform was good. Overall a good experience.

  • Q1. 

    Break The Prison Problem

    Ninja is trapped in a prison and plans to escape through its gate. The gate consists of horizontal and vertical bars spaced one unit apart, creating holes of area 1 * 1 between th...

  • Ans. 

    Find the area of the largest hole in a gate after removing certain bars.

    • Iterate through all possible combinations of removed bars to find the largest hole area.

    • Calculate the area of each hole after removing bars and keep track of the maximum area.

    • Consider both horizontal and vertical bars when calculating the area of the hole.

  • Answered by AI
  • Q2. 

    Smallest Divisor Problem Statement

    Given an array of integers arr and an integer limit, your task is to find the smallest integer divisor such that dividing all elements of the array by this divisor and ro...

  • Ans. 

    The task is to find the smallest integer divisor such that dividing all elements of the array by this divisor and rounding up to the nearest integer yields a sum less than or equal to a given limit.

    • Iterate through possible divisors starting from 1 up to the maximum element in the array.

    • For each divisor, calculate the sum of rounded up divisions of array elements and check if it is less than or equal to the limit.

    • Return...

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Chitkara University. Eligibility criteriaAbove 7 CGPAVymo 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 : Practice DS algo questions.
Tip 2 : Have some projects.
 

Application resume tips for other job seekers

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

Final outcome of the interviewRejected

I appeared for an interview in May 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 90 minutes
Round difficulty - Medium

Timing was 4 pm. Platform was really great .

  • Q1. 

    Break The Prison Problem

    Ninja is trapped in a prison and plans to escape through its gate. The gate consists of horizontal and vertical bars spaced one unit apart, creating holes of area 1 * 1 between th...

  • Ans. 

    Find the area of the largest hole in a gate after removing certain bars.

    • Iterate through the removable horizontal and vertical bars to find the largest hole area.

    • Keep track of the maximum hole area as bars are removed.

    • Consider all possible combinations of removed bars to find the largest hole area.

    • Use dynamic programming or backtracking to efficiently find the solution.

  • Answered by AI
  • Q2. 

    Smallest Divisor Problem Statement

    Given an array of integers arr and an integer limit, your task is to find the smallest integer divisor such that dividing all elements of the array by this divisor and ro...

  • Ans. 

    The task is to find the smallest integer divisor such that dividing all elements of the array by this divisor and rounding up to the nearest integer yields a sum less than or equal to the given limit.

    • Iterate through possible divisors starting from 1 up to the maximum element in the array.

    • For each divisor, calculate the sum of rounded up divisions of array elements.

    • Return the smallest divisor that satisfies the conditio...

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Chitkara University. Eligibility criteriaAbove 7 CGPAVymo interview preparation:Topics to prepare for the interview - Data structure, core java, oops , algorithms , Dynamic programmingTime required to prepare for the interview - 1 monthInterview preparation tips for other job seekers

Tip 1 : Practice data structure
Tip 2 : Atleast have one hands on project
 

Application resume tips for other job seekers

Tip 1 : Be honest while adding things in assume
Tip 2 : Add only if you have good skills in particular subject

Final outcome of the interviewRejected

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

Top trending discussions

View All
Interview Tips & Stories
1w (edited)
a team lead
Why are women still asked such personal questions in interview?
I recently went for an interview… and honestly, m still trying to process what just happened. Instead of being asked about my skills, experience, or how I could add value to the company… the questions took a totally unexpected turn. The interviewer started asking things like When are you getting married? Are you engaged? And m sure, if I had said I was married, the next question would’ve been How long have you been married? What does my personal life have to do with the job m applying for? This is where I felt the gender discrimination hit hard. These types of questions are so casually thrown at women during interviews but are they ever asked to men? No one asks male candidates if they’re planning a wedding or how old their kids are. So why is it okay to ask women? Can we please stop normalising this kind of behaviour in interviews? Our careers shouldn’t be judged by our relationship status. Period.
Got a question about Vymo Technologies?
Ask anonymously on communities.

Interview questions from similar companies

I appeared for an interview before Sep 2020.

Round 1 - Assignment 

Round duration - 7 days
Round difficulty - Easy

Web Development, Databases

Round 2 - Telephonic Call 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Medium

This was the final round and was a telephonic interview.

  • Q1. 

    Implementation of HashMap with Constant Time Operations

    Design a data structure that effectively stores a key-value mapping and performs specific operations in constant time.

    Explanation:

    Your data stru...

  • Ans. 

    Design a data structure implementing HashMap with constant time operations like INSERT, DELETE, SEARCH, GET, GET_SIZE, IS_EMPTY.

    • Use a combination of hash table and linked list to achieve constant time operations.

    • For INSERT and UPDATE, hash the key to get the index and store the (key, value) pair in the linked list at that index.

    • For DELETE, SEARCH, and GET, hash the key to find the index, then traverse the linked list a...

  • Answered by AI
  • Q2. 

    Isomorphic Trees Problem Statement

    You are provided with two arbitrary binary trees. Determine if both trees are isomorphic.

    Explanation:

    Two binary trees are considered isomorphic if one tree can be tr...

  • Ans. 

    Determine if two binary trees are isomorphic by swapping left and right subtrees.

    • Check if both trees are empty, return 'yes' if they are

    • Perform the swap operation on any node at any level

    • Compare the structures of both trees after swapping to determine isomorphism

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - Intern in NoidaEligibility criteriaNo criteriaInnovaccer interview preparation:Topics to prepare for the interview - Data Structures, Machine Learning, Web Development, Algorithms, CS fundamentalsTime required to prepare for the interview - 2 monthsInterview preparation tips for other job seekers

Tip 1 : Practice Data Structures and Algorithms from websites like leetcode,geeksforgeeks etc. 
Tip 2 : Learn one skill — be it web development, android development, or Machine Learning, make some projects on it. Don’t try to learn everything, pick 1 thing, and master it.
Tip 3 : Study computer fundamentals — DBMS, Operating Systems, OOPs, Computer Networks before your interviews.

Application resume tips for other job seekers

Tip 1 : Keep it simple and concise.
Tip 2 : Include some personal projects

Final outcome of the interviewSelected

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Technical round
  • Q2. Append element into Array question
  • Ans. 

    Appending an element to an array involves adding a new item to the end of the existing array.

    • Use the push() method in JavaScript: let arr = ['a', 'b']; arr.push('c'); // arr is now ['a', 'b', 'c']

    • In Python, use the append() method: arr = ['a', 'b']; arr.append('c'); # arr is now ['a', 'b', 'c']

    • In Java, use ArrayList: ArrayList<String> arr = new ArrayList<>(Arrays.asList('a', 'b')); arr.add('c'); // arr is n...

  • Answered by AI
Round 2 - One-on-one 

(1 Question)

  • Q1. Vector question on array
Round 3 - One-on-one 

(1 Question)

  • Q1. Vector based question less time complexity
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Jul 2024. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Questions on DSA were asked by the interviewer at first.
  • Q2. Some theoretical questions from DBMS and oops and also asked to write some SQL queries.
Round 2 - Technical 

(2 Questions)

  • Q1. This round was also similar to the first technical round at first given a DSA question.
  • Q2. After that I was asked to write some SQL queries and also questions from resume were asked.
Round 3 - One-on-one 

(2 Questions)

  • Q1. This was managerial round which was was offline in person interview. At first he asked sone basic DBMS and oops questions.
  • Q2. Then gave me a question and asked me to write a complex SQL query.
  • Ans. 

    A complex SQL query can involve multiple joins, subqueries, and aggregations to extract meaningful data from relational databases.

    • Use JOINs to combine data from multiple tables, e.g., SELECT * FROM Orders JOIN Customers ON Orders.CustomerID = Customers.CustomerID.

    • Incorporate GROUP BY to aggregate data, e.g., SELECT COUNT(*), ProductID FROM Orders GROUP BY ProductID.

    • Utilize subqueries for filtering, e.g., SELECT * FROM ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Brush up DSA and work on SQL queries.

I appeared for an interview in Dec 2016.

Interview Questionnaire 

7 Questions

  • Q1. Questions on linked list
  • Q2. Implement LRU
  • Ans. 

    LRU (Least Recently Used) is a caching algorithm that removes the least recently used item when the cache is full.

    • LRU uses a combination of a doubly linked list and a hash map.

    • The doubly linked list keeps track of the order of recently used items.

    • The hash map allows for efficient lookup of items in the cache.

    • When a new item is accessed, it is moved to the front of the list.

    • If the cache is full, the item at the end of t...

  • Answered by AI
  • Q3. Questions on C, c++
  • Q4. Questions on DBMS
  • Q5. Questions on Operating Systems
  • Q6. Tell all things that happen inside a system when we press 'k' on the notepad.
  • Ans. 

    Pressing 'k' on Notepad triggers a series of events including key press event, character insertion, and potential text manipulation.

    • When 'k' is pressed, a key press event is triggered

    • The key press event is captured by the Notepad application

    • The character 'k' is inserted at the current cursor position

    • If any text is selected, it may be replaced by the character 'k'

    • The cursor position is updated to the next position

    • If aut...

  • Answered by AI
  • Q7. Basic HR questions

Interview Preparation Tips

Round: Technical Interview
Tips: Prepare Data Structure and Algorithms well

Round: Technical Interview
Tips: Have decent knowledge of technical subjects.

Skills: Programming, Data Structures, Algorithm, Operating System Basics, Knowledge About Database Managements Systems
College Name: IIT Roorkee

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. JavaScript based, reduce, map, Database indexing
Are these interview questions helpful?
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 Sep 2023. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - Coding Test 

Programming assessment tools used to objectively evaluate a candidates programing skills across parameters such as problem solving, coding aptitude and debugging

Round 3 - One-on-one 

(2 Questions)

  • Q1. 1. Do you prefer working independently or as a part of a team
  • Ans. 

    I value both independent work and teamwork, as each has unique benefits that contribute to successful software development.

    • Independence: Working independently allows for deep focus and personal accountability, which can lead to innovative solutions. For example, I once developed a feature on my own that improved application performance by 30%.

    • Team Collaboration: Collaborating with a team fosters diverse ideas and persp...

  • Answered by AI
  • Q2. As a part of an

Interview Preparation Tips

Interview preparation tips for other job seekers - Hi, I'm anjali devi maddu and I'm writing about the position of employ with your company . I'm submitted my resume.I think you'll find that my brief personal details could be a good fit for the job and I'd love to discuss my qualifications in more details
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Coding Test 

Three question on coding medium to hard level

Round 2 - Technical 

(1 Question)

  • Q1. Technical interview one coding question you have to solve

Software Engineer Interview Questions & Answers

Cohesity user image Vaishnavi Birajdar

posted on 29 Mar 2024

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

I applied via Campus Placement and was interviewed in Sep 2023. There were 2 interview rounds.

Round 1 - Coding Test 

Test - one coding question 1 sql query 20 mcq on cs fundamental

Round 2 - Technical 

(1 Question)

  • Q1. Questions on object oriented paradigm

Tell us how to improve this page.

Member Technical Staff
71 salaries
unlock blur

₹11.1 L/yr - ₹20.5 L/yr

Senior Member of Technical Staff
49 salaries
unlock blur

₹15.7 L/yr - ₹29 L/yr

Product Manager
24 salaries
unlock blur

₹22 L/yr - ₹38.5 L/yr

Customer Success Manager
22 salaries
unlock blur

₹19 L/yr - ₹28.5 L/yr

Software Developer
19 salaries
unlock blur

₹10.5 L/yr - ₹18.6 L/yr

Explore more salaries
Compare Vymo Technologies with

Cohesity

3.9
Compare

Celebal Technologies

3.1
Compare

NoBrokerHood

3.0
Compare

Innovaccer

3.5
Compare
write
Share an Interview