Upload Button Icon Add office photos

Filter interviews by

Clear (1)

Virtusa Consulting Services Fullstack Java Developer Interview Questions and Answers

Updated 5 Sep 2024

Virtusa Consulting Services Fullstack Java Developer Interview Experiences

3 interviews found

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Just some basic questions.

Round 2 - Coding Test 

Total 6 questions. 4 basic and 2 advanced.

Round 3 - Technical 

(2 Questions)

  • Q1. Write a program for Fibonacci?
  • Ans. 

    Program to generate Fibonacci series using Java

    • Use a loop to generate Fibonacci series

    • Start with 0 and 1 as the first two numbers

    • Add the previous two numbers to get the next number

    • Repeat the process until the desired number of terms

  • Answered by AI
  • Q2. Write a code for inheritance ?
  • Ans. 

    Inheritance in Java allows a class to inherit properties and behaviors from another class.

    • Create a parent class with common properties and methods

    • Create a child class that extends the parent class

    • Child class can access parent class properties and methods

  • Answered by AI

Skills evaluated in this interview

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

I applied via Campus Placement and was interviewed before Jul 2022. There were 3 interview rounds.

Round 1 - Aptitude Test 

Probability, Logical Reasoning, etc.

Round 2 - Coding Test 

4 Basic coding questions
You can choose any language you want to code from.
Questions like palindrome and string reverse were asked.

Round 3 - HR 

(2 Questions)

  • Q1. Asked about the project I had done.
  • Q2. Comfortable with relocation

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident while answering and need to know Java.

Fullstack Java Developer Interview Questions Asked at Other Companies

Q1. If needed, will you work on the older technology stack?
asked in LTIMindtree
Q2. is it necessary for classes implementing an interface to implemen ... read more
asked in RealPage
Q3. How can two components who are not parent-child can communicate w ... read more
asked in RealPage
Q4. What are different annotations in Spring Boot and what are their ... read more
asked in RealPage
Q5. What are various ways in which two microservices can interact wit ... read more
Round 1 - Aptitude Test 

Easy

Round 2 - Coding Test 

Java

Round 3 - Technical 

(1 Question)

  • Q1. Java basic questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Java basics must be clear. Topics like OOPS.

Interview questions from similar companies

I applied via Approached by company and was interviewed in Dec 2021. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Java api calling from angular application and all security and integration related question.
  • Q2. Project structure related question
Round 2 - Technical 

(1 Question)

  • Q1. Project structure design patterns

Interview Preparation Tips

Topics to prepare for Capgemini Fullstack Java Developer interview:
  • api integration
  • angular project structure
Interview preparation tips for other job seekers - Questions asked like how you integrate or call your java api from angular application.
How java api allow any host to access it's api
annotation for api designing
Round 1 - One-on-one 

(1 Question)

  • Q1. A senior in my current team was asking questions. He was helping to complete my answers. Be prepared with oops, collection, thread concepts, spring, hibernate basics thoroughly.

Interview Preparation Tips

Interview preparation tips for other job seekers - Simple... Most was from angular for first round, then move to java. You should be strong in java. Front end they won't ask much questions
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

I applied via Naukri.com and was interviewed in Apr 2024. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Tell me about internal working of JVM
  • Q2. Tell me about SAGA pattern in Microservices
  • Ans. 

    SAGA pattern is a design pattern used in microservices architecture to manage distributed transactions.

    • SAGA pattern breaks down a long-running transaction into a series of smaller, independent transactions.

    • Each step in the SAGA pattern is a separate service that communicates with other services through events.

    • If a step fails, compensating transactions are executed to rollback the changes made by previous steps.

    • Example:...

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Tell me about your current project structure
  • Q2. What is an API , how would you secure an API
  • Ans. 

    API stands for Application Programming Interface. It defines the methods and data formats that applications can use to communicate with each other.

    • API is a set of rules and protocols that allows different software applications to communicate with each other.

    • To secure an API, you can use authentication methods like OAuth, API keys, or JWT tokens.

    • Implementing encryption (HTTPS) and rate limiting can also enhance API secu...

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. Why do you want to relocate to Bangalore
  • Q2. Tell me about one instance where you faced pressure and how did you overcome ?

Interview Preparation Tips

Interview preparation tips for other job seekers - You can assume easy to medium level questions.

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

Round 1 - Technical 

(1 Question)

  • Q1. Q1 - tell me about yourself After my introduction he directly jump into coding and asked me simple array manipulation question. Q3 - balanced string - you have a String = "()()()" or "(()" or "(()). The ou...
Round 2 - Technical 

(1 Question)

  • Q1. The interviewers don't know how to speak English and are worst in communication. Q1 - Convert int a=123 to string. I told him you can do it with in built method but he asked me to do without it. I told h...

Interview Preparation Tips

Interview preparation tips for other job seekers - My experience was bad because both the interviewers are not able to communicate properly and was not able to speak English properly.

I was interviewed in Feb 2022.

Round 1 - Technical 

(1 Question)

  • Q1. Java common question on hashmap, stream api

Interview Preparation Tips

Interview preparation tips for other job seekers - there are 2 technical round basic
Round 1 - Group Discussion 

1)Driffience between Abstract class &
Interface.
-abstract class
represents property
&
behaviour of an object
whereas
interface
represents
behaviour
of an object.
2)Driffience between equal() vs ==operator.
equal() is
an object class method
whereas
equal() of string class
override
the object class equal().
3)can we use pointer's in Java.
Not explicitly but implicitly we can use pointer's in java.
Dynamic m/m refers with help of pointer's but java does not support the pointer's.
when we r creating an object in java refrence varaible of an object holds the identity that is nothing but an implicit pointer that holds an unique identity of an object.
4)How we can print object ID.
-Object ID printed with help of object class which is a service provider class having 9().
5)what is object class.
-it is a super class of all predefined & userdefined class.
6)Write a prog to get name of main thread in java.
-class A
{
psvm(String args [])
{
s.o.pln(Thread.currentThread().getName());
}
}
7)length vs length()
-length
is
data menmber
of proxy class
whereas
length() is a string class().

Round 2 - One-on-one 

(2 Questions)

  • Q1. Explain JVM in ur own language.
  • Ans. 

    JVM is an abstract machine that executes Java bytecode.

    • JVM stands for Java Virtual Machine.

    • It is responsible for interpreting and executing Java bytecode.

    • JVM provides platform independence to Java programs.

    • It has its own memory management system and garbage collector.

    • JVM can be implemented on different operating systems.

    • Examples of JVM languages include Java, Kotlin, and Scala.

  • Answered by AI
  • Q2. Exlplaing Multhreading.

Interview Preparation Tips

Interview preparation tips for other job seekers - prepairing accordingly
for to improve
i) strength,
ii)creativity
&
problem analysis & sloving attitude
with accessing fundamental stratergies of software development.

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Jul 2021. There were 3 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 Resume tips
Round 2 - One-on-one 

(2 Questions)

  • Q1. Question related in resume skills and for company improvement knowledge
  • Q2. Personal information
Round 3 - Group Discussion 

4 senior interviewer in group discus

Interview Preparation Tips

Interview preparation tips for other job seekers - All the questions aks the fresher and experience employees
Contribute & help others!
anonymous
You can choose to be anonymous

Virtusa Consulting Services Interview FAQs

How many rounds are there in Virtusa Consulting Services Fullstack Java Developer interview?
Virtusa Consulting Services interview process usually has 3-4 rounds. The most common rounds in the Virtusa Consulting Services interview process are Aptitude Test, Coding Test and Technical.
What are the top questions asked in Virtusa Consulting Services Fullstack Java Developer interview?

Some of the top questions asked at the Virtusa Consulting Services Fullstack Java Developer interview -

  1. Write a code for inheritanc...read more
  2. Write a program for Fibonac...read more
  3. Java basic questi...read more

Recently Viewed

JOBS

Browse jobs

Discover jobs you love

COMPANY BENEFITS

KNR Constructions

20 benefits

COMPANY BENEFITS

IRB Infrastructure

60 benefits

COMPANY BENEFITS

Dilip Buildcon

304 benefits

COMPANY BENEFITS

Dilip Buildcon

304 benefits

INTERVIEWS

Houghton Mifflin Harcourt

No Interviews

INTERVIEWS

Swelect Energy Systems

No Interviews

INTERVIEWS

Time Legend It And Hr Consulting Solutions

No Interviews

INTERVIEWS

Swelect Energy Systems

No Interviews

INTERVIEWS

KPIT Technologies

No Interviews

Tell us how to improve this page.

Virtusa Consulting Services Fullstack Java Developer Interview Process

based on 2 interviews

Interview experience

3.5
  
Good
View more
Virtusa Consulting Services Fullstack Java Developer Salary
based on 28 salaries
₹4 L/yr - ₹7 L/yr
37% less than the average Fullstack Java Developer Salary in India
View more details

Virtusa Consulting Services Fullstack Java Developer Reviews and Ratings

based on 1 review

4.0/5

Rating in categories

4.0

Skill development

4.0

Work-life balance

3.0

Salary

4.0

Job security

4.0

Company culture

4.0

Promotions

3.0

Work satisfaction

Explore 1 Review and Rating
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
Rate your experience using AmbitionBox
Terrible
Terrible
Poor
Poor
Average
Average
Good
Good
Excellent
Excellent