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 Software Developer Interview Questions and Answers

Updated 29 Jul 2024

YASH Technologies Software Developer Interview Experiences

6 interviews found

Software Developer Interview Questions & Answers

user image vikrant Badukale

posted on 29 Jul 2024

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

(2 Questions)

  • Q1. How to modify Collection
  • Ans. 

    Collections in Java can be modified using methods like add, remove, and clear.

    • Use add() method to add elements to a collection

    • Use remove() method to remove elements from a collection

    • Use clear() method to remove all elements from a collection

  • Answered by AI
  • Q2. Which exception occurred while modify Collection object
  • Ans. 

    ConcurrentModificationException occurs while modifying a Collection object.

    • Occurs when a collection is modified while iterating over it

    • Thrown by methods like add, remove, clear, etc. during iteration

    • Can be avoided by using Iterator's remove method instead of Collection's remove method

  • Answered by AI

Skills evaluated in this interview

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

(1 Question)

  • Q1. Oops concepts, Java 8 coding questions
Round 2 - Technical 

(2 Questions)

  • Q1. Project structure, collection framework
  • Q2. Java 8 coding questions

Software Developer Interview Questions Asked at Other Companies

asked in Amazon
Q1. Maximum Subarray Sum Problem Statement Given an array of integers ... read more
asked in Amazon
Q2. Minimum Number of Platforms Needed Problem Statement You are give ... read more
asked in Rakuten
Q3. Merge Two Sorted Arrays Problem Statement Given two sorted intege ... read more
asked in Nagarro
Q4. Crazy Numbers Pattern Challenge Ninja enjoys arranging numbers in ... read more
asked in PhonePe
Q5. Form a Triangle Problem Statement You are given an array of integ ... read more
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via campus placement at Mahakal Institute of Technology, Ujjain and was interviewed in Sep 2023. There were 4 interview rounds.

Round 1 - Aptitude Test 

Online round contain technical and coding question

Round 2 - Group Discussion 

Face to face round provide good atmosphere

Round 3 - Technical 

(1 Question)

  • Q1. Merge sort, bubble sort, queries, Factorial and many more
Round 4 - Behavioral 

(1 Question)

  • Q1. Project related questions
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. How dispatcher servlet works?
  • Ans. 

    Dispatcher servlet in Spring MVC maps incoming requests to the appropriate handler

    • Dispatcher servlet is the front controller in Spring MVC

    • It receives all incoming requests and maps them to the appropriate handler

    • Handler mappings are defined in the configuration file

    • Dispatcher servlet uses HandlerMapping to determine the appropriate controller

    • Once the controller is determined, Dispatcher servlet forwards the request to

  • Answered by AI

Skills evaluated in this interview

YASH Technologies interview questions for designations

 Senior Software Developer

 (2)

 Software Developer Trainee

 (2)

 Python Software Developer

 (1)

 Software Engineer

 (5)

 Java Developer

 (1)

 Web Developer

 (1)

 Salesforce Developer

 (1)

 Android Developer

 (1)

I applied via Company Website and was interviewed in Aug 2021. There were 2 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. Basic Java and DBMS questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Please do not join the company as it is body shop consultantcy firm. It will hire you to work for some other company. You need to relocate yourself to the company that has selected you from Yash and need to follow their rules and regulations.

I applied via Naukri.com and was interviewed before Apr 2021. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. OOPs Concept, Overloading & Overriding, Interface , Abstract Class , Page Life Cycle , Diff Between View bag ,View data ,temp data , What Is State management ,diff between session state view state and cook...
  • Ans. 

    Interview questions for Software Developer on OOPs, Page Life Cycle, State Management, MVC Filters, Authentication & Authorization

    • OOPs concepts include inheritance, polymorphism, encapsulation, and abstraction

    • Overloading is having multiple methods with the same name but different parameters

    • Overriding is having a method in a subclass with the same name and parameters as a method in the superclass

    • Interfaces define a set ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be honest , If you don't know any questions answer just say "Don't Know".

Software Developer Jobs at YASH Technologies

View all

Interview questions from similar companies

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

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

Round 1 - Technical 

(3 Questions)

  • Q1. Run time polymorphism code
  • Q2. Linked list code
  • Q3. Deep copy shallow copy differences
  • Ans. 

    Deep copy creates a new copy of an object with its own unique memory space, while shallow copy creates a new object that references the same memory locations as the original object.

    • Deep copy duplicates all nested objects, while shallow copy only duplicates the references to nested objects.

    • Deep copy ensures that changes to the copied object do not affect the original object, while shallow copy may lead to unintended sid...

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. More deep questions about polymorphism code
  • Q2. Code for interchange of strings without strcpy
  • Ans. 

    Use a loop to swap characters of two strings without using strcpy function.

    • Create two arrays of characters to store the strings

    • Use a loop to iterate through each character of the strings and swap them

    • Ensure to handle cases where strings have different lengths

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - please prepare oops concept and data structure well because its easy for first round but for second round its too difficult - the interviewer was so irritating and asked very stupid wuestions
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Job Portal and was interviewed in Aug 2024. There were 2 interview rounds.

Round 1 - Technical 

(4 Questions)

  • Q1. Given strings and asked to write down the first non-repeatable string
  • Q2. Palindrome program in java
  • Ans. 

    A palindrome program in Java checks if a given string reads the same forwards and backwards.

    • Create a function that takes a string input

    • Use a loop to compare characters from both ends of the string

    • Return true if the string is a palindrome, false otherwise

  • Answered by AI
  • Q3. Diamond problem in java
  • Ans. 

    Diamond problem in Java occurs when a class inherits from two classes that have a common ancestor, resulting in ambiguity.

    • Diamond problem arises in multiple inheritance scenarios in Java.

    • It occurs when a class inherits from two classes that have a common ancestor.

    • To resolve the diamond problem, Java does not support multiple inheritance through classes, but it can be achieved using interfaces.

    • Example: Class A and Class...

  • Answered by AI
  • Q4. Given a list of numbers and insisted to get the sum of numbers which gives 6
  • Ans. 

    Iterate through the list and find pairs of numbers that sum up to 6

    • Iterate through the list and check if the current number + any other number in the list equals 6

    • Store the pairs of numbers that sum up to 6 in a separate list

    • Return the list of pairs

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Java based questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well on your technical skills. Be good at writing pseudo code, Focus on java and oops concepts.

Skills evaluated in this interview

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

(2 Questions)

  • Q1. What is the difference between volatile and atomic variables?
  • Q2. How can caching be implemented?
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

SQL , CODING QUESTION PYTHON

Round 2 - Technical 

(2 Questions)

  • Q1. BASIC SQL QUESTIOS
  • Q2. OOPS 4 PILLARS INHERITANCE ETC
Round 3 - HR 

(2 Questions)

  • Q1. TELL ME ABOUT YOURSELF
  • Ans. 

    I am a software developer with 5 years of experience in Java, Python, and SQL.

    • 5 years of experience in Java, Python, and SQL

    • Strong problem-solving skills

    • Experience working in Agile development environment

    • Familiarity with version control systems like Git

    • Passionate about learning new technologies

  • Answered by AI
  • Q2. WHAT DO YOU KNOW ABOUT YOUR COMPANY
  • Ans. 

    Company is a leading software development firm specializing in creating innovative solutions for various industries.

    • Company has a strong reputation for delivering high-quality software products

    • Specializes in creating custom solutions for clients in different industries

    • Known for innovative and cutting-edge technology solutions

    • Has a diverse portfolio of successful projects

    • Company values teamwork and collaboration in thei

  • Answered by AI

YASH Technologies Interview FAQs

How many rounds are there in YASH Technologies Software Developer interview?
YASH Technologies interview process usually has 1-2 rounds. The most common rounds in the YASH Technologies interview process are Technical, Resume Shortlist and Aptitude Test.
How to prepare for YASH Technologies Software 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 Business Transformation, Computer Science, Front End, Hibernate and Medical Coding.
What are the top questions asked in YASH Technologies Software Developer interview?

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

  1. Which exception occurred while modify Collection obj...read more
  2. How dispatcher servlet wor...read more
  3. How to modify Collect...read more

Tell us how to improve this page.

YASH Technologies Software Developer Interview Process

based on 4 interviews

1 Interview rounds

  • Technical Round
View more
YASH Technologies Software Developer Salary
based on 262 salaries
₹2.4 L/yr - ₹10 L/yr
20% less than the average Software Developer Salary in India
View more details

YASH Technologies Software Developer Reviews and Ratings

based on 26 reviews

3.8/5

Rating in categories

3.4

Skill development

3.9

Work-life balance

3.4

Salary

3.1

Job security

4.1

Company culture

3.2

Promotions

3.4

Work satisfaction

Explore 26 Reviews and Ratings
Software Engineer
1.3k salaries
unlock blur

₹2.4 L/yr - ₹12 L/yr

Senior Software Engineer
1.3k salaries
unlock blur

₹6.2 L/yr - ₹24 L/yr

Associate Consultant
761 salaries
unlock blur

₹2.5 L/yr - ₹10.4 L/yr

Consultant
701 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