Upload Button Icon Add office photos

Filter interviews by

Virtusa Consulting Services Senior Engineer Interview Questions and Answers

Updated 21 May 2024

Virtusa Consulting Services Senior Engineer Interview Experiences

1 interview found

Senior Engineer Interview Questions & Answers

user image Sayan Mondal

posted on 21 May 2024

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
-
Result
Selected Selected
Round 1 - Technical 

(1 Question)

  • Q1. ServiceNow basic QU
Round 2 - One-on-one 

(1 Question)

  • Q1. CAD QUestion about serviecnow
Round 3 - HR 

(1 Question)

  • Q1. Basic question and sal discussion and project discussion

Interview questions from similar companies

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

I applied via Approached by Company and was interviewed in Aug 2024. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Interviewer asked the google questions as he is not even aware of my profile , he wanted mw to answer the same and asked few question which is irrelevant to jd
  • Q2. Finally after 30 min of interview received a rejection mail after 5 min
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
Not Selected

I applied via Referral and was interviewed in Jul 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. What is impact analysis
  • Ans. 

    Impact analysis is the process of assessing the potential effects of a change or action on a system or project.

    • Identifying the scope of the change and its potential impacts on various components of the system

    • Evaluating the risks and benefits associated with the change

    • Determining the resources and effort required to implement the change

    • Assessing the dependencies and constraints that may affect the change

    • Example: Conduct...

  • Answered by AI
  • Q2. What is Bug life cycle
  • Ans. 

    Bug life cycle is the process of a bug from identification to resolution in software development.

    • Bug is identified by testers or users

    • Bug is reported in a bug tracking system

    • Bug is assigned to a developer

    • Developer fixes the bug

    • Bug is retested by testers

    • If bug is fixed, it is closed. If not, it is reopened

    • Bug may go through multiple cycles before resolution

  • Answered by AI
Round 2 - Mangaerial Round 

(2 Questions)

  • Q1. How do you handle team
  • Ans. 

    I handle teams by fostering open communication, setting clear goals, providing support, and promoting collaboration.

    • Foster open communication within the team to ensure everyone is on the same page

    • Set clear goals and expectations to guide the team towards success

    • Provide support and resources to help team members overcome challenges

    • Promote collaboration and teamwork to leverage the strengths of each team member

    • Lead by ex...

  • Answered by AI
  • Q2. What are the sprint ceremonies
  • Ans. 

    Sprint ceremonies are regular meetings held during a sprint in Agile methodology to plan, review, and improve the team's work.

    • Sprint Planning: At the beginning of the sprint, the team plans the work to be done.

    • Daily Standup: Daily check-in meetings to discuss progress, challenges, and plans for the day.

    • Sprint Review: Meeting at the end of the sprint to demonstrate completed work to stakeholders.

    • Sprint Retrospective: Re...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - All the best

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Python related libraries and SQL
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Coding on java 8 streams API
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
-
Result
No response
Round 1 - Coding Test 

1st round was consist of mcq questions the difficulty level was moderate to hard.

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

I applied via Referral and was interviewed in Feb 2022. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Reg design of sheetmetal and welding gdnt related
  • Q2. I have explained in my manner
Round 2 - HR 

(1 Question)

  • Q1. Reg CTC current and expected

I applied via Recruitment Consulltant and was interviewed in Mar 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 - Technical 

(1 Question)

  • Q1. Depending on ur resume
Round 3 - One-on-one 

(1 Question)

  • Q1. Manager based non technical questions
Round 4 - HR 

(1 Question)

  • Q1. Remuneration fixing qnd datw of joining
  • Ans. 

    Remuneration and joining date will be discussed and finalized upon offer acceptance.

    • Remuneration will be based on industry standards and the candidate's experience and skills.

    • Joining date will be mutually agreed upon based on the candidate's availability and the company's requirements.

    • The offer letter will contain all the details regarding remuneration and joining date.

    • Negotiations can be made if the candidate has a st...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Go through the jd properly and if u can search for LinkedIn profile of the person who is taking interview so that u can know what type of questions may come
Round 1 - Technical 

(1 Question)

  • Q1. Basic MVC, Web API questions

Interview Preparation Tips

Interview preparation tips for other job seekers - It was good interview. Had a basic discussion about technologies

I applied via LinkedIn and was interviewed in Jun 2021. There were 5 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Write a program: if input is "my_first_variable" return output as "myFirstVariable" and vice-versa
  • Ans. 

    A program to convert a variable name from snake_case to camelCase and vice-versa.

    • Split the input string by underscore (_) to get an array of words.

    • For snake_case to camelCase conversion, capitalize the first letter of each word except the first one.

    • For camelCase to snake_case conversion, insert an underscore (_) before each capital letter except the first one.

    • Join the array of words with the appropriate delimiter to ge

  • Answered by AI
  • Q2. Write a program: two input, one is N(any integer, lets say 3), second input will be array of integers(duplicate/multiple occurrences of same integer, lets say [2,3,2,4,2] ). You have to return the number w...
  • Ans. 

    Program to find the number whose occurrence is greater than N/2 in an array of integers.

    • Take two inputs, one integer N and an array of integers.

    • Loop through the array and count the occurrence of each number.

    • Return the number whose occurrence is greater than N/2.

    • If no such number found, return '-1'.

  • Answered by AI
  • Q3. Write a program: single input as a string(lets say "aaabcccfffghh"), you have to return the char and their occurrence as a string. In this case you have to return "a3b1c3f3g1h2"
  • Ans. 

    Program to return character and their occurrence in a string.

    • Iterate through the string and count the occurrence of each character.

    • Store the count in a dictionary or hashmap.

    • Create a new string by concatenating the character and their count.

    • Return the new string.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - I have applied for Ui Developer(React/Redux). For that I had to go through series of tests and tech interview.
1. Coding Challenge: Three questions in 75min. Difficulty Level - Average
2.Aptitude Test: 30 questions in 20min. Difficulty Level - Average. Questions related to find the sequence of any missing figure. Train speed related questions. So practice these
3. Two round of Tech interview. Difficulty Level - Average to Difficult
4. MCQ on JS, JS Fundamental, HTML, CSS, React, GIT. Time 190min. Difficulty Level - Difficult.

Nagarro's hiring process is damn fast. After clearing any of the steps they will call on same day.

Skills evaluated in this interview

Virtusa Consulting Services Interview FAQs

How many rounds are there in Virtusa Consulting Services Senior Engineer interview?
Virtusa Consulting Services interview process usually has 3 rounds. The most common rounds in the Virtusa Consulting Services interview process are Technical, One-on-one Round and HR.
How to prepare for Virtusa Consulting Services Senior Engineer 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 AWS, NoSQL, Agile Methodology, Batch Script and CSS.
What are the top questions asked in Virtusa Consulting Services Senior Engineer interview?

Some of the top questions asked at the Virtusa Consulting Services Senior Engineer interview -

  1. Basic question and sal discussion and project discuss...read more
  2. CAD QUestion about serviec...read more
  3. ServiceNow basic...read more

Tell us how to improve this page.

Virtusa Consulting Services Senior Engineer Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more
Virtusa Consulting Services Senior Engineer Salary
based on 43 salaries
₹8.8 L/yr - ₹26 L/yr
70% more than the average Senior Engineer Salary in India
View more details

Virtusa Consulting Services Senior Engineer Reviews and Ratings

based on 5 reviews

4.0/5

Rating in categories

4.9

Skill development

4.0

Work-life balance

3.1

Salary

2.1

Job security

4.9

Company culture

3.0

Promotions

4.0

Work satisfaction

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

₹8 L/yr - ₹30 L/yr

Consultant
3.3k salaries
unlock blur

₹6 L/yr - ₹20.9 L/yr

Lead Consultant
3.3k salaries
unlock blur

₹10.5 L/yr - ₹36 L/yr

Software Engineer
3.2k salaries
unlock blur

₹3.5 L/yr - ₹13 L/yr

Associate Consultant
2.8k salaries
unlock blur

₹4.6 L/yr - ₹15 L/yr

Explore more salaries
Compare Virtusa Consulting Services with

Cognizant

3.8
Compare

TCS

3.7
Compare

Infosys

3.6
Compare

Accenture

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