Upload Button Icon Add office photos

Filter interviews by

Virtusa Consulting Services Full Stack Developer Interview Questions, Process, and Tips

Updated 12 Jan 2025

Top Virtusa Consulting Services Full Stack Developer Interview Questions and Answers

  • Q1. Reverse Linked List Problem Statement Given a singly linked list of integers, return the head of the reversed linked list. Example: Initial linked list: 1 -> 2 -> 3 -> 4 ...read more
  • Q2. Find the Third Greatest Element Given an array 'ARR' of 'N' distinct integers, determine the third largest element in the array. Input: The first line contains a single ...read more
  • Q3. Anagram Pairs Verification Problem Your task is to determine if two given strings are anagrams of each other. Two strings are considered anagrams if you can rearrange th ...read more
View all 7 questions

Virtusa Consulting Services Full Stack Developer Interview Experiences

10 interviews found

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

I applied via Campus Placement and was interviewed before Sep 2022. There were 3 interview rounds.

Round 1 - Coding Test 

It is mix of both aptitude and coding assignment time duration is 3 hrs

Round 2 - One-on-one 

(1 Question)

  • Q1. This is one to one interview i was asked questions on java and sql basic level questions
Round 3 - HR 

(1 Question)

  • Q1. Basic hr questions like about the company , tell me about yourself

Interview Preparation Tips

Interview preparation tips for other job seekers - It is an on campus drive so prepare the basics thoroughly for any interview
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

On campus aptitude test

Round 2 - Technical 

(1 Question)

  • Q1. About oops concepts and java questions
Round 3 - HR 

(1 Question)

  • Q1. Discussion about location and why virtusa

Full Stack Developer Interview Questions Asked at Other Companies

asked in DBS Bank
Q1. Query and Matrix Problem Statement You are given a binary matrix ... read more
asked in Accenture
Q2. Find Duplicates in an Array Given an array ARR of size 'N', where ... read more
asked in MakeMyTrip
Q3. Tower of Hanoi Problem Statement You have three rods numbered fro ... read more
Q4. Maximum Difference Problem Statement Given an array ARR of N elem ... read more
asked in Samsung
Q5. LCA of Binary Tree Problem Statement You are given a binary tree ... read more
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Jan 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Two coding question and some aptitude

Round 2 - Technical 

(1 Question)

  • Q1. Oops concepts and basic coding programs
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via LinkedIn and was interviewed before Jul 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

Math eng reasoning simple question and rearrange

Round 2 - Coding Test 

String array questions and all questions was easy to medium level

Interview Preparation Tips

Interview preparation tips for other job seekers - Resume related

Virtusa Consulting Services interview questions for designations

 Full Stack Software Developer

 (2)

 Java Full Stack Developer

 (2)

 Developer

 (3)

 Software Developer

 (30)

 Java Developer

 (11)

 Salesforce Developer

 (3)

 Pega Developer

 (3)

 SQL Developer

 (2)

Round 1 - Coding Test 

Code was related to data structures and algorithms

Round 2 - Technical 

(2 Questions)

  • Q1. Basic java oops questions
  • Q2. SDLC related question

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep you java and dsa strong and mysql concepts clear

Get interview-ready with Top Virtusa Consulting Services Interview Questions

I was interviewed in Sep 2021.

Round 1 - Coding Test 

(3 Questions)

Round duration - 180 minutes
Round difficulty - Medium

Have to solve MCQ questions and 3 programming problems

  • Q1. 

    Anagram Pairs Verification Problem

    Your task is to determine if two given strings are anagrams of each other. Two strings are considered anagrams if you can rearrange the letters of one string to form the...

  • Q2. 

    Minimum Number of Swaps to Sort an Array

    Find the minimum number of swaps required to sort a given array of distinct elements in ascending order.

    Input:

    T (number of test cases)
    For each test case:
    N (siz...
  • Q3. 

    Queue Using Stacks Implementation

    Design a queue data structure following the FIFO (First In First Out) principle using only stack instances.

    Explanation:

    Your task is to complete predefined functions t...

Round 2 - Assignment 

(1 Question)

Round duration - 6 weeks
Round difficulty - Hard

  • Q1. Can you describe the use case of Account Statements Transcription as a full stack application, which involves converting an uploaded Excel sheet document into an SQL table, fetching data as per user needs ...
Round 3 - Face to Face 

(1 Question)

Round duration - 90 minutes
Round difficulty - Hard

Technical questions were asked from core java, SQL, UI stacks, Multi threading, exception handling, java 8, UML, SDLC, collections, JDBC, PL/SQL, OS, Data Structures, sorting and searching algorithms, etc...

  • Q1. In the 100 Prisoners problem, each prisoner is randomly assigned a red or black hat. They can see the hats of all other prisoners but not their own. The challenge is to devise a strategy that allows the ma...
Round 4 - HR 

Round duration - 60 minutes
Round difficulty - Medium

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Sri Eshwar College of Engineering. I applied for the job as Fullstack Developer in ChennaiEligibility criteriaAbove 7 CGPA, need good understanding on the technologies, good projects in resume, not more than 3 active backlocksVirtusa interview preparation:Topics to prepare for the interview - OOPS, core java, DBMS, SQL & PL/SQL, Data Structures and Algorithms, UI (HTML, JS), SDLC, Java 8 concepts, UML diagrams, Collections, Multithreading, Exception Handling, Hashing, Recursion problems.Time required to prepare for the interview - 1.5 monthsInterview preparation tips for other job seekers

Tip 1 : Practice more problem solving questions
Tip 2 : understand the comcepts in depth
Tip 3 : try to work on onw or two handson project to get more experience in that stack.

Application resume tips for other job seekers

Tip 1 : Add some good projects on resume
Tip 2 : put things which you know well and not technologies which you don't know.

Final outcome of the interviewSelected

Skills evaluated in this interview

Full Stack Developer Jobs at Virtusa Consulting Services

View all

I was interviewed in Jul 2021.

Round 1 - Coding Test 

(1 Question)

Round duration - 120 Minutes
Round difficulty - Medium

The round was online. It had coding, aptitude and verbal questions.

  • Q1. 

    Find the Third Greatest Element

    Given an array 'ARR' of 'N' distinct integers, determine the third largest element in the array.

    Input:

    The first line contains a single integer 'T' representing the numb...
  • Ans. Sorting Based Approach

    The idea is to sort the array in non-decreasing order, and then return the third element from the back of the array.

     

    The steps are as follows :

    1. Sort the array in non-decreasing order.
    2. Return the third element from the back of the array.
    Space Complexity: O(logn)Explanation:

    O(1)

     

    We are not using any extra space. Thus, the overall space complexity will be O(1).

    Time Complexity: O(nlogn)Explan...
  • Answered Anonymously
Round 2 - Video Call 

(1 Question)

Round duration - 20 minutes
Round difficulty - Medium

It was at 11:45 am on Microsoft teams. Interviewer was friendly. I was asked to share my screen.

  • Q1. 

    Reverse Linked List Problem Statement

    Given a singly linked list of integers, return the head of the reversed linked list.

    Example:

    Initial linked list: 1 -> 2 -> 3 -> 4 -> NULL
    Reversed link...
  • Ans. Brute Force

    The brute force approach is to use recursion. First, we reach the end of the Linked List recursively and at last node, we return the last node, which becomes the new head of the partially reversed Linked List. While coming back from each recursion call we add the current node in the current recursion call to the last node of the partially reversed Linked List and assign the current node to null.

     

    Steps:

    &...

  • Answered Anonymously
Round 3 - HR 

Round duration - 20 Minutes
Round difficulty - Easy

It was on microsoft teams. Hr asked me basic questions.

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Bharati Vidyapeeth's College of Engineering. I applied for the job as Fullstack Developer in HyderabadEligibility criteriaPassouts 2020,2021Virtusa interview preparation:Topics to prepare for the interview - Strings, Arrays, Sorting algorithms, Linked List, Loops, Sliding windows, Graphs, Trees, OOPS, DSA, DBMSTime required to prepare for the interview - 3 MonthsInterview preparation tips for other job seekers

Tip 1 : Do atleast 2 projects
Tip 2 : Complete competitive programming
Tip 3 : Practice more interview Questions particular to the company applying to

Application resume tips for other job seekers

Tip 1 : Don't lie on resume
Tip 2 : Try to wrap resume in one page

Final outcome of the interviewSelected

Skills evaluated in this interview

I applied via Campus Placement and was interviewed in Jul 2021. There were 3 interview rounds.

Round 1 - Coding Test 

(1 Question)

  • Q1. Basic input outputs questinos and coding rounds.there was an advanced coding round too.
Round 2 - TR 

(3 Questions)

  • Q1. Introduction. questions were asked on java oops.
  • Q2. Also sql normalization, c vs c++ vs java.
  • Q3. Projects related quuestions
Round 3 - HR 

(5 Questions)

  • Q1. Why should we hire you?
  • Q2. Where do you see yourself in 5 years?
  • Q3. What are your strengths and weaknesses?
  • Q4. Tell me about yourself.
  • Q5. Latest technology interest. hobbies.relocation related questions

Interview Preparation Tips

Interview preparation tips for other job seekers - be confident and dont be nervous

I applied via Recruitment Consultant and was interviewed in Aug 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Basic vore java questions,how to remove duplicate from array and sort it without using any collection framework. Basic angular questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare basic java concepts

I applied via Naukri.com and was interviewed before Apr 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Sort array

Interview Preparation Tips

Interview preparation tips for other job seekers - Good

Virtusa Consulting Services Interview FAQs

How many rounds are there in Virtusa Consulting Services Full Stack Developer interview?
Virtusa Consulting Services interview process usually has 2-3 rounds. The most common rounds in the Virtusa Consulting Services interview process are Coding Test, HR and Technical.
How to prepare for Virtusa Consulting Services Full Stack Developer interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at Virtusa Consulting Services. The most common topics and skills that interviewers at Virtusa Consulting Services expect are Java, Angular, Javascript, Spring Boot and Spring.
What are the top questions asked in Virtusa Consulting Services Full Stack Developer interview?

Some of the top questions asked at the Virtusa Consulting Services Full Stack Developer interview -

  1. Basic vore java questions,how to remove duplicate from array and sort it withou...read more
  2. basic input outputs questinos and coding rounds.there was an advanced coding ro...read more
  3. This is one to one interview i was asked questions on java and sql basic level ...read more

Tell us how to improve this page.

Virtusa Consulting Services Full Stack Developer Interview Process

based on 4 interviews

3 Interview rounds

  • Coding Test Round
  • Technical Round
  • HR Round
View more
Virtusa Consulting Services Full Stack Developer Salary
based on 84 salaries
₹3.2 L/yr - ₹10 L/yr
33% less than the average Full Stack Developer Salary in India
View more details

Virtusa Consulting Services Full Stack Developer Reviews and Ratings

based on 12 reviews

3.2/5

Rating in categories

3.2

Skill development

3.1

Work-life balance

2.5

Salary

3.1

Job security

2.9

Company culture

2.6

Promotions

2.9

Work satisfaction

Explore 12 Reviews and Ratings
Python + React Full Stack Developer/Lead

Pune,

Bangalore / Bengaluru

8-12 Yrs

Not Disclosed

Python Full stack Developer

Pune

8-13 Yrs

Not Disclosed

.Net Core Full Stack Developer

Chennai

8-13 Yrs

Not Disclosed

Explore more jobs
Senior Consultant
4k salaries
unlock blur

₹8 L/yr - ₹30 L/yr

Consultant
3.3k salaries
unlock blur

₹6 L/yr - ₹21 L/yr

Lead Consultant
3.3k salaries
unlock blur

₹10.5 L/yr - ₹36 L/yr

Software Engineer
3.3k salaries
unlock blur

₹2.5 L/yr - ₹13 L/yr

Associate Consultant
2.8k salaries
unlock blur

₹4.6 L/yr - ₹15.4 L/yr

Explore more salaries
Compare Virtusa Consulting Services with

Cognizant

3.8
Compare

TCS

3.7
Compare

Infosys

3.6
Compare

Accenture

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