Upload Button Icon Add office photos

Filter interviews by

Virtusa Consulting Services Software Developer Interview Questions, Process, and Tips

Updated 31 Jan 2025

Top Virtusa Consulting Services Software Developer Interview Questions and Answers

  • Q1. 1.What is constraints and it's types? 2.what is meant by wrapper class? 3.What is meant by string buffer? 4.Write a program to print number of count of characters in a st ...read more
  • Q2. Rat in a Maze Problem Statement You need to determine all possible paths for a rat starting at position (0, 0) in a square maze to reach its destination at (N-1, N-1). T ...read more
  • Q3. Paths in a Matrix Problem Statement Given an 'M x N' matrix, print all the possible paths from the top-left corner to the bottom-right corner. You can only move either r ...read more
View all 29 questions

Virtusa Consulting Services Software Developer Interview Experiences

30 interviews found

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
6-8 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed before Feb 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

Cognitive test, communication test.

Round 2 - Coding Test 

Core java basic ,and interview question

Round 3 - HR 

(1 Question)

  • Q1. 1. introduction 2.salary decision

I applied via Campus Placement and was interviewed in Aug 2021. There was 1 interview round.

Interview Questionnaire 

3 Questions

  • Q1. Self intro,what is oops,data abstraction,polymorphism,abstract class vs interface,comparator interface vs comparable interface,why string is immutable,,what is dbms,inner join.
  • Q2. Code for reverse the string
  • Ans. 

    Code to reverse a string

    • Create an empty string to store the reversed string

    • Loop through the original string from the end to the beginning

    • Append each character to the empty string

    • Return the reversed string

  • Answered by AI
  • Q3. Query for 3rd max salary
  • Ans. 

    Query for 3rd max salary

    • Use ORDER BY and LIMIT to get the 3rd highest salary

    • SELECT salary FROM employees ORDER BY salary DESC LIMIT 2,1

    • If there are ties, use DISTINCT to get unique values

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - ......................................................................all the best........................................................

Skills evaluated in this interview

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 Cognizant
Q4. Nth Fibonacci Number Problem Statement Calculate the Nth term in ... read more
Q5. Find Duplicate in Array Problem Statement You are provided with a ... read more
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

I applied via Campus Placement and was interviewed before Aug 2022. There were 4 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 

Duration - 3 hours , coding + aptitude

Round 3 - Technical 

(1 Question)

  • Q1. 1.Self Intro 2.OOPS Concept 3.Project explaination
Round 4 - HR 

(1 Question)

  • Q1. Basic General questions

I applied via Campus Placement

Interview Questionnaire 

1 Question

  • Q1. They asked about skill those were write in my resume. After that they asked me about my project that completed during my MCA and then he asked me about data structures (Linked list, tree) based questions. ...

Interview Preparation Tips

Interview preparation tips for other job seekers - The main thing is data structures and algorithm and then any one language that you are mentioned in your resume and the last thing is project.

Virtusa Consulting Services interview questions for designations

 Senior Software Developer

 (2)

 Full Stack Software Developer

 (2)

 Python Software Developer

 (1)

 Developer

 (3)

 Software Engineer

 (40)

 Software Tester

 (2)

 Software Consultant

 (1)

 Software Programmer

 (1)

I applied via Company Website and was interviewed in Jan 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. First round they are asked technical questions and few syntax also. Second round directly going to hr round and discussed packages details only

Get interview-ready with Top Virtusa Consulting Services Interview Questions

I was interviewed before Jun 2021.

Round 1 - Coding Test 

Had DSA and aptitude questions

Round 2 - Technical 

(1 Question)

  • Q1. DSA a questions, Database Questions
Round 3 - HR 

(1 Question)

  • Q1. 5 min question and answers about company

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare DSA and database management

Software Developer Jobs at Virtusa Consulting Services

View all

I was interviewed before Sep 2020.

Round 1 - Coding Test 

(2 Questions)

Round duration - 90 minutes
Round difficulty - Easy

It happens in very friendly manner.

  • Q1. 

    Paths in a Matrix Problem Statement

    Given an 'M x N' matrix, print all the possible paths from the top-left corner to the bottom-right corner. You can only move either right (from (i,j) to (i,j+1)) or dow...

  • Ans. 

    Print all possible paths from top-left to bottom-right in a matrix by moving only right or down.

    • Use backtracking to explore all possible paths from top-left to bottom-right in the matrix.

    • At each cell, recursively explore moving right and down until reaching the bottom-right corner.

    • Keep track of the current path and add it to the result when reaching the destination.

  • Answered by AI
  • Q2. Can you create 2 tables in SQL and perform different operations on them?
  • Ans. 

    Yes, I can create 2 tables in SQL and perform operations like INSERT, SELECT, UPDATE, and DELETE.

    • Create Table 1: CREATE TABLE employees (id INT, name VARCHAR(50), salary DECIMAL(10,2));

    • Create Table 2: CREATE TABLE departments (dept_id INT, dept_name VARCHAR(50));

    • Insert Data: INSERT INTO employees VALUES (1, 'John Doe', 50000);

    • Select Data: SELECT * FROM employees WHERE salary > 40000;

    • Update Data: UPDATE employees SET...

  • Answered by AI
Round 2 - Face to Face 

Round duration - 90 minutes
Round difficulty - Medium

No problem occur very friendly environment.

Round 3 - Face to Face 

(1 Question)

Round duration - 90 minutes
Round difficulty - Hard

  • Q1. 

    Rat in a Maze Problem Statement

    You need to determine all possible paths for a rat starting at position (0, 0) in a square maze to reach its destination at (N-1, N-1). The maze is represented as an N*N ma...

  • Ans. 

    Find all possible paths for a rat in a maze from source to destination.

    • Use backtracking to explore all possible paths in the maze.

    • Keep track of visited cells to avoid revisiting them.

    • Explore all possible directions (up, down, left, right) from each cell.

    • Add the current direction to the path and recursively explore further.

    • If the destination is reached, add the path to the list of valid paths.

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in HyderabadEligibility criteriaAbove 7 CGPAVirtusa interview preparation:Topics to prepare for the interview - Linked List, Binary Search Tree ,Queue, Array ,DP ,Graph ,RecursionTime required to prepare for the interview - 3 MonthsInterview preparation tips for other job seekers

Tip 1 : Competitive programming plays a major role when you are appearing for coding rounds as a fresher. In the coding rounds, you won't get direct problems copied from Geeksforgeeks or Leetcode. You would be required to use your logical thinking to go ahead in the process. This is where competitive programming helps.

Tip 2 : Coding rounds are all about Coding + Timing. Most people fail to excel due to the pressure of a timer ticking on your head. So, instead of just solving problems, try to participate in timed contests. This will help you be used to the pressure of the timer.

Tip 3 : Many big companies like Microsoft, Amazon, and even Google expect you to be good at standard problems. So, once you are done with coding round by your logical skills and competitive programming, you must be well versed with some standard problems in order to excel.

Application resume tips for other job seekers

Tip 1 : Make it short, crisp, and simple. It is always good to have a 1 pager resume. 
Tip 2 : Resume must comprise of the following: Educational Qualifications, Technical skills, Projects, Work experience (if any), Achievements. Other than this, you may include some extra co-curricular achievements.

Final outcome of the interviewSelected

Skills evaluated in this interview

Interview Preparation Tips

Round: Test
Experience: In the first round there was an online test. Questions were from aptitude, general English and a simple code( very simple if you have programming skills).
Tips: It was purely a knowledge based round so everything depends on your preparation level and a bit confidence.

Round: Technical Interview
Experience: In technical round interview the process was like this...
I entered in room and greeted interviewer and he asked me to sit down. I handed over my resume to him. His first question was tell me about yourself. Then my projects. After that he came on programming, He asked me very basic concept about C++. Questions were like what is polymorphism, What is encapsulation. He also asked program of fibonacci series. After all these question he again looked at my resume and asked me 'why your CGPA is low?' I said that when i was in my first year i had interest in electronics but later when i encountered with programming i decided to have my career in this field so i could not concentrate on my core subjects.
Tips: C++ is '''''must''''' for Virtusa if you are from electronics . I didn't know data structure but c++ was on my fingers. Answer question with confidence.

Round: HR Interview
Experience: HR interview was really cool. Interview asked me about myself, my family, real life applications of my project. After that he came on real stuff. He asked question like why do you want to join virtusa? I said virtusa is this .. virtusa is this.....and many more..and in last i said this is i want to join virtusa. Next question was ' what do think about dowry?'. At first i was surprised to hear this question but i realized that interview only want to check my ability to speak on random topic. I answered the question by criticizing dowry and he was pleased to hear my answer. After one or two general HR question like location preference , he told me that your interview is over please wait outside for result. It was really nice to meet you . Thank you.
Tips: Never stop speaking in HR interview. They only check your ability to speak on random topics and their general HR question. I was continuously speaking ...please do not bother about grammar while speaking ...just speak with confidence(relevant).

General Tips: prepare c , c++ and ability to speak in front of interviewer.
Skills: Basic Coding, Aptitude, 1)communication
College Name: NIT Jalandhar

Software Developer Interview Questions & Answers

user image NIKHIL ROHERA

posted on 9 Feb 2015

Interview Questionnaire 

10 Questions

  • Q1. Sql command for creating a table
  • Ans. 

    SQL command for creating a table

    • Use CREATE TABLE statement

    • Specify table name and column names with data types

    • Add any constraints or indexes as needed

  • Answered by AI
  • Q2. Sql command for inserting details in table,changing them and deleting specifics ones
  • Ans. 

    SQL commands for inserting, updating, and deleting data from a table.

    • INSERT INTO table_name (column1, column2, column3) VALUES (value1, value2, value3);

    • UPDATE table_name SET column1 = new_value1 WHERE condition;

    • DELETE FROM table_name WHERE condition;

  • Answered by AI
  • Q3. Difference between truncate and drop
  • Ans. 

    Truncate and drop are SQL commands used to remove data from a table.

    • Truncate removes all data from a table but keeps the structure intact.

    • Drop removes the entire table and its structure.

    • Truncate is faster than drop as it only removes data.

    • Drop cannot be undone while truncate can be rolled back.

    • Truncate resets the identity of the table while drop does not.

    • Examples: TRUNCATE TABLE table_name; DROP TABLE table_name;

  • Answered by AI
  • Q4. Difference between c and c++
  • Ans. 

    C++ is an extension of C with object-oriented programming features.

    • C++ supports classes and objects while C does not.

    • C++ has better support for polymorphism and inheritance.

    • C++ has a standard template library (STL) while C does not.

    • C++ allows function overloading while C does not.

    • C++ has exception handling while C does not.

  • Answered by AI
  • Q5. Tell me abt yourself
  • Ans. 

    I am a software developer with experience in Java and Python.

    • I have a Bachelor's degree in Computer Science.

    • I have worked on various projects involving web development and data analysis.

    • I am proficient in Java and Python programming languages.

    • I have experience with frameworks such as Spring and Django.

    • I am familiar with databases such as MySQL and MongoDB.

  • Answered by AI
  • Q6. Why interest in IT line
  • Ans. 

    I have always been fascinated by technology and its ability to solve complex problems.

    • I enjoy problem-solving and logical thinking

    • I have a natural curiosity for how things work

    • I see the potential for technology to make a positive impact on society

    • I have experience in programming and find it rewarding

    • I am excited about the constant innovation and evolution in the IT industry

  • Answered by AI
  • Q7. What r ur strengths and weakness
  • Ans. 

    My strengths include problem-solving, adaptability, and teamwork. My weakness is public speaking.

    • Strengths: problem-solving, adaptability, teamwork

    • Examples: I have successfully solved complex coding problems, adapted to new technologies quickly, and collaborated effectively with team members.

    • Weakness: public speaking

    • Examples: I get nervous when speaking in front of large groups, but I am working on improving my present

  • Answered by AI
  • Q8. Why should we select you
  • Ans. 

    I have the technical skills, experience, and passion to excel in this role.

    • I have a strong background in software development, with expertise in multiple programming languages and frameworks.

    • I have experience working on complex projects and collaborating with cross-functional teams.

    • I am passionate about staying up-to-date with the latest technologies and trends in the industry.

    • I am a quick learner and adaptable to new ...

  • Answered by AI
  • Q9. Discussed abt my test results(positive and negatives)
  • Q10. He asked about my hometown,mathura and near around area

Interview Preparation Tips

Round: Technical Interview
Experience: technical interview was easy if u know basics of sql and c++.
Tips: try to achieve good marks in the test
sneek out for your marks in technical and aptitude test results in interviewer's hands it will help u make ur mind of the level u need to give to get the job, as few students with low scores also got the job but they had tough interviews

Round: HR Interview
Experience: experience of this round was very cool, interviewer started asking with basic questions . i focussed on my strengths, accepted my weaknesses, used the good result in test in conversation that helped, give an insight about hometown places when he asked. i was little bit nervous and my english was not sounding good enough at that time.
Tips: focus on your --1. communication skills
2. english
be calm,
be prepared for basic questions

Skill Tips: be smart enough to focus/direct the conversation in ur favour
some students with zero technical knowledge cleared the technical interview with this skill
Skills: communication skills, english fluency,
College Name: NIT AGARTALA

Skills evaluated in this interview

Software Developer Interview Questions & Answers

user image avinash patnala

posted on 13 Jan 2015

Interview Preparation Tips

Round: Test
Experience: Quite easy..It contains mcq and one programming question. MCQ covers databases,sql,software testing,c++
Tips: You can easily pass the test,no need to worry

Round: Interview
Experience: Questions are among databases and java,they will ask u fav subj and asks questions in that
Tips: Through with ur fav subject..be confident, simple anad basic questions,try to solve secreening test question using java language

Round: Interview
Experience: Its better to say technical only,the hr also asks about test pattren.programming question.then normal HR questions
Tips: It better to do some research about the company,overall it's easy and cake walk for those who are strong in java and databases

General Tips: CSE guys can easily clear that test and interview..without any hesitattion
Skills: Java,databases, SQL, C, General Aptitude
College Name: NIT Warangal
Motivation: Virtusa is emerging company
Funny Moments: In interview they asked about my girl friend,her name andwhen ur are going to marry. answer them in a funny way with smile in your face

Virtusa Consulting Services Interview FAQs

How many rounds are there in Virtusa Consulting Services Software Developer interview?
Virtusa Consulting Services interview process usually has 2-3 rounds. The most common rounds in the Virtusa Consulting Services interview process are Technical, Coding Test and HR.
How to prepare for Virtusa Consulting Services Software 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 SQL, Shell Scripting, Algorithms, AutoSys and CSS.
What are the top questions asked in Virtusa Consulting Services Software Developer interview?

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

  1. 1.What is constraints and it's types? 2.what is meant by wrapper class? 3.What ...read more
  2. What was your experience in developing a pharmacy inventory management web appl...read more
  3. sql command for inserting details in table,changing them and deleting specifics...read more
How long is the Virtusa Consulting Services Software Developer interview process?

The duration of Virtusa Consulting Services Software Developer interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Virtusa Consulting Services Software Developer Interview Process

based on 22 interviews

3 Interview rounds

  • Technical Round - 1
  • Technical Round - 2
  • HR Round
View more
Virtusa Consulting Services Software Developer Salary
based on 1k salaries
₹3.4 L/yr - ₹16.9 L/yr
17% more than the average Software Developer Salary in India
View more details

Virtusa Consulting Services Software Developer Reviews and Ratings

based on 85 reviews

3.9/5

Rating in categories

3.9

Skill development

3.8

Work-life balance

3.7

Salary

3.6

Job security

3.7

Company culture

3.5

Promotions

3.6

Work satisfaction

Explore 85 Reviews and Ratings
Senior Consultant
4k salaries
unlock blur

₹8 L/yr - ₹25.1 L/yr

Lead Consultant
3.4k salaries
unlock blur

₹10.5 L/yr - ₹36 L/yr

Consultant
3.3k salaries
unlock blur

₹6 L/yr - ₹21 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