Virtusa interview experience Real time questions & tips from candidates to crack your interview

Associate Engineer Technology

Virtusa
upvote
share-icon
3 rounds | 5 Coding problems

Interview preparation journey

expand-icon
Preparation
Duration: 3 months
Topics: Core Java, OOPS, Multithreading, Exceptions, SQL.
Tip
Tip

Tip 1 : Give 1 hour daily for coding.
Tip 2 : Clear the concepts first
Tip 3 : Never give up

Application process
Where: Referral
Eligibility: 60% in Graduation
Resume Tip
Resume tip

Tip 1 : One page resume.
Tip 2 : Clear and mention projects
Tip 3 : Mention what you really know, don’t mention useless

Interview rounds

01
Round
Medium
Online Coding Interview
Duration90 minutes
Interview date30 Jul 2021
Coding problem2

It was a protected round,
Time is enough but try to solve it ASAP

1. Ninja and substrings

Easy
20m average time
80% success
0/40
Asked in companies
LinkedInLivekeeping (An IndiaMART Company)Zoho Corporation

Ninja has been given a string 'STR' containing only lowercase alphabetic characters. Ninja has to find the number of all the different possible substrings of size two that appear in 'STR' as contiguous substrings.

For example:

If the string is “abcd”, then all possible substrings of size two are { “ab”, “bc”, “cd”}.
Try solving now

2. Maximum In Sliding Windows Of Size K

Moderate
20m average time
80% success
0/80
Asked in companies
QuikrHCL TechnologiesGoldman Sachs

Given an array/list of integers of length ‘N’, there is a sliding window of size ‘K’ which moves from the beginning of the array, to the very end. You can only see the ‘K’ numbers in a particular window at a time. For each of the 'N'-'K'+1 different windows thus formed, you are supposed to return the maximum element in each of them, from the given array/list.

Try solving now
02
Round
Medium
Video Call
Duration30 minutes
Interview date10 Aug 2021
Coding problem2

1. Theory Question

  • What do you understand by normalization?
  • What are acid properties?
  • What is data abstraction?
  • How data abstraction is obtained in object-based language?
  • What do you understand by polymorphism?

2. Allocate Books

Moderate
10m average time
90% success
0/80
Asked in companies
PayUIBMZS

Given an array ‘arr’ of integer numbers, ‘arr[i]’ represents the number of pages in the ‘i-th’ book.


There are ‘m’ number of students, and the task is to allocate all the books to the students.


Allocate books in such a way that:

1. Each student gets at least one book.
2. Each book should be allocated to only one student.
3. Book allocation should be in a contiguous manner.


You have to allocate the book to ‘m’ students such that the maximum number of pages assigned to a student is minimum.


If the allocation of books is not possible, return -1.


Example:
Input: ‘n’ = 4 ‘m’ = 2 
‘arr’ = [12, 34, 67, 90]

Output: 113

Explanation: All possible ways to allocate the ‘4’ books to '2' students are:

12 | 34, 67, 90 - the sum of all the pages of books allocated to student 1 is ‘12’, and student two is ‘34+ 67+ 90 = 191’, so the maximum is ‘max(12, 191)= 191’.

12, 34 | 67, 90 - the sum of all the pages of books allocated to student 1 is ‘12+ 34 = 46’, and student two is ‘67+ 90 = 157’, so the maximum is ‘max(46, 157)= 157’.

12, 34, 67 | 90 - the sum of all the pages of books allocated to student 1 is ‘12+ 34 +67 = 113’, and student two is ‘90’, so the maximum is ‘max(113, 90)= 113’.

We are getting the minimum in the last case.

Hence answer is ‘113’.
Try solving now
03
Round
Medium
HR Round
Duration15 minutes
Interview date15 Aug 2021
Coding problem1

1. Basic HR Questions

Give me your Introduction.

What are your strengths and weaknesses?

Why do you want to join us?

Here's your problem of the day

Solving this problem will increase your chance to get selected in this company

Skill covered: Programming

To make an AI less repetitive in a long paragraph, you should increase:

Choose another skill to practice
Similar interview experiences
Fullstack Developer
3 rounds | 4 problems
Interviewed by Virtusa
2093 views
0 comments
0 upvotes
Fullstack Developer
3 rounds | 4 problems
Interviewed by Virtusa
0 views
0 comments
0 upvotes
Technology Consultant
3 rounds | 3 problems
Interviewed by Virtusa
1337 views
0 comments
0 upvotes
company logo
SDE - Intern
1 rounds | 3 problems
Interviewed by Amazon
3282 views
0 comments
0 upvotes