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

Filter interviews by

Clear (1)

YASH Technologies Software Engineer Interview Questions and Answers

Updated 1 Aug 2024

YASH Technologies Software Engineer Interview Experiences

5 interviews found

Software Engineer Interview Questions & Answers

user image Raja kumar Arepally

posted on 1 Feb 2024

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

(1 Question)

  • Q1. Interviewer will ask about the Project related questions
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Aug 2023. There were 2 interview rounds.

Round 1 - Coding Test 

Basic Core java Question

Round 2 - Technical 

(2 Questions)

  • Q1. OOPs concept in java
  • Ans. 

    OOPs concept in Java refers to Object-Oriented Programming principles like encapsulation, inheritance, polymorphism, and abstraction.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit (object).

    • Inheritance: Allows a class to inherit properties and behavior from another class.

    • Polymorphism: Ability of a method to do different things based on the object it is acting upon.

    • Abstraction: Hidin...

  • Answered by AI
  • Q2. Java Project Experience
  • Ans. 

    I have experience working on Java projects in various industries.

    • Developed a web application using Java Spring framework

    • Implemented RESTful APIs for data retrieval and manipulation

    • Utilized Java libraries like Apache POI for Excel file processing

  • Answered by AI

Skills evaluated in this interview

Software Engineer Interview Questions Asked at Other Companies

asked in Qualcomm
Q1. Bridge and torch problem : Four people come to a river in the nig ... read more
asked in Capgemini
Q2. In a dark room,there is a box of 18 white and 5 black gloves. You ... read more
asked in TCS
Q3. Find the Duplicate Number Problem Statement Given an integer arra ... read more
Q4. Tell me something about yourself. Define encapsulation. What is i ... read more
asked in Paytm
Q5. Puzzle : 100 people are standing in a circle .each one is allowed ... read more
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. Dependency injection
  • Q2. Design pattern if any 2
  • Ans. 

    Two design patterns are Singleton and Observer.

    • Singleton pattern ensures only one instance of a class exists.

    • Observer pattern allows objects to be notified of changes in another object.

    • Singleton can be implemented using lazy initialization or eager initialization.

    • Observer pattern can be used in event-driven systems or GUI frameworks.

    • Example of Singleton: Database connection manager.

    • Example of Observer: GUI components l

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Basic to moderate questions including deign patterns little explanation

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Jun 2022. 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 - HR 

(2 Questions)

  • Q1. Family background, salary expectation
  • Q2. Job location preference, bonus
Round 3 - Coding Test 

Palindrome number, reverse number

Interview Preparation Tips

Interview preparation tips for other job seekers - try focus on ambition box interview tips for each company

YASH Technologies interview questions for designations

 Senior Software Engineer

 (15)

 Software Engineer Trainee

 (1)

 Senior Software Development Engineer

 (1)

 Software Developer

 (6)

 Software Developer Trainee

 (2)

 Senior Software Developer

 (2)

 Software Quality Test Engineer

 (1)

 Cloud Engineer

 (1)

I applied via Naukri.com and was interviewed in Mar 2021. There were 3 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. Oops concept
  • Q2. C# ,
  • Q3. Life cycle mvc
  • Q4. Sql server db

Interview Preparation Tips

Interview preparation tips for other job seekers - Please keep basic concept clear

Interview questions from similar companies

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

Interview Questionnaire 

1 Question

  • Q1. Oops Concepts and Data Structure Questions.

Interview Preparation Tips

Interview preparation tips for other job seekers - Oops And Data Structure, Collection.

I applied via Campus Placement and was interviewed before Feb 2020. There were 6 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. Was interviewed as fresher?
  • Q2. Written test conducted? with verbal ability test ? GD
  • Q3. How would u deal with a problematic situation when you are working in a team?
  • Q4. What are your plans about higher studies?

Interview Preparation Tips

Interview preparation tips for other job seekers - it was basic with apptiude test and attitiude test.

I applied via Company Website and was interviewed before Feb 2020. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. They asked about dbms questions in the form of table formate
  • Q2. They asked code for some python program

Interview Preparation Tips

Interview preparation tips for other job seekers - Firstly they conducted computer based technical exam and then after qualifying that then we will go for face face interview and then lastly HR round will be held.

I applied via Campus Placement and was interviewed in Oct 2020. There were 4 interview rounds.

Interview Questionnaire 

5 Questions

  • Q1. Wap of bubble sort
  • Ans. 

    Bubble sort is a simple sorting algorithm that repeatedly steps through the list, compares adjacent elements and swaps them if they are in the wrong order.

    • Start from the first element and compare it with the next element

    • If the next element is smaller, swap them

    • Repeat this process for all elements in the array

    • Continue this process until no more swaps are needed

  • Answered by AI
  • Q2. Wap of prime number
  • Ans. 

    A program to print all prime numbers

    • Take input from user for range of numbers

    • Loop through the range and check if each number is prime

    • Print the prime numbers

  • Answered by AI
  • Q3. What is hashmap?
  • Ans. 

    Hashmap is a data structure that stores key-value pairs and allows constant time access to values based on their keys.

    • Hashmap uses a hash function to map keys to indices in an array.

    • Collisions can occur when multiple keys map to the same index, which can be resolved using techniques like chaining or open addressing.

    • Examples of hashmap implementations include Java's HashMap class and Python's dict type.

  • Answered by AI
  • Q4. What is inheritance
  • Ans. 

    Inheritance is a mechanism in object-oriented programming where a new class is created by inheriting properties of an existing class.

    • Inheritance allows code reuse and promotes code organization.

    • The existing class is called the parent or superclass, and the new class is called the child or subclass.

    • The child class inherits all the properties and methods of the parent class and can also add new properties and methods.

    • For...

  • Answered by AI
  • Q5. Call by value and call by reference

Interview Preparation Tips

Interview preparation tips for other job seekers - Be yourself

Skills evaluated in this interview

I applied via Walk-in and was interviewed in Mar 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Introduction your self in interview

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview should be very easy and comfortable to the students. And be confident at the infront of interviewer
Contribute & help others!
anonymous
You can choose to be anonymous

YASH Technologies Interview FAQs

How many rounds are there in YASH Technologies Software Engineer interview?
YASH Technologies interview process usually has 2 rounds. The most common rounds in the YASH Technologies interview process are Resume Shortlist, Coding Test and Technical.
How to prepare for YASH Technologies Software 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 YASH Technologies. The most common topics and skills that interviewers at YASH Technologies expect are Agile Coaching, Business Transformation, SQL, Python and Javascript.
What are the top questions asked in YASH Technologies Software Engineer interview?

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

  1. Design pattern if an...read more
  2. Java Project Experie...read more
  3. OOPs concept in j...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

YASH Technologies

No Interviews

INTERVIEWS

Procter & Gamble

30 top interview questions

INTERVIEWS

YASH Technologies

No Interviews

INTERVIEWS

YASH Technologies

No Interviews

INTERVIEWS

TCS iON

No Interviews

Tell us how to improve this page.

YASH Technologies Software Engineer Interview Process

based on 5 interviews

Interview experience

3.6
  
Good
View more
YASH Technologies Software Engineer Salary
based on 1.3k salaries
₹2.4 L/yr - ₹12.5 L/yr
14% less than the average Software Engineer Salary in India
View more details

YASH Technologies Software Engineer Reviews and Ratings

based on 137 reviews

3.7/5

Rating in categories

3.6

Skill development

3.8

Work-life balance

3.4

Salary

3.3

Job security

3.7

Company culture

3.2

Promotions

3.4

Work satisfaction

Explore 137 Reviews and Ratings
Sr. Software Engineer-Java+Kafka Job

Pune

3-9 Yrs

Not Disclosed

Sr. Software Engineer - SQL Job

Pune

3-6 Yrs

Not Disclosed

Sr. Software Engineer

Pune

4-9 Yrs

Not Disclosed

Explore more jobs
Senior Software Engineer
1.4k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
1.3k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Associate Consultant
774 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Consultant
727 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Module Lead
527 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare YASH Technologies with

TCS

3.7
Compare

Infosys

3.6
Compare

Wipro

3.7
Compare

Tech Mahindra

3.5
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