Upload Button Icon Add office photos

Filter interviews by

Vision Waves Interview Questions and Answers

Updated 6 Dec 2024

Vision Waves Interview Experiences

Popular Designations

5 interviews found

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

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

Round 1 - Coding Test 

3 Java and 3 Sql query

Round 2 - Technical 

(2 Questions)

  • Q1. Project discussion
  • Q2. Core java questions

Interview Preparation Tips

Topics to prepare for Vision Waves Software Developer interview:
  • Java

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (43)
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

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

Round 1 - Coding Test 

3 Java question 3 sql query

Round 2 - Technical 

(2 Questions)

  • Q1. Tell me about your self
  • Q2. Project discussion

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (43)
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected
Round 1 - Coding Test 

30 minutes coding qestion
captilized the first character of the string

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (43)
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Walk-in and was interviewed in Mar 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

In round 1 ,it was combined test of aptitude ,technical and coding test.

Round 2 - Technical 

(2 Questions)

  • Q1. What are the oops pillar?
  • Ans. 

    The four pillars of Object-Oriented Programming are Inheritance, Encapsulation, Abstraction, and Polymorphism.

    • Inheritance allows a class to inherit properties and behavior from another class.

    • Encapsulation hides the internal state of an object and restricts access to it.

    • Abstraction focuses on the essential characteristics of an object while ignoring irrelevant details.

    • Polymorphism allows objects to be treated as instanc...

  • Answered by AI
  • Q2. What is inheritance and give examples?
  • Ans. 

    Inheritance is a mechanism in Java where a new class inherits properties and behaviors from an existing class.

    • Allows a class to inherit attributes and methods from another class

    • Promotes code reusability and reduces redundancy

    • Types of inheritance: single, multilevel, hierarchical, multiple, hybrid

    • Example: class Dog extends Animal

  • Answered by AI

Java Developer Interview Questions asked at other Companies

Q1. Sort 0 and 1 Problem Statement Given an integer array ARR of size N containing only integers 0 and 1, implement a function to sort this array. The solution should scan the array only once without using any additional arrays. Input: The firs... read more
View answer (4)

Vision Waves interview questions for popular designations

 Software Developer

 (3)

 Java Developer

 (1)

 Associate Software Engineer

 (1)

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

4 java Questions and 4 SQL queries

Associate Software Engineer Interview Questions asked at other Companies

Q1. Triplets with Given Sum Problem Given an array or list ARR consisting of N integers, your task is to identify all distinct triplets within the array that sum up to a specified number K. Explanation: A triplet is a set {ARR[i], ARR[j], ARR[k... read more
View answer (2)

Interview questions from similar companies

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

Interview Questionnaire 

2 Questions

  • Q1. Simple program
  • Q2. I wrote a simple program in C

Interview Preparation Tips

Interview preparation tips for other job seekers - Be bold and confident

I applied via Company Website and was interviewed in Oct 2018. There was 0 interview round.

Interview Preparation Tips

General Tips: This interview was a technical one but was majorly a stress test. It lasted for about 1 hour 10 minutes. The interviewer wanted to test both my knowledge and communication skills. Most of the questions asked to me were related to my B.Tech curriculum i.e. computer science related topics. He stressed a lot on the basics related to my project topic. Luckily I was able to answer most of the questions correctly. I tried to answer each question with examples and also used props on the table (like pens, paperweights, pen stands etc.) to explain my theories. It was my first offcampus interview, and I think I did pretty well for a fresher.
You need to stay calm and should apply presence of mind. Please go through the job description thoroughly word-by-word and recheck your resume to ensure that you are a best-fit for the position.
Skills: Communication, Body Language, Problem Solving, Leadership, Presentation Skills
Duration: <1 week

I applied via Naukri.com and was interviewed before Oct 2019. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. What technical challenges have you faced in your work till now and how did you overcome it?

Interview Preparation Tips

Interview preparation tips for other job seekers - Be truthful and give detailed explanation of the issues and how it was resolved. Explain the severity of the problem and what blockage it had caused in your daily work. How did you chose a solution and how fast was it implemented.

I applied via tcs and was interviewed before Jun 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Java based

Interview Preparation Tips

Interview preparation tips for other job seekers - good

I appeared for an interview before Nov 2020.

Round 1 - Coding Test 

(2 Questions)

Round duration - 90 minutes
Round difficulty - Medium

Timing was around 10am
It was quite a normal online examination kind of environment 
People from the company were there to invigilate 
All were quite nice and helpful in case the exam got stuck

  • Q1. 

    Ninja and Alien Language Order Problem

    An alien dropped its dictionary while visiting Earth. The Ninja wants to determine the order of characters used in the alien language, based on the given list of wor...

  • Ans. 

    Determine the order of characters in an alien language based on a list of words.

    • Create a graph data structure to represent the relationships between characters in the words.

    • Perform a topological sort on the graph to find the order of characters.

    • Return the smallest lexicographical order of characters as the result.

  • Answered by AI
  • Q2. 

    Check Duplicate Within K Distance

    Given an array of integers arr of size N and an integer K, determine if there are any duplicate elements within a distance of K from each other in the array. Return "true...

  • Ans. 

    Check if there are any duplicate elements within a distance of K from each other in the array.

    • Iterate through the array and keep track of the indices of elements using a hashmap.

    • For each element, check if it already exists in the hashmap within distance K.

    • Return true if a duplicate is found within distance K, otherwise return false.

  • Answered by AI
Round 2 - Face to Face 

(1 Question)

Round duration - 30 minutes
Round difficulty - Medium

Timing was 2pm when it started
Interviewer was polite

  • Q1. 

    Kth Largest Element Problem Statement

    Ninja enjoys working with numbers, and Alice challenges him to find the Kth largest value from a given list of numbers.

    Input:

    The first line contains an integer 'T...
  • Ans. 

    The task is to find the Kth largest element in a given list of numbers for each test case.

    • Read the number of test cases 'T'

    • For each test case, read the number of elements 'N' and the Kth largest number to find 'K'

    • Sort the array in descending order and output the Kth element

  • Answered by AI
Round 3 - HR 

Round duration - 20 minutes
Round difficulty - Easy

Timing was 9 am onwards 
Interviewer was good enough

Interview Preparation Tips

Professional and academic backgroundI applied for the job as Software Developer in DelhiEligibility criteriaAbove 7 CGPA with no pending backlogsWipro Limited interview preparation:Topics to prepare for the interview - Java, C++, DBMS, Data Structures, Dot net, HTML, CSS, JSTime required to prepare for the interview - 6 monthsInterview preparation tips for other job seekers

Tip 1 : Focus on specialization of any one skill and keep a basic knowledge of all the skills you mention in your resume
Tip 2 : Gain confidence in presenting yourself by practicing well before
Tip 3 : Gain a basic knowledge of the company you go for selection

Application resume tips for other job seekers

Tip 1 : Resume should be simple and precise but pretty smart to cover your skills 
Tip 2 : Mention what you really know,no false things

Final outcome of the interviewRejected

Skills evaluated in this interview

Vision Waves Interview FAQs

How many rounds are there in Vision Waves interview?
Vision Waves interview process usually has 1-2 rounds. The most common rounds in the Vision Waves interview process are Coding Test, Technical and Aptitude Test.
How to prepare for Vision Waves interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at Vision Waves. The most common topics and skills that interviewers at Vision Waves expect are AWS, Azure Cloud, Brd, Computer Networking and Design Patterns.
What are the top questions asked in Vision Waves interview?

Some of the top questions asked at the Vision Waves interview -

  1. what is inheritance and give exampl...read more
  2. what are the oops pill...read more
  3. Project discuss...read more

Tell us how to improve this page.

Vision Waves Interview Process

based on 5 interviews

Interview experience

4.2
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.5k Interviews
Accenture Interview Questions
3.8
 • 8.2k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Cognizant Interview Questions
3.7
 • 5.6k Interviews
Capgemini Interview Questions
3.7
 • 4.8k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.9k Interviews
HCLTech Interview Questions
3.5
 • 3.9k Interviews
ICICI Bank Interview Questions
4.0
 • 2.4k Interviews
HDFC Bank Interview Questions
3.9
 • 2.2k Interviews
View all

Vision Waves Reviews and Ratings

based on 3 reviews

2.0/5

Rating in categories

2.4

Skill development

1.7

Work-life balance

3.1

Salary

3.4

Job security

1.7

Company culture

2.4

Promotions

1.7

Work satisfaction

Explore 3 Reviews and Ratings
Devops Engineer

Indore

3-7 Yrs

Not Disclosed

Sr. Java Developer

Indore

4-8 Yrs

Not Disclosed

Product Manager

Indore

5-9 Yrs

Not Disclosed

Explore more jobs
Compare Vision Waves 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