Upload Button Icon Add office photos

Filter interviews by

Vistaar Technologies Interview Questions, Process, and Tips

Updated 20 Oct 2024

Top Vistaar Technologies Interview Questions and Answers

View all 10 questions

Vistaar Technologies Interview Experiences

Popular Designations

22 interviews found

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

I applied via campus placement at Vivekanand Education Society's Institute of Technology, Mumbai and was interviewed in Sep 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Basic quantitative questions along with DSA and coding questions were asked

Round 2 - Technical 

(5 Questions)

  • Q1. Explain Greedy algorithms and Divide and Conquer techniques
  • Ans. 

    Greedy algorithms make the optimal choice at each step, while Divide and Conquer breaks a problem into smaller subproblems.

    • Greedy algorithms select the best option at each step without considering the overall solution

    • Divide and Conquer divides a problem into smaller subproblems, solves them recursively, and then combines the solutions

    • Example of Greedy algorithm: Dijkstra's shortest path algorithm

    • Example of Divide and C

  • Answered by AI
  • Q2. Explain Joins, types of joins
  • Ans. 

    Joins are used to combine rows from two or more tables based on a related column between them.

    • Types of joins include INNER JOIN, LEFT JOIN, RIGHT JOIN, and FULL JOIN.

    • INNER JOIN returns rows when there is at least one match in both tables.

    • LEFT JOIN returns all rows from the left table and the matched rows from the right table.

    • RIGHT JOIN returns all rows from the right table and the matched rows from the left table.

    • FULL ...

  • Answered by AI
  • Q3. Explain Multithreading
  • Ans. 

    Multithreading is the ability of a CPU to execute multiple threads concurrently, allowing for improved performance and responsiveness in software applications.

    • Multithreading allows multiple threads to run concurrently within a single process.

    • Each thread has its own stack and program counter, but shares the same memory space.

    • Multithreading can improve performance by utilizing multiple CPU cores efficiently.

    • Examples of m...

  • Answered by AI
  • Q4. Explain deadlocks
  • Ans. 

    Deadlocks occur when two or more processes are unable to proceed because each is waiting for the other to release a resource.

    • Deadlocks happen when processes compete for resources and each holds a resource needed by the other.

    • Four conditions must hold for a deadlock to occur: mutual exclusion, hold and wait, no preemption, and circular wait.

    • Examples of resources that can lead to deadlocks include locks, semaphores, and ...

  • Answered by AI
  • Q5. Explain Binary search algorithm
  • Ans. 

    Binary search is a divide and conquer algorithm that searches for a target value within a sorted array.

    • Divide the array in half and compare the target value with the middle element

    • If the target value is less than the middle element, search the left half of the array

    • If the target value is greater than the middle element, search the right half of the array

    • Repeat the process until the target value is found or the subarray

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Practice DSA, SQL, OS a lot

Skills evaluated in this interview

Software Engineer Trainee Interview Questions asked at other Companies

Q1. Palindromic Linked ListYou are given a singly Linked List of integers. Your task is to return true if the given singly linked list is a palindrome otherwise returns false. For example: The given linked list is 1 -> 2 -> 3 -> 2->... read more
View answer (4)

Trainee Interview Questions & Answers

user image Anonymous

posted on 27 Sep 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Aptitude Test 

Aptitude, Logical, Data Structures, Coding

Round 2 - Technical 

(2 Questions)

  • Q1. Tell me abt the projects that you have developed during academics?
  • Ans. 

    I have developed multiple projects during my academics including a web-based student management system and a mobile app for tracking daily expenses.

    • Web-based student management system: Developed using HTML, CSS, JavaScript, PHP, and MySQL. Allowed users to register, login, and manage their academic information.

    • Mobile app for tracking daily expenses: Built using React Native. Users could input their daily expenses and v

  • Answered by AI
  • Q2. Difference between delete, truncate and drop in SQL?
  • Ans. 

    Delete removes specific rows, truncate removes all rows, drop removes entire table structure.

    • Delete is a DML command used to remove specific rows from a table.

    • Truncate is a DDL command used to remove all rows from a table.

    • Drop is a DDL command used to remove the entire table structure.

    • Delete can be rolled back, truncate cannot be rolled back, drop cannot be rolled back.

  • Answered by AI

Skills evaluated in this interview

Trainee Interview Questions asked at other Companies

Q1. Ques1: There is a big file of words which is dynamically changing. We are continuously adding some words into it. How would you keep track of top 10 trending words at each moment? Ques2:Write a function that returns the length of the longes... read more
View answer (2)
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.

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray SumGiven an array of numbers, find the maximum sum of any contiguous subarray of the array. For example, given the array [34, -50, 42, 14, -5, 86], the maximum sum would be 137, since we would take elements 42, 14, -5, and ... read more
View answer (39)

Software Engineer Interview Questions & Answers

user image Vedant Gosavi

posted on 3 Feb 2024

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
Not Selected

I was interviewed in Jan 2024.

Round 1 - Aptitude Test 

There was pen paper test which includes aptitude , dsa mcq and 2 coding questions

Round 2 - Coding Test 

It was a pen paper test 2 moderate level string codes

Round 3 - Technical 

(5 Questions)

  • Q1. There were 3 technical rounds.
  • Q2. Explain project
  • Ans. 

    Developed a web-based project management tool for tracking tasks and deadlines.

    • Used HTML, CSS, and JavaScript for the frontend

    • Implemented RESTful APIs using Node.js and Express.js for the backend

    • Utilized a PostgreSQL database for storing project data

    • Implemented user authentication and authorization using JWT

    • Integrated third-party libraries like Moment.js for date and time manipulation

  • Answered by AI
  • Q3. Write code, simple codes
  • Q4. Os questions on processer
  • Q5. DSA questions on array, linked list

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (169)

Vistaar Technologies interview questions for popular designations

 Trainee

 (5)

 Software Engineer

 (4)

 Software Developer

 (2)

 Software Engineer Trainee

 (2)

 Softwaretest Engineer

 (2)

 Computer Engineer

 (1)

 Customer Support Executive

 (1)

 Graduate Engineer Trainee (Get)

 (1)

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

I applied via Campus Placement and was interviewed in Feb 2024. There were 4 interview rounds.

Round 1 - Aptitude Test 

Quants, Logical, Puzzles all are MBA CET level questions

Round 2 - Technical 

(1 Question)

  • Q1. MCQ related to Data Structures and OOPs. Question were from GATE 2024 Exam
Round 3 - Coding Test 

In person Coding Round.

Round 4 - Technical 

(1 Question)

  • Q1. DSA Concept, OOPs, SQL questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare Arrays, Stack, String, Linked List

Graduate Trainee Interview Questions asked at other Companies

Q1. Given an array, how do you get the count of pairs that sum to even
View answer (8)
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Aptitude Test 

It is based on logical and reasoning and data Structure and there were two coding Questions
Tip :- If you solve that coding questions in Java or C++ then Your chances are Absolute

Round 2 - Technical 

(1 Question)

  • Q1. It is L1 Round it is like all interviews addition with Puzzles it is not elimination round
Round 3 - Technical 

(1 Question)

  • Q1. It is L2 Round And it is Elimination round Same Questions but in these they ask about project and i didnt get selected

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepare with basic stuff they dont ask in too deep

Computer Engineer Interview Questions asked at other Companies

Q1. How many programming languages do you Konw??
View answer (2)
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Coding Test 

2 - 3 medium level coding questions

Round 2 - Technical 

(1 Question)

  • Q1. Good interview experience. mostly talk about projects I did in college 1-2 coding question.
Round 3 - Technical 

(1 Question)

  • Q1. Basic coding and SQL questions
Round 4 - HR 

(1 Question)

  • Q1. HR round was tough, they will check how you will handle pressure

Softwaretest Engineer Interview Questions asked at other Companies

Q1. What is boundary value analysis? How do u perform boundary value testing for User ID & Password textfields in login page?
View answer (2)

Trainee Interview Questions & Answers

user image Anonymous

posted on 17 Oct 2023

Interview experience
5
Excellent
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 5 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 - Aptitude Test 

Train questions, quant, reasoning

Round 3 - Technical 

(3 Questions)

  • Q1. What is binary search puzzle
  • Ans. 

    Binary search is a search algorithm that finds the position of a target value within a sorted array.

    • Divide the array in half and compare the target value with the middle element

    • If the target value is smaller, search the left half of the array. If larger, search the right half

    • Repeat the process until the target value is found or the subarray is empty

  • Answered by AI
  • Q2. What is hashMap
  • Ans. 

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

    • HashMap is part of the Java Collections framework.

    • It uses hashing to store and retrieve elements quickly.

    • Each key in a HashMap must be unique.

    • Example: HashMap map = new HashMap<>(); map.put("apple", 5); int value = map.get("apple");

  • Answered by AI
  • Q3. Dbms queries views joins
Round 4 - Technical 

(3 Questions)

  • Q1. Puzzle data structure
  • Q2. Pattern problem
  • Q3. OS threads, Software development lifecycle
Round 5 - HR 

(3 Questions)

  • Q1. Normal hr questions
  • Q2. Tell me about yourself
  • Q3. About family, home location, where do u stary

Interview Preparation Tips

Topics to prepare for Vistaar Technologies Trainee interview:
  • puzzle
  • Data Structures
  • DBMS

Skills evaluated in this interview

Trainee Interview Questions asked at other Companies

Q1. Ques1: There is a big file of words which is dynamically changing. We are continuously adding some words into it. How would you keep track of top 10 trending words at each moment? Ques2:Write a function that returns the length of the longes... read more
View answer (2)
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Aptitude question on topics ranging from maths, algorithms, data-structures

Senior Software Engineer Interview Questions asked at other Companies

Q1. Nth Prime Number Problem Statement Find the Nth prime number given a number N. Explanation: A prime number is greater than 1 and is not the product of two smaller natural numbers. A prime number has exactly two distinct positive divisors: 1... read more
View answer (1)
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via campus placement at Lokmanya Tilak College of Engineering, Navi Mumbai and was interviewed in Sep 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

Round 1 : Was a combination of aptitude + Basic but tricky Programming question

Aptitude was Divided into Three Section :
1) Mathematical Problems on Speed, Distance Time, Age Problems, Mensuration Problems
2)Logical Reasoning (situation based Problems)
3)Multiple Choice Questions on Data Structures (My Questions were Based on Binary Tree, operators, Basic Input output based Question

Then There Was Programming Section :
this section had 3 Programming Problem Statements
We have to Solve any 2.
Problem 1 was based on arrays
Problem 2 was based on strings
Problem 3 Was based on arrays
If You Solve Easy to Medium Intensity Questions On leetcode you can easily tackle these problems
Problem Were of easy intensity but had a tricky part.

Round 2 - Technical 

(1 Question)

  • Q1. Results Awaited : Will Share my Experience once i reach round 2

Interview Preparation Tips

Interview preparation tips for other job seekers - Just Brush Up basic Maths concepts which were in our school curriculum till 10th std.
Focus more on the programming part because they don't check your aptitude questions if you haven't solved both the programming problems.

Software Engineer Trainee Interview Questions asked at other Companies

Q1. Palindromic Linked ListYou are given a singly Linked List of integers. Your task is to return true if the given singly linked list is a palindrome otherwise returns false. For example: The given linked list is 1 -&gt; 2 -&gt; 3 -&gt; 2-&gt;... read more
View answer (4)

Vistaar Technologies Interview FAQs

How many rounds are there in Vistaar Technologies interview?
Vistaar Technologies interview process usually has 2-3 rounds. The most common rounds in the Vistaar Technologies interview process are Technical, Aptitude Test and Resume Shortlist.
What are the top questions asked in Vistaar Technologies interview?

Some of the top questions asked at the Vistaar Technologies interview -

  1. Explain Greedy algorithms and Divide and Conquer techniq...read more
  2. Difference between delete, truncate and drop in S...read more
  3. what is hash...read more
How long is the Vistaar Technologies interview process?

The duration of Vistaar Technologies interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Vistaar Technologies Interview Process

based on 23 interviews

Interview experience

4.2
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
LTIMindtree Interview Questions
3.8
 • 3k Interviews
Ramco Systems Interview Questions
3.9
 • 64 Interviews
Algonomy Interview Questions
4.0
 • 9 Interviews
View all

Vistaar Technologies Reviews and Ratings

based on 37 reviews

3.9/5

Rating in categories

3.3

Skill development

3.7

Work-life balance

3.3

Salary

4.3

Job security

4.2

Company culture

3.2

Promotions

3.5

Work satisfaction

Explore 37 Reviews and Ratings
Software Engineer
87 salaries
unlock blur

₹4 L/yr - ₹6.7 L/yr

Senior Software Engineer
49 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

4.0
Compare

Capillary Technologies

3.4
Compare

Ramco Systems

3.9
Compare

Eka Software Solutions

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