Upload Button Icon Add office photos

Filter interviews by

Vistaar Technologies Software Developer Interview Questions and Answers

Updated 29 Sep 2024

Vistaar Technologies Software Developer Interview Experiences

2 interviews found

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

I applied via Campus Placement

Round 1 - Aptitude Test 

Logical
Quantitative
Mcq on Dsa like
1.height of binary tree
Question to code on paper 3 code out of which 2 were compulsory to attend
1.string and a rotated string is equal
2.rearrange array like even number first then odd numbers
And so on

Round 2 - Technical 

(1 Question)

  • Q1. 1. Prepare array String well for this round easy question are expected to code 2. Prepare the most asked puzzle gfg 100 puzzle 2 were asked during the interview 3. Sql queries you have to write and show ...

Interview Preparation Tips

Interview preparation tips for other job seekers - Clear your basic and you are good to go add stuff in your resume that you are aware off.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Aptitude Test 

Aptitude test is on common topics like percentage, logical reasoning etc The duration is between 0.5-0.75 hrs

Round 2 - Coding Test 

Basic SQL queries, basic coding questions like find second largest number

Software Developer Interview Questions Asked at Other Companies

asked in Amazon
Q1. Maximum Subarray Sum Problem Statement Given an array of integers ... read more
asked in Amazon
Q2. Minimum Number of Platforms Needed Problem Statement You are give ... read more
asked in Rakuten
Q3. Merge Two Sorted Arrays Problem Statement Given two sorted intege ... read more
asked in Nagarro
Q4. Crazy Numbers Pattern Challenge Ninja enjoys arranging numbers in ... read more
asked in PhonePe
Q5. Form a Triangle Problem Statement You are given an array of integ ... read more

Interview questions from similar companies

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

I was interviewed in Dec 2024.

Round 1 - Aptitude Test 

Logical intelligence

Round 2 - Group Discussion 

Any information can be discussed.

Round 3 - Case Study 

A comprehensive analysis of an individual, group, situation, or phenomenon over an extended duration.

Round 4 - Assignment 

The reporter vanished while on assignment in the war zone.

Round 5 - One-on-one 

(1 Question)

  • Q1. Denoting or referring to a situation in which two parties come into direct contact, opposition, or correspondence

Interview Preparation Tips

Interview preparation tips for other job seekers - Clearly identify your career goals, utilize job search platforms and company websites, tailor your resume and cover letter for each application, actively network on professional platforms such as LinkedIn, attend career fairs, develop relevant skills, and maintain a strong online presence to showcase your professional brand.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in Nov 2024. There were 3 interview rounds.

Round 1 - Coding Test 

Basic DSA from the hacker rank website

Round 2 - Technical 

(1 Question)

  • Q1. Basic to medium questions on javascript, nodejs, MySQL joints, html5 tags
Round 3 - Technical 

(1 Question)

  • Q1. Real life problems, Use cases

Interview Preparation Tips

Interview preparation tips for other job seekers - I have applied for Full stack developer role. Be strong at real time implementations and use cases
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Group Discussion 

Technology advantage or not

Round 2 - Aptitude Test 

All aptitude topics,logical reasoning

Round 3 - Technical 

(2 Questions)

  • Q1. Oops,2 coding questions
  • Q2. Palindrome,even number
Round 4 - HR 

(2 Questions)

  • Q1. What do you know
  • Q2. Do you have any questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Similar to tcs,infosys pattern
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Difference between linked list and array list
  • Ans. 

    Linked list is a data structure where elements are stored in nodes with pointers to the next node. Array list is a dynamic array that can grow or shrink in size.

    • Linked list allows for efficient insertion and deletion of elements anywhere in the list.

    • Array list provides fast access to elements using index, but slower insertion and deletion compared to linked list.

    • Example: Linked list - 1 -> 2 -> 3 -> 4 -> 5, Array list

  • Answered by AI
  • Q2. Difference between @controller and @ Rest controller
  • Ans. 

    The @Controller annotation is used for traditional MVC controllers, while @RestController is used for RESTful web services.

    • The @Controller annotation is used to define a class as a Spring MVC controller, which can handle HTTP requests and return a view.

    • The @RestController annotation is used to define a class as a controller for RESTful web services, which can handle HTTP requests and return data in JSON or XML format.

    • T...

  • Answered by AI

Skills evaluated in this interview

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

(2 Questions)

  • Q1. Why do you want to switch
  • Ans. 

    I want to switch to explore new technologies and challenges in a different industry.

    • Interested in learning new skills and technologies

    • Seeking new challenges and opportunities for growth

    • Want to explore different industry perspectives

  • Answered by AI
  • Q2. Salry expectations
Round 2 - Technical 

(2 Questions)

  • Q1. Question on oop concepts
  • Q2. Coding questions
Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-

I applied via Referral

Round 1 - Technical 

(1 Question)

  • Q1. Basic core Java question.
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed in Apr 2024. There were 2 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 

I was asked with writing the code and algorithms. Also lots of MySQL queries

Interview Preparation Tips

Interview preparation tips for other job seekers - They hide too many things to the employees who are about to join. For instance it's a client based job. You'll have to give proper multiple rounds of interview for a startup type company (their clients).
You need to be present in the office for more than 9hrs even if you don't have any work.
It doesn't matter for which position you are hired you'll be put to any of the technology depending on the client requirements.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - One-on-one 

(5 Questions)

  • Q1. Oops related questions
  • Q2. How you can handle exceptions in case of inheritance
  • Ans. 

    Exceptions in inheritance can be handled by using try-catch blocks in the derived class.

    • Use try-catch blocks in the derived class to catch exceptions thrown by the base class methods.

    • Handle exceptions specific to the derived class in the catch block.

    • Consider using super() to call the base class constructor within the try block.

    • Avoid catching general exceptions unless necessary to maintain code clarity.

    • Ensure proper exc...

  • Answered by AI
  • Q3. Collections questions
  • Q4. Live coding based on the answers you give
  • Q5. Your current project and how you handled difficulties in that

Interview Preparation Tips

Topics to prepare for FIS Software Developer interview:
  • Core Java
  • Spring Boot
  • Microservices
Interview preparation tips for other job seekers - Have a good hands on with all the Java concepts you should be able to explain every concept using code. Don't just reply on online interview questions always think very deeply about each and every concept this will help you to tackle hardest interview questions with deep concept knowledge

Vistaar Technologies Interview FAQs

How many rounds are there in Vistaar Technologies Software Developer interview?
Vistaar Technologies interview process usually has 2 rounds. The most common rounds in the Vistaar Technologies interview process are Aptitude Test, Technical and Coding Test.

Tell us how to improve this page.

Vistaar Technologies Software Developer Interview Process

based on 2 interviews

Interview experience

4.5
  
Good
View more
Vistaar Technologies Software Developer Salary
based on 8 salaries
₹5 L/yr - ₹6 L/yr
33% less than the average Software Developer Salary in India
View more details
Software Engineer
86 salaries
unlock blur

₹4 L/yr - ₹6.7 L/yr

Senior Software Engineer
52 salaries
unlock blur

₹5 L/yr - ₹11 L/yr

Trainee
26 salaries
unlock blur

₹2.1 L/yr - ₹4 L/yr

Technical Lead
13 salaries
unlock blur

₹11 L/yr - ₹12.7 L/yr

Software Engineer Trainee
10 salaries
unlock blur

₹3.3 L/yr - ₹4 L/yr

Explore more salaries
Compare Vistaar Technologies with

Algonomy

3.9
Compare

Capillary Technologies

3.5
Compare

Ramco Systems

3.9
Compare

Eka Software Solutions

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