Upload Button Icon Add office photos

Filter interviews by

Vistaar Systems Software Engineer Interview Questions and Answers

Updated 15 May 2023

Vistaar Systems Software Engineer Interview Experiences

1 interview found

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Approached by Company and was interviewed before May 2022. 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 

Coding platform normally

Round 3 - One-on-one 

(2 Questions)

  • Q1. What is Polymorphism
  • Ans. 

    Polymorphism is the ability of an object to take on many forms.

    • It allows objects of different classes to be treated as if they were objects of the same class.

    • It is achieved through method overriding and method overloading.

    • Example: A shape class can have different subclasses like circle, square, triangle, etc. and all can be treated as shapes.

    • Example: A method can take different types of objects as parameters and perfor

  • Answered by AI
  • Q2. What is deadlock and how you prevent one?
  • Ans. 

    Deadlock is a situation where two or more processes are unable to proceed because they are waiting for each other to release resources.

    • Prevent deadlock by using a proper resource allocation strategy

    • Avoid holding onto resources for too long

    • Use timeouts to release resources if they are not being used

    • Implement a deadlock detection and recovery mechanism

    • Avoid circular wait by enforcing a strict ordering of resource request

  • Answered by AI

Skills evaluated in this interview

Interview questions from similar companies

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 2024. There were 3 interview rounds.

Round 1 - Coding Test 

Focusing on moderate level patterns

Round 2 - Technical 

(4 Questions)

  • Q1. Discuss object oriented principles in depth
  • Ans. 

    Object oriented principles are fundamental concepts in software development that focus on organizing code into objects with properties and behaviors.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit.

    • Inheritance: Allowing a new class to inherit properties and behaviors from an existing class.

    • Polymorphism: The ability for objects of different classes to respond to the same message in di...

  • Answered by AI
  • Q2. Deep discuss of interface
  • Q3. Deep discuss of exception, multithreading
  • Q4. Deep discuss of oop
Round 3 - HR 

(1 Question)

  • Q1. Asked some tricky question related to real life problems

Interview Preparation Tips

Interview preparation tips for other job seekers - All Good 👍🏻
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed in Jul 2024.

Round 1 - Coding Test 

Leet code medium level question

Round 2 - Technical 

(2 Questions)

  • Q1. About Java Streams
  • Q2. Restful API coding completion based on given file
Round 3 - HR 

(2 Questions)

  • Q1. To check your attitude
  • Q2. Given detailed about company and what project you are going to work on?
Round 4 - One-on-one 

(5 Questions)

  • Q1. Hashmap working
  • Ans. 

    Hashmap is a data structure that stores key-value pairs and allows for fast retrieval of values based on keys.

    • Hashmap uses a hashing function to map keys to indices in an array.

    • It allows for constant time complexity O(1) for insertion, deletion, and retrieval operations.

    • Example: HashMap<String, Integer> map = new HashMap<>(); map.put("key", 123); int value = map.get("key");

  • Answered by AI
  • Q2. Multithreading cases
  • Q3. Scenario specific on how to handle multiple events on a single variable to have accurate result
  • Q4. Database indexing
  • Q5. Architecture level
Interview experience
4
Good
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 2 interview rounds.

Round 1 - Coding Test 

On Hackerearth (1 hour) ,array string two pointer sliding window, solve 150 interview sheet leetcode

Round 2 - Technical 

(5 Questions)

  • Q1. Introduction and Next Js project (SSR,API,AI)
  • Q2. Javascript (@strict,hoisting) , Component in react
  • Q3. Joins,Referential Integrity,Left Outer Join, Find 3rd highest salary of employee.
  • Q4. Leetcode Q3 ,Q84, Q560, Q5
  • Q5. Linked list, Implement stack using array

Interview Preparation Tips

Interview preparation tips for other job seekers - Study all the topics basics , medium & hard . Unthinkable can ask anything (literally anything)
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Array questions - rearranging letters for encryption

Round 2 - One-on-one 

(2 Questions)

  • Q1. Introduce yourself and your experience in college.
  • Q2. Database and sql related questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep true to job posting. Hiring for another job and then, making people do something else is not good.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Springboot notations
  • Q2. How to handle multiple request on springboot
  • Ans. 

    Use thread pooling and asynchronous processing to handle multiple requests efficiently in Spring Boot.

    • Implement thread pooling to manage multiple requests concurrently.

    • Use asynchronous processing to handle requests without blocking the main thread.

    • Consider using reactive programming with Spring WebFlux for better scalability.

    • Optimize database queries and external API calls to reduce response times.

    • Implement caching mec...

  • Answered by AI
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. What is server and abap server
  • Ans. 

    A server is a computer or software that provides functionality for other programs or devices. ABAP server is a server that runs ABAP programs.

    • A server is a computer or software that provides services or resources to other computers or programs.

    • ABAP server is a server that runs ABAP (Advanced Business Application Programming) programs, commonly used in SAP systems.

    • ABAP server handles requests from clients and executes A...

  • Answered by AI

Skills evaluated in this interview

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

(2 Questions)

  • Q1. Coding question
  • Q2. Asked to make some component in react
Round 2 - Technical 

(2 Questions)

  • Q1. Javascript questions
  • Q2. Normal js questions
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

60 MCQ questions are there

Round 2 - Technical 

(2 Questions)

  • Q1. Simple java questions are there
  • Q2. Array list vs Linked List
  • Ans. 

    Array list is faster for accessing elements by index, while Linked List is better for frequent insertions and deletions.

    • Array list has constant time access to elements by index, while Linked List requires traversing the list to find an element.

    • Linked List is better for frequent insertions and deletions as it only requires changing pointers, while Array list may require shifting elements.

    • Array list uses contiguous memor...

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Company Website and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - Group Discussion 

Initially, they shortlist the candidates and group them into batches of 15 students. During this process, they conduct a group discussion (GD) in which each student has 3 minutes to think, followed by an opportunity to describe their points in 2 to 3 minutes.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and express your point clearly.

Vistaar Systems Interview FAQs

How many rounds are there in Vistaar Systems Software Engineer interview?
Vistaar Systems interview process usually has 3 rounds. The most common rounds in the Vistaar Systems interview process are Resume Shortlist, Coding Test and One-on-one Round.
What are the top questions asked in Vistaar Systems Software Engineer interview?

Some of the top questions asked at the Vistaar Systems Software Engineer interview -

  1. What is deadlock and how you prevent o...read more
  2. What is Polymorph...read more

Tell us how to improve this page.

Vistaar Systems Software Engineer Salary
based on 30 salaries
₹4 L/yr - ₹6.8 L/yr
35% less than the average Software Engineer Salary in India
View more details

Vistaar Systems Software Engineer Reviews and Ratings

based on 5 reviews

2.7/5

Rating in categories

2.5

Skill development

2.4

Work-life balance

2.5

Salary

2.8

Job security

2.6

Company culture

2.3

Promotions

2.4

Work satisfaction

Explore 5 Reviews and Ratings
Software Engineer
30 salaries
unlock blur

₹4 L/yr - ₹6.8 L/yr

Senior Software Engineer
25 salaries
unlock blur

₹5.5 L/yr - ₹8.7 L/yr

Senior Quality Consultant
17 salaries
unlock blur

₹4.7 L/yr - ₹10.6 L/yr

Technical Manager
12 salaries
unlock blur

₹15.8 L/yr - ₹24.3 L/yr

Technical Lead
11 salaries
unlock blur

₹8.2 L/yr - ₹13.6 L/yr

Explore more salaries
Compare Vistaar Systems with

Algonomy

3.9
Compare

Tally Solutions

4.2
Compare

Ramco Systems

3.9
Compare

Eka Software Solutions

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