Upload Button Icon Add office photos

Filter interviews by

Virtusa Consulting Services Software Developer Interview Questions and Answers for Freshers

Updated 22 Apr 2025

9 Interview questions

A Software Developer was asked
Q. What is the difference between HTML and HTML5?
Ans. 

HTML is the standard markup language for creating web pages, while HTML5 is the latest version with new features and improvements.

  • HTML is older and has limited functionality compared to HTML5

  • HTML5 supports new elements like <video>, <audio>, and <canvas>

  • HTML5 has improved support for multimedia and mobile devices

  • HTML5 includes new APIs like Geolocation, Web Storage, and Web Workers

A Software Developer was asked
Q. What is the 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

Software Developer Interview Questions Asked at Other Companies for Fresher

asked in Amazon
Q1. Maximum Subarray Sum Problem Statement Given an array of integers ... read more
asked in Nagarro
Q2. Crazy Numbers Pattern Challenge Ninja enjoys arranging numbers in ... read more
asked in Mr Cooper
Q3. Connect Ropes Problem Statement Given a number of ropes denoted a ... read more
asked in TCS
Q4. Palindromic Numbers Finder Given an integer 'N', your task is to ... read more
Q5. Validate Binary Tree Nodes Problem You are provided with 'N' bina ... read more
🔥 Asked by recruiter 2 times
A Software Developer was asked
Q. What is the 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;

A Software Developer was asked
Q. What are the differences 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.

What people are saying about Virtusa Consulting Services

View All
cleversag
Verified Icon
2w
works at
Virtusa Consulting Services
AMD Interview for senior automation position
I have an upcoming interview at AMD for a Senior Automation Engineer. Has anyone interviewed there recently for this position? I'd appreciate it if you could share some of the questions you were asked.
Got a question about Virtusa Consulting Services?
Ask anonymously on communities.
A Software Developer was asked
Q. What is polymorphism,buzz words of java
Ans. 

Polymorphism is the ability of an object to take on many forms.

  • Polymorphism allows objects of different classes to be treated as if they are of the same class.

  • It is achieved through method overloading and method overriding.

  • Example: A parent class Animal can have child classes like Dog, Cat, and Bird. Each child class can have its own implementation of the method 'makeSound', but they can all be called using the sa...

A Software Developer was asked
Q. 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;

A Software Developer was asked
Q. 

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 down...

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.

Are these interview questions helpful?
A Software Developer was asked
Q. 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 employee...

A Software Developer was asked
Q. 

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 mat...

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.

Virtusa Consulting Services Software Developer Interview Experiences for Freshers

6 interviews found

Software Developer Interview Questions & Answers

user image Yasaswi Nikitha

posted on 26 Dec 2022

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
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 

Easy aptitude questions with minimum tough

Round 3 - Coding Test 

2 rounds of coding.. one is normal coding another is super coding

Round 4 - Technical 

(2 Questions)

  • Q1. What is polymorphism,buzz words of java
  • Ans. 

    Polymorphism is the ability of an object to take on many forms.

    • Polymorphism allows objects of different classes to be treated as if they are of the same class.

    • It is achieved through method overloading and method overriding.

    • Example: A parent class Animal can have child classes like Dog, Cat, and Bird. Each child class can have its own implementation of the method 'makeSound', but they can all be called using the same me...

  • Answered by AI
  • Q2. Difference between html and html5
  • Ans. 

    HTML is the standard markup language for creating web pages, while HTML5 is the latest version with new features and improvements.

    • HTML is older and has limited functionality compared to HTML5

    • HTML5 supports new elements like <video>, <audio>, and <canvas>

    • HTML5 has improved support for multimedia and mobile devices

    • HTML5 includes new APIs like Geolocation, Web Storage, and Web Workers

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident be brave . You can do it . And this is a good company. Good mnc

Skills evaluated in this interview

Software Developer Interview Questions & Answers

user image Abhishek Bhawsar

posted on 2 Jun 2023

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Aptitude Test 

Ask aptitude questions time and work percentage

Round 3 - Coding Test 

Some SQL query and Java program

Round 4 - Technical 

(1 Question)

  • Q1. Interview Questions***String buffer String builder Abstraction Encapsulation Method overloading,program Method overriding,program Self intro Project
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:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
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.

I appeared for an interview 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...

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

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++
  • Q5. Tell me abt yourself
  • 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
  • Q8. Why should we select you
  • 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

Interview questions from similar companies

Interview Questionnaire 

1 Question

  • Q1. Basic questions related to skillset

I applied via Campus Placement and was interviewed in Dec 2020. There were 5 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Program for pattern printing ,bubble sort
  • Ans. 

    Program to print a pattern and implement bubble sort on an array of strings.

    • For pattern printing, use nested loops to print the desired pattern.

    • For bubble sort, compare adjacent elements and swap if necessary.

    • Use a loop to iterate through the array until no more swaps are needed.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Basics

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Aug 2020. There were 5 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Aws vpc gateway questions, devops drawback
  • Q2. Interfaces in oops
  • Ans. 

    Interfaces define a contract for classes to implement certain methods and properties.

    • Interfaces allow for polymorphism and loose coupling.

    • Classes can implement multiple interfaces.

    • Interfaces cannot be instantiated on their own.

    • Interfaces can have default method implementations.

    • Interfaces can be used to enforce design patterns like the adapter pattern.

  • Answered by AI
  • Q3. Meta programing

Interview Preparation Tips

Interview preparation tips for other job seekers - Not at all good experience. Looks like the structure is baffled now after pandemic hit. First of all HR people, they have so much attitude that you can't even ask them any query regarding your JD or project. Secondly there are many rounds but it all depends upon the interviewer mood only and only. Because you are not hired for a direct project, so if the interviewer is egoistic and high attitude, then it's difficult to get positive feedback even if round well all well. Disappointing experience. Suggestion would be to put right people for talent selection. If people are kept in similar way, every new candidate might have negative experience.

I applied via Campus Placement and was interviewed before Nov 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. What does NTT company do?
  • Ans. 

    NTT is a global technology services company that provides IT solutions and services to clients worldwide.

    • NTT offers a wide range of services including cloud computing, cybersecurity, data analytics, and IoT solutions.

    • The company operates in over 80 countries and has over 300,000 employees.

    • NTT is also involved in research and development in areas such as artificial intelligence and quantum computing.

    • Some of NTT's client...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - A careers guidance interview is an impartial, one-to-one meeting between yourself and a professionally qualified careers adviser. A guidance interview can last about 45 minutes. A careers guidance interview is not like a job interview - there are no right or wrong answers.
Contents

Virtusa Consulting Services Interview FAQs

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

Some of the top questions asked at the Virtusa Consulting Services Software Developer 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. difference between truncate and d...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.

Overall Interview Experience Rating

4.3/5

based on 3 interview experiences

Difficulty level

Moderate 100%

Duration

Less than 2 weeks 100%
View more
Virtusa Consulting Services Software Developer Salary
based on 1.1k salaries
₹4.1 L/yr - ₹19 L/yr
9% more than the average Software Developer Salary in India
View more details

Virtusa Consulting Services Software Developer Reviews and Ratings

based on 91 reviews

3.9/5

Rating in categories

3.8

Skill development

3.7

Work-life balance

3.6

Salary

3.5

Job security

3.7

Company culture

3.3

Promotions

3.6

Work satisfaction

Explore 91 Reviews and Ratings
Senior Consultant
3.7k salaries
unlock blur

₹14 L/yr - ₹26 L/yr

Software Engineer
3.5k salaries
unlock blur

₹4.5 L/yr - ₹13.2 L/yr

Lead Consultant
3.3k salaries
unlock blur

₹17.1 L/yr - ₹29.1 L/yr

Consultant
3.2k salaries
unlock blur

₹10 L/yr - ₹19 L/yr

Senior Software Engineer
2.6k salaries
unlock blur

₹11.1 L/yr - ₹22 L/yr

Explore more salaries
Compare Virtusa Consulting Services with

Cognizant

3.7
Compare

TCS

3.6
Compare

Infosys

3.6
Compare

Accenture

3.7
Compare
write
Share an Interview