Upload Button Icon Add office photos

Filter interviews by

Virtusa Consulting Services Interview Questions, Process, and Tips for Freshers

Updated 27 Feb 2025

Top Virtusa Consulting Services Interview Questions and Answers for Freshers

View all 53 questions

Virtusa Consulting Services Interview Experiences for Freshers

Popular Designations

78 interviews found

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

I applied via Naukri.com and was interviewed in Sep 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Parallel test in cucumber
  • Ans. 

    Parallel test execution in Cucumber allows running multiple test scenarios simultaneously for faster results.

    • Use tools like TestNG or JUnit to run Cucumber tests in parallel

    • Configure the test runner to specify the number of threads to use for parallel execution

    • Ensure that the tests are independent and do not interfere with each other

    • Consider using a parallel plugin like Cucumber-JVM-Parallel to manage parallel executio

  • Answered by AI
  • Q2. How to handle browser history
  • Ans. 

    Browser history can be handled by clearing cache, cookies, and browsing data regularly.

    • Regularly clear cache, cookies, and browsing history to improve browser performance

    • Use incognito mode for private browsing to prevent history from being saved

    • Disable browser history tracking if needed for privacy reasons

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Implicit Wait and Explicit Wait
  • Q2. How to handle browser history
  • Ans. 

    Browser history can be managed by clearing cache, cookies, and browsing history regularly.

    • Regularly clear cache, cookies, and browsing history to improve browser performance

    • Use private browsing mode to prevent saving browsing history

    • Disable browser history tracking in browser settings

    • Use browser extensions or plugins to manage and delete browsing history

    • Consider using a VPN for additional privacy and security

  • Answered by AI

Skills evaluated in this interview

Senior QA Engineer Interview Questions asked at other Companies

Q1. Combination Sum Problem Statement Given an array of distinct positive integers ARR and a non-negative integer 'B', find all unique combinations in the array where the sum is equal to 'B'. Numbers can be chosen multiple times from ARR. Ensur... read more
View answer (1)

Intern Interview Questions & Answers

user image Anonymous

posted on 31 Aug 2024

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

I applied via Job Fair and was interviewed in Jul 2024. There were 4 interview rounds.

Round 1 - Coding Test 

Neural Hack 6 - Round 1 - 7 DSA Question I have solved 5 only

Round 2 - Coding Test 

Round 2 - 5 DSA Problem I'm able to solve only 3 not able to top 100 but call for interview

Round 3 - Technical 

(5 Questions)

  • Q1. Self Introduction
  • Q2. Which in most efficient sorting algorithm amd why and what is it's time complexity.
  • Ans. 

    The most efficient sorting algorithm is Quick Sort due to its average time complexity of O(n log n).

    • Quick Sort is efficient due to its divide and conquer approach.

    • It has an average time complexity of O(n log n) and a worst-case time complexity of O(n^2).

    • Example: Sorting an array of integers using Quick Sort.

  • Answered by AI
  • Q3. What is OOPS and explain all with their examples
  • Ans. 

    OOPS stands for Object-Oriented Programming. It is a programming paradigm based on the concept of objects, which can contain data and code.

    • OOPS focuses on creating objects that interact with each other to solve a problem

    • Key principles of OOPS include encapsulation, inheritance, polymorphism, and abstraction

    • Encapsulation: bundling data and methods that operate on the data into a single unit

    • Inheritance: allows a class to...

  • Answered by AI
  • Q4. Explain your projects and what are the problem do you faced during development phase
  • Ans. 

    I developed a mobile app for tracking daily water intake and exercise routines.

    • Implemented user-friendly interface for easy input of water intake and exercise details

    • Integrated push notifications to remind users to drink water and exercise regularly

    • Used Firebase for backend data storage and retrieval

    • Faced challenges with optimizing app performance on older devices

    • Encountered issues with syncing data across multiple dev

  • Answered by AI
  • Q5. Write code for reversing array
  • Ans. 

    Code to reverse an array of strings

    • Use a loop to iterate through half of the array and swap elements at opposite ends

    • Create a temporary variable to hold one element during swapping

    • Ensure to handle odd length arrays by not swapping the middle element

  • Answered by AI
Round 4 - HR 

(2 Questions)

  • Q1. Self Introduction
  • Q2. Explained companies policies
  • Ans. 

    Company policies outline rules and guidelines for employees to follow.

    • Company policies cover areas such as dress code, attendance, code of conduct, and benefits.

    • Examples of company policies include a policy on remote work, a policy on social media usage, and a policy on harassment.

    • Employees are expected to adhere to company policies to maintain a positive work environment and ensure compliance with legal regulations.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well for your interview

Skills evaluated in this interview

Intern Interview Questions asked at other Companies

Q1. Case. There is a housing society “The wasteful society”, you collect all the household garbage and sell it to 5 different businesses. Determine what price you will pay to the society members in Rs/kg, given you want to make a profit of 20% ... read more
View answer (8)
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

I applied via Recruitment Consulltant and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - Coding Test 

You have list of Integers, say {1,43,54,35,35,54} With this I want to know the count of each digits in the List. Example 1->1,3->3,4->3,5->4

Top Virtusa Consulting Services Senior Consultant Interview Questions and Answers

Q1. what are closures and higher order components,life cycle methods etc
View answer (1)

Senior Consultant Interview Questions asked at other Companies

Q1. 1. What's the use of update sets and how do you move update set from one instance to another? Once you imported the update set, what will you do? To check the customisations, You need to do open the update set and do something. What is that... read more
View answer (3)

Software Engineer Interview Questions & Answers

user image shital pacharane

posted on 10 Sep 2024

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

I applied via Naukri.com and was interviewed in Aug 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Validation technique in MVC?
  • Ans. 

    Validation in MVC ensures data entered by user meets specified criteria before processing.

    • Validation can be done using data annotations in model classes.

    • Validation can also be performed using ModelState.IsValid in controller actions.

    • Client-side validation can be implemented using JavaScript libraries like jQuery Validate.

  • Answered by AI
  • Q2. Difference between partial and render partial in MVC?
  • Ans. 

    Partial is used to render a specific portion of a view, while render partial is used to render a partial view within another view in MVC.

    • Partial is used to render a specific portion of a view in MVC.

    • Render partial is used to render a partial view within another view in MVC.

    • Partial can be used to render a reusable piece of code in multiple views.

    • Render partial is useful for rendering common elements like headers or foot...

  • Answered by AI
Round 2 - Coding Test 

Program to find Power of number by passing base number and power number

Interview Preparation Tips

Topics to prepare for Virtusa Consulting Services Software Engineer interview:
  • ASP.Net MVC
  • Web Api
  • Entity Framework
  • Angular

Skills evaluated in this interview

Top Virtusa Consulting Services Software Engineer Interview Questions and Answers

Q1. Coding question: 1. remove sub string and sort alphabetically 2. reverse of a given string 3. bubble sort
View answer (1)

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 (197)

Virtusa Consulting Services interview questions for popular designations

 Associate Engineer

 (44)

 Software Engineer

 (40)

 Software Developer

 (30)

 Lead Consultant

 (25)

 Senior Consultant

 (24)

 Associate Software Engineer

 (24)

 Associate Consultant

 (21)

 Consultant

 (19)

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

I applied via LinkedIn and was interviewed in Apr 2024. There were 5 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Basics of Html CSS & Javascript
  • Q2. Projects related
Round 2 - Technical 

(2 Questions)

  • Q1. Coding question related to arrays and string
  • Q2. Coding question to remove duplicate , count frequencies of occurrence of characters
  • Ans. 

    Remove duplicates and count frequencies of characters in an array of strings.

    • Iterate through each string in the array

    • Use a hashmap to store characters and their frequencies

    • Remove duplicates by checking if character already exists in hashmap

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. React and Redux related question with coding questions related to useEffect and other hooks
Round 4 - PM 

(1 Question)

  • Q1. Asked regarding previous experience and willingness for reallocations and gave overall info about the project and tech they hiring for
Round 5 - HR 

(1 Question)

  • Q1. Salary negotiations and experience

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare for the fundamental concepts of web Development like Html , CSS , JavaScript , React

Skills evaluated in this interview

Top Virtusa Consulting Services Senior Software Engineer Interview Questions and Answers

Q1. what is the adb devices command and when we are use it
View answer (1)

Senior Software Engineer Interview Questions asked at other Companies

Q1. K Largest Elements Problem Statement You are given an integer k and an array of integers that contain numbers in random order. Write a program to find the k largest numbers from the given array. You need to save them in an array and return ... read more
View answer (1)

Get interview-ready with Top Virtusa Consulting Services Interview Questions

Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Basic questions
Round 2 - Technical 

(1 Question)

  • Q1. Some scenario based questions

Interview Preparation Tips

Interview preparation tips for other job seekers - I never recommend attending the interview process; HR chases us for the interview slots, and we must chase back for feedback once we attend. The entire process may take more than a month sometimes, and after multiple rounds of interviews, they eventually surprise us with a rejection email, though we perform well.

Top Virtusa Consulting Services Salesforce Developer Interview Questions and Answers

Q1. If more than 50K records are fetched by the SOQL in the trigger. how to handle that.
View answer (1)

Salesforce Developer Interview Questions asked at other Companies

Q1. Write a trigger to update contact when accounts phone changed.
View answer (6)

Jobs at Virtusa Consulting Services

View all
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Simple coding not that much tough

Round 2 - Technical 

(2 Questions)

  • Q1. Question related to your skills
  • Q2. Just basic questions
Round 3 - HR 

(1 Question)

  • Q1. Why u want to join

SQL Developer Interview Questions asked at other Companies

Q1. How is a change request in application serviced by development team (business analysis, code analysis, discussion with BA, requirment freeze, etc.)
View answer (4)
Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Aptitude was easy to solve, general geek for geeks aptitude examples are easy, the thing is the test was almost 5 hours, 5 hours include aptitude coding verbal and writing skills

Round 2 - Coding Test 

2 categories, normal coding and power coding
it actually both are kinda easy

Round 3 - Technical 

(1 Question)

  • Q1. They told that joining date would be after 1 year 6 months. If and only if you are comfortable take the interview

Interview Preparation Tips

Interview preparation tips for other job seekers - dont apply

Top Virtusa Consulting Services Associate Software Engineer Interview Questions and Answers

Q1. Reverse Stack with Recursion Reverse a given stack of integers using recursion. You must accomplish this without utilizing extra space beyond the internal stack space used by recursion. Additionally, you must refrain from using any loop con... read more
View answer (1)

Associate Software Engineer Interview Questions asked at other Companies

Q1. Triplets with Given Sum Problem Given an array or list ARR consisting of N integers, your task is to identify all distinct triplets within the array that sum up to a specified number K. Explanation: A triplet is a set {ARR[i], ARR[j], ARR[k... read more
View answer (2)
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. What are decorators in Python What is the use of __name == __main__ Django related questions
  • Ans. 

    Decorators in Python are functions that modify the behavior of other functions or methods. __name__ == __main__ is used to check if a Python script is being run directly or imported as a module.

    • Decorators are used to add functionality to existing functions without modifying their code.

    • They are defined using the @decorator syntax before the function definition.

    • Example: @staticmethod decorator in Python is used to define...

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Joins in SQL, Window functions Coding question Django ORM questions
Round 3 - HR 

(1 Question)

  • Q1. Salary related questions

Skills evaluated in this interview

Top Virtusa Consulting Services Senior Software Engineer Interview Questions and Answers

Q1. what is the adb devices command and when we are use it
View answer (1)

Senior Software Engineer Interview Questions asked at other Companies

Q1. K Largest Elements Problem Statement You are given an integer k and an array of integers that contain numbers in random order. Write a program to find the k largest numbers from the given array. You need to save them in an array and return ... read more
View answer (1)

HR Executive Interview Questions & Answers

user image Anonymous

posted on 26 Jun 2024

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Technical 

(2 Questions)

  • Q1. Roles and responsibilities
  • Q2. Expected ctc as per cc
  • Ans. 

    Expected CTC should be as per company policy and industry standards.

    • Expected CTC should be based on the candidate's experience, skills, and the job role.

    • Research industry standards and company policies to determine a reasonable expected CTC.

    • Consider factors such as location, company size, and benefits package when determining expected CTC.

  • Answered by AI

HR Executive Interview Questions asked at other Companies

Q1. What do you know about Labor Law
View answer (6)

Virtusa Consulting Services Interview FAQs

How many rounds are there in Virtusa Consulting Services interview for freshers?
Virtusa Consulting Services interview process for freshers usually has 3-4 rounds. The most common rounds in the Virtusa Consulting Services interview process for freshers are Technical, HR and Coding Test.
How to prepare for Virtusa Consulting Services interview for freshers?
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, AdWords, Agile Coaching, Android and Architecture.
What are the top questions asked in Virtusa Consulting Services interview for freshers?

Some of the top questions asked at the Virtusa Consulting Services interview for freshers -

  1. sql command for inserting details in table,changing them and deleting specifics...read more
  2. sql command for creating a ta...read more
  3. what is access specifiers define access specif...read more
How long is the Virtusa Consulting Services interview process?

The duration of Virtusa Consulting Services 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 Interview Process for Freshers

based on 42 interviews

Interview experience

3.7
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Accenture Interview Questions
3.8
 • 8.1k Interviews
Infosys Interview Questions
3.6
 • 7.5k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Cognizant Interview Questions
3.8
 • 5.6k Interviews
Capgemini Interview Questions
3.7
 • 4.7k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
Genpact Interview Questions
3.8
 • 3.1k Interviews
IBM Interview Questions
4.0
 • 2.3k Interviews
View all

Virtusa Consulting Services Reviews and Ratings

based on 4.8k reviews

3.8/5

Rating in categories

3.6

Skill development

3.7

Work-life balance

3.4

Salary

3.4

Job security

3.6

Company culture

3.1

Promotions

3.5

Work satisfaction

Explore 4.8k Reviews and Ratings
Senior Software Engineer

Thane,

Chennai

4-7 Yrs

₹ 15-15 LPA

ServiceNow Architect

Hyderabad / Secunderabad,

Chennai

+1

13-20 Yrs

Not Disclosed

Servicenow Architect

Hyderabad / Secunderabad,

Chennai

+1

9-14 Yrs

Not Disclosed

Explore more jobs
Senior Consultant
4k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Lead Consultant
3.4k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Consultant
3.3k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
3.3k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Associate Consultant
2.8k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Virtusa Consulting Services with

Cognizant

3.7
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