Upload Button Icon Add office photos

Filter interviews by

Vistaar Technologies Softwaretest Engineer Interview Questions and Answers

Updated 5 Feb 2024

Vistaar Technologies Softwaretest Engineer Interview Experiences

2 interviews found

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 & Answers

user image Sagar Chanchal

posted on 26 Sep 2023

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

I applied via campus placement at Mumbai University and was interviewed before Sep 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 - Aptitude Test 

Normal aptitude qiestions quants and 2 programs in any lang

Round 3 - Technical 

(1 Question)

  • Q1. Normal CS questions with 2 puzzles. easy

Interview Preparation Tips

Interview preparation tips for other job seekers - Good work culture but limited growth.

Softwaretest Engineer Interview Questions Asked at Other Companies

asked in Playablo
Q1. What is boundary value analysis? How do u perform boundary value ... read more
asked in Playablo
Q2. If u get a blocker defect just the previous day of ur release dat ... read more
Q3. 1. What is STLC, SDLC 2. What is the bug Life cycle. 3. Differenc ... read more
Q4. - Print the frequency of each alphabet for the given string. - Sw ... read more
asked in Playablo
Q5. Write Sql query for displaying total number of students from chil ... read more

Interview questions from similar companies

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

I applied via campus placement at Visveswaraiah Technological University (VTU) and was interviewed in Aug 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Simple aptitude questions and multiple choice coding questions were asked.

Round 2 - Technical 

(3 Questions)

  • Q1. Explanation about project
  • Ans. 

    I have worked on a project to develop a mobile application for tracking fitness activities and providing personalized workout plans.

    • Developed user-friendly interface for inputting and tracking fitness data

    • Implemented algorithms to generate personalized workout plans based on user's goals and progress

    • Integrated with wearable devices to automatically sync activity data

    • Conducted thorough testing to ensure accuracy and rel...

  • Answered by AI
  • Q2. SQL queries which were easy
  • Q3. Linked list and arrays

Interview Preparation Tips

Interview preparation tips for other job seekers - Learn simple programs, basic level questions of programming, basic understanding of cloud, gen AI, SQL queries mainly join operations.
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Whats is Denpendency injection?
  • Ans. 

    Dependency injection is a design pattern in which components are given their dependencies rather than creating them internally.

    • Allows for easier testing by injecting mock dependencies

    • Promotes loose coupling between components

    • Improves code reusability and maintainability

    • Examples: Constructor injection, Setter injection, Interface injection

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

    Middleware is software that acts as a bridge between different applications, allowing them to communicate and share data.

    • Middleware facilitates communication between different software applications

    • It can handle tasks such as message queuing, data transformation, and security

    • Examples of middleware include message brokers like RabbitMQ, ESBs like MuleSoft, and API gateways like Kong

  • Answered by AI

Skills evaluated in this interview

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

(2 Questions)

  • Q1. Automation Framework
  • Q2. Which Framework you use Test NG, BDD. Explain?
  • Ans. 

    I use TestNG for unit testing and BDD (Behavior Driven Development) for integration testing.

    • TestNG is used for unit testing to validate individual units of code.

    • BDD is used for integration testing to validate the behavior of the system.

    • TestNG allows for easy setup of test cases using annotations like @Test, @BeforeMethod, @AfterMethod.

    • BDD frameworks like Cucumber use plain English sentences to define test scenarios.

    • Tes...

  • Answered by AI

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed in Apr 2024. There was 1 interview round.

Round 1 - HR 

(5 Questions)

  • Q1. Nothing much it went well as usual they try go ask for negotiable salary
  • Q2. What is the reason
  • Ans. 

    The reason for what?

    • Need more context to provide a specific reason

    • Could be related to a specific action, decision, outcome, etc.

    • Can you provide more details or clarify the question?

  • Answered by AI
  • Q3. What is the issue
  • Q4. What is draw back
  • Ans. 

    A drawback is a disadvantage or limitation of a particular situation or course of action.

    • Drawbacks can hinder progress or success in a project or task.

    • They can be caused by limitations in resources, technology, or skills.

    • Examples include lack of funding, outdated software, or inadequate training.

    • Identifying drawbacks early on can help mitigate their impact on a project.

  • Answered by AI
  • Q5. What is fast forward
  • Ans. 

    Fast forward is a feature that allows users to skip ahead in a video or audio file to a specific point.

    • Fast forward allows users to quickly move forward in a video or audio file.

    • Users can skip scenes or sections they are not interested in by using the fast forward feature.

    • Commonly seen in media players, streaming services, and DVRs.

    • Example: Pressing the fast forward button on a remote control to skip ahead in a movie.

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via campus placement at NSS College, Cherthala and was interviewed in Sep 2023. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. C code to detect loop in linkedlist.
  • Ans. 

    Use Floyd's Cycle Detection Algorithm to detect loop in linked list.

    • Initialize two pointers, slow and fast, both pointing to the head of the linked list.

    • Move slow pointer by one step and fast pointer by two steps in each iteration.

    • If there is a loop, the slow and fast pointers will meet at some point.

    • To find the start of the loop, reset one pointer to the head and move both pointers at the same pace until they meet aga

  • Answered by AI
  • Q2. Storage class Specifiers in c language
  • Ans. 

    Storage class specifiers in C language define the scope and lifetime of variables.

    • Storage class specifiers include auto, register, static, and extern.

    • Auto variables are stored in the stack and have local scope.

    • Register variables are stored in CPU registers for faster access.

    • Static variables retain their value between function calls.

    • Extern variables are declared in one file and can be accessed in another file.

  • Answered by AI
  • Q3. Headerfile usage in c language
  • Ans. 

    Header files in C language are used to declare functions, variables, and constants that are defined in other source files.

    • Header files are included at the beginning of a C program using the #include directive.

    • They help in organizing code by separating declarations from the actual implementation.

    • Common header files in C include , , and .

    • Header files can also be created by the user to declare c...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Dell Softwaretest Engineer interview:
  • Os
  • Dsa
  • C
Interview preparation tips for other job seekers - Learn dsa coding

Skills evaluated in this interview

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

(2 Questions)

  • Q1. Funtional testing
  • Q2. Bug severity and proiriry
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Inheritance in Java
  • Ans. 

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

    • Inheritance is achieved using the 'extends' keyword in Java.

    • Subclasses can access the methods and fields of their superclass.

    • Java does not support multiple inheritance, but a class can implement multiple interfaces.

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Selenium java oops concepts banking domain

Vistaar Technologies Interview FAQs

How many rounds are there in Vistaar Technologies Softwaretest Engineer interview?
Vistaar Technologies interview process usually has 3-4 rounds. The most common rounds in the Vistaar Technologies interview process are Technical, Coding Test and HR.
What are the top questions asked in Vistaar Technologies Softwaretest Engineer interview?

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

  1. HR round was tough, they will check how you will handle press...read more
  2. Normal CS questions with 2 puzzles. e...read more
  3. basic coding and SQL questi...read more

Tell us how to improve this page.

Vistaar Technologies Softwaretest Engineer Interview Process

based on 2 interviews

Interview experience

3
  
Average
View more
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

₹10.1 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.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