Upload Button Icon Add office photos

Filter interviews by

VirtusaPolaris Full Stack Software Developer Interview Questions and Answers

Updated 17 Sep 2022

VirtusaPolaris Full Stack Software Developer Interview Experiences

1 interview found

I applied via campus placement at Sri Krishna College of Engineering and Technology, Coimbatore and was interviewed in Mar 2022. There were 3 interview rounds.

Round 1 - Aptitude Test 

Aptitude, English and coding

Round 2 - Technical 

(1 Question)

  • Q1. What is a String?? Difference between String Buffer and String Builder?
  • Ans. 

    A String is a sequence of characters. String Buffer and String Builder are mutable and faster alternatives to String.

    • String is an immutable class in Java.

    • String Buffer and String Builder are mutable classes.

    • String Buffer is synchronized and thread-safe.

    • String Builder is not synchronized and faster than String Buffer.

    • Both String Buffer and String Builder have methods to append, insert, delete, and reverse strings.

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Introduce about yourself

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well and crack it. Majorly concentrate on aptitude and coding. Focus more on oops concept in java and know about sql before going to an interview

Interview questions from similar companies

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

I applied via Recruitment Consulltant and was interviewed in Dec 2023. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Based on your tech skills mentioned in your resume
Round 2 - HR 

(1 Question)

  • Q1. About the company and compensation

Interview Preparation Tips

Interview preparation tips for other job seekers - A very good company you can learn and grow faster
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

30 mins round and 1 coding question

Round 2 - Assignment 

Development of a feature

Interview Preparation Tips

Interview preparation tips for other job seekers - company is having helpful people

I applied via Recruitment Consulltant and was interviewed in Dec 2021. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Simple technical basics , plus had asked to write program on how linked list would work
Round 2 - Behavioral 

(1 Question)

  • Q1. I was ghosted , no one didn't join the panel . I called and mailed the person who had scheduled the interview but he too didn't pick up the call

Interview Preparation Tips

Interview preparation tips for other job seekers - Please ask them to notify if they're unable to proceed with the next round because of budget constraint
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Dec 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

Speed and distance, boat and stream

Round 2 - Technical 

(1 Question)

  • Q1. What is the difference between the DELETE and TRUNCATE commands in SQL?
  • Ans. 

    DELETE command removes specific rows from a table, while TRUNCATE command removes all rows from a table.

    • DELETE command is used to remove specific rows from a table based on a condition.

    • TRUNCATE command is used to remove all rows from a table, resetting auto-increment values.

    • DELETE command is slower as it logs individual row deletions, while TRUNCATE is faster as it does not log individual deletions.

    • DELETE can be rolled...

  • Answered by AI

I applied via Naukri.com and was interviewed in Nov 2021. There were 3 interview rounds.

Interview Questionnaire 

6 Questions

  • Q1. Design pattern
  • Q2. Throw ,throw ex, throw new exception differences
  • Q3. Difference between ref and out
  • Ans. 

    Ref and out are both used to pass arguments by reference in C#. Ref is bidirectional while out is unidirectional.

    • Ref is used to pass a variable by reference and can be read and modified within the method.

    • Out is used to pass a variable by reference and must be assigned a value within the method.

    • Ref can be used to pass a variable as an argument to a method and return a value.

    • Out is used to return multiple values from a m...

  • Answered by AI
  • Q4. Action and func
  • Q5. Can we use async without await
  • Ans. 

    Yes, async can be used without await.

    • Async functions return a promise, which can be handled without using await.

    • Using async without await can be useful for error handling or logging.

    • However, it is important to handle the promise returned by the async function.

  • Answered by AI
  • Q6. Property vs variable
  • Ans. 

    A property is a value associated with an object, while a variable is a named storage location for a value.

    • Properties are accessed using dot notation or bracket notation

    • Variables are declared using keywords like var, let, or const

    • Properties are defined within an object literal or added to an object dynamically

    • Variables can be reassigned to different values

    • Example: object.property vs var variableName

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Please prepare well on technical part

Skills evaluated in this interview

Interview Questionnaire 

2 Questions

  • Q1. Data structure and Algorithm leetcode medium type question
  • Q2. Multi Threading and collection framework in java
  • Ans. 

    Multi-threading allows concurrent execution of multiple threads. Collection framework provides a set of interfaces and classes for storing and manipulating data.

    • Multi-threading improves performance by utilizing multiple cores of CPU

    • Collection framework provides interfaces like List, Set, Map for storing data

    • Java provides synchronized collections for thread-safe operations

    • ConcurrentHashMap is a thread-safe implementatio

  • Answered by AI

Skills evaluated in this interview

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

I applied via Recruitment Consulltant and was interviewed in Dec 2023. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Based on your tech skills mentioned in your resume
Round 2 - HR 

(1 Question)

  • Q1. About the company and compensation

Interview Preparation Tips

Interview preparation tips for other job seekers - A very good company you can learn and grow faster
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Approached by Company and was interviewed in May 2024. There was 1 interview round.

Round 1 - HR 

(1 Question)

  • Q1. Why do you want to leave your current workplace?
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Job Fair and was interviewed in Feb 2024. There was 1 interview round.

Round 1 - One-on-one 

(5 Questions)

  • Q1. Java vs Javascript , Meaning of Synchronization in Java , Multihreading in Js
  • Ans. 

    Java is a backend language, Javascript is a frontend language. Synchronization in Java ensures only one thread can access a resource at a time. JavaScript is single-threaded but can handle asynchronous operations using callbacks, promises, and async/await.

    • Java is a backend language used for server-side development, while JavaScript is a frontend language used for client-side scripting.

    • Synchronization in Java is a techn...

  • Answered by AI
  • Q2. Write a pojo class to display the Employee Details,Pojo vs Bean
  • Ans. 

    A Pojo class is a simple Java class that contains only private fields, public getters and setters, and no-arg constructor.

    • Create private fields for employee details like name, id, salary, etc.

    • Generate public getters and setters for each field.

    • Include a no-arg constructor in the class.

    • Example: public class Employee { private String name; private int id; public String getName() { return name; } public void setName(String...

  • Answered by AI
  • Q3. How to to compare two objects with same class (equals & Hashcode methods)
  • Ans. 

    To compare two objects with the same class, override the equals and hashCode methods in the class.

    • Override the equals method to compare the fields of the objects for equality.

    • Override the hashCode method to generate a unique hash code based on the object's fields.

    • Ensure that the equals and hashCode methods are consistent with each other.

    • Example: public class Person { private String name; private int age; }

  • Answered by AI
  • Q4. Springboot questions basics like How to connect to 2 databases at a time How to change the table name in entity class(@Table)
  • Q5. JPA Repository inbuilt methods
  • Ans. 

    JPA Repository provides inbuilt methods for common database operations in Spring applications.

    • JPA Repository provides methods like save(), findById(), findAll(), deleteById(), etc.

    • These methods help in performing CRUD operations on entities without writing custom queries.

    • For example, userRepository.save(user) saves a user entity to the database.

  • Answered by AI

Skills evaluated in this interview

VirtusaPolaris Interview FAQs

How many rounds are there in VirtusaPolaris Full Stack Software Developer interview?
VirtusaPolaris interview process usually has 3 rounds. The most common rounds in the VirtusaPolaris interview process are Aptitude Test, Technical and HR.

Tell us how to improve this page.

People are getting interviews through

based on 1 VirtusaPolaris interview
Campus Placement
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.
Lead Consultant
201 salaries
unlock blur

₹9.5 L/yr - ₹23.4 L/yr

Senior Consultant
194 salaries
unlock blur

₹7.1 L/yr - ₹23.2 L/yr

Softwaretest Engineer
177 salaries
unlock blur

₹3.5 L/yr - ₹5.7 L/yr

Consultant
175 salaries
unlock blur

₹6 L/yr - ₹17.5 L/yr

Associate Consultant
127 salaries
unlock blur

₹4.2 L/yr - ₹12.1 L/yr

Explore more salaries
Compare VirtusaPolaris with

TCS

3.7
Compare

Infosys

3.7
Compare

Wipro

3.7
Compare

HCLTech

3.5
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview