Skip to content

Virtusa Placement Papers 2025

Overview

This page is a working set of Virtusa placement papers from 2025: from student reports questions, the 2025 online assessment pattern, and step-by-step solutions. Use it to see what Virtusa actually asked in the latest cycle, how hard the rounds were, and which themes (DSA, system design, aptitude, or role-specific topics) mattered most. Practice the problems below under timed conditions, then cross-check with the interview and preparation guides if you are targeting an upcoming Virtusa drive.

Virtusa Online Assessment 2025 pattern

Section Questions Time Difficulty
Aptitude 20-25 30 min Medium
Technical 15-20 30 min Medium
Coding 1-2 30 min Medium

Virtusa Placement Papers 2025 - actual questions & solutions

This section contains practice questions styled on Virtusa placement papers 2025 (recent-cycle pattern), with worked solutions. Use them as timed sectional drills - from student reports drives vary by college and role, so treat this as a high-signal practice bank, not an official paper dump.

Question 1

Q1: A train 180 m long crosses a pole in 12 seconds. Find its speed in km/h.

Solution:

Speed = distance/time = 180/12 m/s = (180/12) × (18/5) = 54 km/h.

Answer: 54 km/h

Question 2

Q2: Simple interest on ₹5000 at 8% per annum for 3 years is?

Solution:

SI = (P × R × T)/100 = (5000 × 8 × 3)/100 = ₹1200.

Answer: ₹1200

Question 3

Q3: A and B together finish a job in 12 days. B alone takes 18 days. How many days does A alone take?

Solution:

Together rate = 1/12. B’s rate = 1/18.

A’s rate = 1/12 − 1/18 = (18−12)/(12×18) = 6/216. Days for A alone = 216/6 = 36 days.

Answer: 36 days

Question 4

Q4: A shopkeeper marks goods 40% above cost and gives a 10% discount. Find the profit percentage.

Solution:

Let CP = 100. MP = 140. SP after 10% discount = 126.

Profit % = 126 − 100 = 26%.

Answer: 26%

Question 5

Q5: Pointing to a photo, Ravi said, ‘He is the son of my grandfather’s only son.’ How is the person related to Ravi?

Solution:

Grandfather’s only son = Ravi’s father. Son of Ravi’s father = Ravi himself (or his brother).

In standard puzzle framing with one son implied for the speaker context: the person is Ravi’s brother (or Ravi). Most campus keys take Brother.

Answer: Brother

Question 6

Q6: In a row of 46 students, A is 12th from the left and B is 9th from the right. How many students are between A and B if A is to the left of B?

Solution:

Positions from left: A = 12, B = 46 − 9 + 1 = 38. Students between = 38 − 12 − 1 = 25.

Answer: 25

Question 7

Q7: Choose the antonym of ‘Expand’.

Solution:

‘Expand’ means roughly the opposite of Contract.

Answer: Contract

Question 8

Q8: Identify the error: ‘Neither of the boys have submitted their assignment.’

Solution:

‘Neither’ is singular → verb should be has, not have.

Correct: Neither of the boys has submitted his/their assignment.

Answer: have → has

Question 9: longest common prefix

Show solution

Problem Statement: Find the longest common prefix string amongst an array of strings.

Example:

Input: ["flower","flow","flight"]
Output: "fl"

Solution (Java):

public String longestCommonPrefix(String[] strs) {
if (strs.length == 0) return "";
String pref = strs[0];
for (int i = 1; i < strs.length; i++) {
while (!strs[i].startsWith(pref)) {
pref = pref.substring(0, pref.length() - 1);
if (pref.isEmpty()) return "";
}
}
return pref;
}

Time Complexity: O(S)
Space Complexity: O(1)

Question 10: rotate array right by k

Show solution

Problem Statement: Rotate the array to the right by k steps.

Example:

Input: [1,2,3,4,5,6,7], k = 3
Output: [5,6,7,1,2,3,4]

Solution (Java):

public void rotate(int[] nums, int k) {
k %= nums.length;
reverse(nums, 0, nums.length - 1);
reverse(nums, 0, k - 1);
reverse(nums, k, nums.length - 1);
}
void reverse(int[] a, int l, int r) {
while (l < r) { int t = a[l]; a[l++] = a[r]; a[r--] = t; }
}

Time Complexity: O(n)
Space Complexity: O(1)

Question 11: climbing stairs

Show solution

Problem Statement: You can climb 1 or 2 steps. How many distinct ways to climb n stairs?

Example:

Input: n = 4
Output: 5

Solution (Java):

public int climbStairs(int n) {
if (n <= 2) return n;
int a = 1, b = 2;
for (int i = 3; i <= n; i++) {
int c = a + b; a = b; b = c;
}
return b;
}

Time Complexity: O(n)
Space Complexity: O(1)

Key insights from 2025 Virtusa Online Assessment

  1. Aptitude Section is Critical: Must perform well in quantitative and logical reasoning
  2. Technical MCQs: Strong emphasis on programming fundamentals, DBMS, OOPs, digital engineering concepts
  3. Coding Section: 1-2 coding problems in 30 minutes requires good problem-solving skills
  4. Time Management: 20-25 aptitude in 30 min + 15-20 technical in 30 min + 1-2 coding in 30 min
  5. Success Rate: Only 20-25% cleared assessment and advanced to interviews
  6. Platform: Virtusa assessment platform
  7. Focus Areas: Quantitative aptitude, logical reasoning, programming fundamentals, digital engineering
  8. Enhanced Emphasis: Optimal solutions and digital engineering knowledge

Virtusa 2025 interview experiences

Based on recent candidate experiences from 2025 Virtusa interviews:

2025 Interview Process:

  1. Online Assessment (90 minutes): Aptitude (20-25) + Technical (15-20) + Coding (1-2)
  2. Technical Interview (45-60 minutes): Programming concepts, DBMS, OOPs, digital engineering, problem-solving
  3. HR Interview (30-45 minutes): Behavioral questions, company fit, motivation

2025 Interview Trends:

  • Increased emphasis on digital engineering and modern technologies
  • More focus on optimal solutions and cloud technologies
  • Enhanced behavioral questions about adaptability and learning
  • Questions about digital transformation and engineering practices

Common 2025 Interview Topics:

  • Aptitude: Quantitative reasoning, logical reasoning, coding-decoding
  • Technical: Programming concepts, DBMS, OOPs, digital engineering, cloud basics
  • Coding: Arrays, strings, basic algorithms, optimal solutions
  • Behavioral: Problem-solving approach, teamwork, motivation, adaptability

Success Tips:

  • Strong aptitude performance is essential - practice quantitative and logical reasoning
  • Understand programming fundamentals, DBMS, OOPs, digital engineering concepts
  • Practice coding problems - arrays, strings, basic algorithms
  • Prepare behavioral examples using STAR format
  • Understand Virtusa’s business model and digital engineering focus

For detailed interview experiences from 2025, visit Virtusa Interview Experience page.

Preparation tips for Virtusa 2025 pattern

  1. Master Aptitude: Focus on quantitative, logical reasoning - practice regularly
  2. Technical Fundamentals: Strong understanding of programming, DBMS, OOPs, digital engineering
  3. Practice Previous Year Papers: Solve Virtusa assessment papers from 2020-2025 to understand evolving patterns
  4. Time Management: Practice completing 20-25 aptitude questions in 30 minutes
  5. Coding Practice: Practice arrays, strings, basic algorithms, optimal solutions
  6. Technical MCQs: Practice programming concepts, DBMS, OOPs, digital engineering
  7. Behavioral Preparation: Prepare examples using STAR format - leadership, teamwork, adaptability
  8. Mock Tests: Take timed practice tests to improve speed and accuracy
  9. Digital Engineering: Understand digital engineering concepts and cloud technologies
  10. Communication Skills: Practice articulating thoughts clearly

Comments & Suggestions

Similar companies

Infosys · TCS · Wipro · Accenture · Capgemini · HCL