Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by YASH Technologies Team. If you also belong to the team, you can get access from here

YASH Technologies Verified Tick

Compare button icon Compare button icon Compare
3.8

based on 1.6k Reviews

Filter interviews by

YASH Technologies Senior Java Developer Interview Questions and Answers

Updated 11 Dec 2024

YASH Technologies Senior Java Developer Interview Experiences

1 interview found

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Lambda expression
  • Q2. Linklist coding

Senior Java Developer Jobs at YASH Technologies

View all

Interview questions from similar companies

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

I applied via Naukri.com and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. Java 8 Default Method
  • Ans. 

    Java 8 Default Method allows interfaces to have method implementations.

    • Introduced in Java 8 to provide backward compatibility for interfaces

    • Can have method implementations in interfaces using the 'default' keyword

    • Used to add new methods to interfaces without breaking existing implementations

  • Answered by AI
  • Q2. Sort Array with given value
  • Ans. 

    Sort array of strings with a given value

    • Use Arrays.sort() method with a custom Comparator to sort the array based on the given value

    • Handle cases where the given value is not present in the array

    • Example: Sort array ['apple', 'banana', 'orange', 'grape'] with 'banana' as the given value

  • Answered by AI
  • Q3. SQL Queries on Joins
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

I was interviewed in Sep 2024.

Round 1 - Assignment 

There were MCQ questions consists of different sections like Design Pattern,Java 8

Round 2 - Technical 

(2 Questions)

  • Q1. Questions related to Multithreading,Design patterns
  • Q2. Java coding questions
Round 3 - Technical 

(2 Questions)

  • Q1. Questions related to Multithreading
  • Q2. Java coding questions
Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Core java oops concepts
  • Q2. Angular basic topics
Round 2 - Technical 

(2 Questions)

  • Q1. Spring boot topics
  • Q2. Oracle queries examples
  • Ans. 

    Examples of Oracle queries

    • Use SELECT statement to retrieve data from a table

    • Use WHERE clause to filter results based on a condition

    • Use JOIN to combine rows from two or more tables based on a related column

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. Discussed about my carrer details
  • Q2. Expected CTC discussed

Interview Preparation Tips

Interview preparation tips for other job seekers - Good to not join this company

Skills evaluated in this interview

Interview experience
2
Poor
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected
Round 1 - Technical 

(1 Question)

  • Q1. Java 8, exception handling for method overriding, collections basic on HashMap , hash set, blocking queue. Transient volatile

Interview Preparation Tips

Topics to prepare for Virtusa Consulting Services Senior Java Developer interview:
  • Java 8
  • exception handling
  • coding questions
Interview preparation tips for other job seekers - The 1st technical round was fine but the 2nd one was overwhelming since 4-5 people came to interview with cameras on so please be prepared.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected
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 

(8 Questions)

  • Q1. DESCRIBE TYPES JVM MEMORY.
  • Ans. 

    JVM memory consists of Young Generation, Old Generation, and Permanent Generation.

    • Young Generation: where new objects are allocated and aged before moving to Old Generation.

    • Old Generation: where long-lived objects are stored.

    • Permanent Generation: where metadata such as class definitions and method information are stored.

  • Answered by AI
  • Q2. DIFFERENCE BETWEEN INTERFACE AND ABSTRACT CLASS.
  • Ans. 

    Interface is a contract with no implementation, while abstract class can have some implementation.

    • Interface cannot have any method implementation, while abstract class can have some method implementations.

    • A class can implement multiple interfaces, but can only extend one abstract class.

    • Interfaces are used to achieve multiple inheritance in Java.

    • Abstract classes can have constructors, while interfaces cannot.

    • Example: In...

  • Answered by AI
  • Q3. HOW TO CREATE OUR OWN IMMUTABLE CLASS? WHY IMMUTABLE CLASS
  • Ans. 

    Immutable classes in Java are classes whose objects cannot be modified once they are created.

    • Make the class final to prevent inheritance

    • Make all fields private and final

    • Do not provide setter methods for fields

    • Ensure that any mutable objects within the class are also immutable

  • Answered by AI
  • Q4. WHAT IS DIFFERENCE BETWEEN COMPOSITION AND AGGREGATION ?
  • Ans. 

    Composition is a strong relationship where the child object cannot exist independently of the parent object, while aggregation is a weak relationship where the child object can exist independently.

    • Composition is a 'has-a' relationship, where the child object is a part of the parent object.

    • Aggregation is a 'has-a' relationship, where the child object is not a part of the parent object.

    • In composition, the child object is...

  • Answered by AI
  • Q5. DIFFERENCE BETWEEN COMPARABLE AND COMPARATOR.
  • Ans. 

    Comparable is an interface used for natural ordering of objects, while Comparator is an interface used for custom ordering of objects.

    • Comparable interface is implemented by the class whose objects are to be compared, while Comparator interface is implemented by a separate class.

    • Comparable interface has a single method compareTo() for comparing objects, while Comparator interface has a single method compare() for custom...

  • Answered by AI
  • Q6. DIFFERENCE BETWEEN HASHMAP AND CONCURRENTHASH MAP
  • Ans. 

    HashMap is not thread-safe while ConcurrentHashMap is thread-safe.

    • HashMap is not thread-safe and can lead to ConcurrentModificationException if modified during iteration.

    • ConcurrentHashMap allows concurrent read and write operations without the need for external synchronization.

    • ConcurrentHashMap achieves thread-safety by dividing the map into segments, allowing multiple threads to operate on different segments concurren...

  • Answered by AI
  • Q7. DIFFERENCE BETWEEN COLLECTION AND STREAM
  • Ans. 

    Collections store data while streams process data in a functional way.

    • Collections are used to store and manage groups of objects, while streams are used to process collections of objects.

    • Collections are mutable, meaning you can add, remove, or modify elements, while streams are immutable and do not change the original data.

    • Streams use functional programming concepts like map, filter, and reduce to process data efficien...

  • Answered by AI
  • Q8. IN WHICH SITUATION WE USE @PRIMARY AND @ QUALIFIER ?
  • Ans. 

    Use @Primary to specify a primary bean when multiple beans of the same type are present. Use @Qualifier to specify a specific bean when multiple beans of the same type are present.

    • Use @Primary to indicate the primary bean to be used when multiple beans of the same type are present in the Spring application context.

    • Use @Qualifier along with @Autowired to specify a specific bean to be injected when multiple beans of the ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Everyone should focus on core java and java 1.8.
Spring boot and microservices

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in May 2024. There was 1 interview round.

Round 1 - Coding Test 

Java8 stream api related problems to code in notepad

Interview Preparation Tips

Interview preparation tips for other job seekers - Study core java and java8 concepts
Practice java8 stream api coding
Spring Boot, JPA, MVC, Security and Test
Round 1 - Technical 

(2 Questions)

  • Q1. How to use zipkin in microservices
  • Ans. 

    Zipkin is a distributed tracing system used to monitor microservices communication.

    • Add Zipkin dependencies to each microservice

    • Configure each microservice to send tracing data to Zipkin server

    • Use Zipkin UI to visualize and analyze the tracing data

    • Add trace IDs to logs for better debugging

    • Use Zipkin to identify performance bottlenecks and optimize microservices communication

  • Answered by AI
  • Q2. Why we need micro services
  • Ans. 

    Microservices allow for modular and scalable software development.

    • Microservices break down large applications into smaller, independent services.

    • Each service can be developed, deployed, and scaled independently.

    • This allows for greater flexibility and agility in software development.

    • Microservices also promote better fault isolation and easier maintenance.

    • Examples of companies using microservices include Netflix, Amazon,

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Design for bruteforce method to address ondemand requirement
  • Ans. 

    Bruteforce method for ondemand requirement design

    • Identify the problem and define the scope

    • Determine the possible inputs and outputs

    • Create a brute force algorithm to solve the problem

    • Optimize the algorithm to reduce time complexity

    • Test the algorithm with various inputs and edge cases

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Technically sound the. You can crack it very easily.

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed before May 2023. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Questions related to Multi threading, Exception Handling, Streams, Springboot annotations, Microservices were asked.

I applied via Naukri.com and was interviewed in Sep 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Basic Java and Project related and scenario based

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepared well for core java

YASH Technologies Interview FAQs

How many rounds are there in YASH Technologies Senior Java Developer interview?
YASH Technologies interview process usually has 1 rounds. The most common rounds in the YASH Technologies interview process are One-on-one Round.
How to prepare for YASH Technologies Senior Java Developer 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 YASH Technologies. The most common topics and skills that interviewers at YASH Technologies expect are Computer Science, Digital Marketing, Life Sciences, Middleware and SQL.
What are the top questions asked in YASH Technologies Senior Java Developer interview?

Some of the top questions asked at the YASH Technologies Senior Java Developer interview -

  1. Lambda express...read more
  2. linklist cod...read more

Tell us how to improve this page.

YASH Technologies Senior Java Developer Salary
based on 9 salaries
₹9.5 L/yr - ₹17 L/yr
6% less than the average Senior Java Developer Salary in India
View more details

YASH Technologies Senior Java Developer Reviews and Ratings

based on 2 reviews

2.1/5

Rating in categories

3.0

Skill development

2.1

Work-life balance

3.0

Salary

2.0

Job security

3.0

Company culture

2.0

Promotions

2.1

Work satisfaction

Explore 2 Reviews and Ratings
Senior Java Developer Job

Bangalore / Bengaluru

5-12 Yrs

Not Disclosed

Explore more jobs
Software Engineer
1.3k salaries
unlock blur

₹2.4 L/yr - ₹12 L/yr

Senior Software Engineer
1.3k salaries
unlock blur

₹6.1 L/yr - ₹24 L/yr

Associate Consultant
763 salaries
unlock blur

₹3 L/yr - ₹10.4 L/yr

Consultant
699 salaries
unlock blur

₹5.5 L/yr - ₹18 L/yr

Module Lead
521 salaries
unlock blur

₹8.7 L/yr - ₹32 L/yr

Explore more salaries
Compare YASH Technologies with

TCS

3.7
Compare

Infosys

3.7
Compare

Wipro

3.7
Compare

Tech Mahindra

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