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

YASH Technologies Interview Questions, Process, and Tips

Updated 24 Feb 2025

Top YASH Technologies Interview Questions and Answers

View all 102 questions

YASH Technologies Interview Experiences

Popular Designations

144 interviews found

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

I applied via Job Portal and was interviewed in Aug 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Explain Wrapper classes, Single Class, and Core Java questions
  • Q2. Questions on API response codes and API negative testing

QA Automation Engineer Interview Questions asked at other Companies

Q1. Which framework you are using? explain your framework?
View answer (4)
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Referral and was interviewed in Jul 2024. There was 1 interview round.

Round 1 - One-on-one 

(3 Questions)

  • Q1. Responsibility in current company
  • Ans. 

    I am currently responsible for managing client relationships and project timelines in my current company.

    • Managing client relationships by ensuring clear communication and addressing any concerns or issues promptly

    • Creating and maintaining project timelines to ensure deliverables are met on time

    • Collaborating with cross-functional teams to ensure project success

    • Providing regular updates to clients on project progress and

  • Answered by AI
  • Q2. What are the business process involve in sap pp
  • Ans. 

    SAP PP involves business processes related to production planning and control.

    • Creation of production orders

    • Material requirement planning

    • Capacity planning

    • Shop floor execution

    • Production scheduling

  • Answered by AI
  • Q3. Org structure of SAP
  • Ans. 

    The org structure of SAP refers to the way in which SAP organizes its internal departments, teams, and reporting relationships.

    • SAP typically follows a matrix organizational structure, with functional departments (such as sales, marketing, finance) and project teams working together.

    • The org structure can vary depending on the size and complexity of the organization, as well as the specific industry or market focus.

    • SAP m...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - knowledge of business functions is must

Skills evaluated in this interview

Associate Consultant Interview Questions asked at other Companies

Q1. There are 2 cricket teams, A and B, with 11 players each. If every player of team A shakes hands with every player of team B(once), what will be the total number of handshakes?
View answer (15)
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Technical 

(5 Questions)

  • Q1. Lambda functions
  • Q2. What is Streams in java8
  • Ans. 

    Streams in Java 8 provide a way to process collections of objects in a functional style.

    • Streams allow for functional-style operations on collections, such as map, filter, and reduce.

    • Streams can be sequential or parallel, allowing for efficient processing of large datasets.

    • Streams do not store elements, they are processed on-demand as needed.

    • Example: List names = Arrays.asList("Alice", "Bob", "Charlie"); Stream stream =

  • Answered by AI
  • Q3. Authentication vs Authorization
  • Ans. 

    Authentication verifies the identity of a user, while authorization determines what a user can access.

    • Authentication confirms the user's identity through credentials like passwords or biometrics.

    • Authorization determines the user's permissions and access levels to resources.

    • Example: Logging into a system with a username and password is authentication. Being able to view certain files based on your role is authorization.

  • Answered by AI
  • Q4. How the Hashmap works
  • Ans. 

    Hashmap is a data structure that stores key-value pairs and allows for quick retrieval of values based on keys.

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

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

    • Hashmap provides constant time complexity O(1) for insertion, deletion, and retrieval operations.

    • Example: HashM...

  • Answered by AI
  • Q5. How to find duplicate in unsorted array
  • Ans. 

    Use a hash set to keep track of seen elements and identify duplicates in an unsorted array of strings.

    • Iterate through the array and add each element to a hash set.

    • If an element is already in the hash set, it is a duplicate.

    • Example: ['apple', 'banana', 'apple', 'orange'] => 'apple' is a duplicate.

  • Answered by AI
Round 2 - One-on-one 

(5 Questions)

  • Q1. Day to day responsibility
  • Q2. How to handle http requests in Spring Boot
  • Ans. 

    Handling http requests in Spring Boot involves creating controller classes, mapping endpoints, and using annotations like @RestController and @RequestMapping.

    • Create a controller class with @RestController annotation

    • Map endpoints using @RequestMapping annotation

    • Use @GetMapping, @PostMapping, @PutMapping, @DeleteMapping annotations for specific HTTP methods

    • Inject dependencies using @Autowired annotation

  • Answered by AI
  • Q3. How different microservices communicate with each other
  • Ans. 

    Microservices communicate with each other through APIs, message queues, or event-driven architecture.

    • APIs: Microservices can communicate with each other through RESTful APIs or GraphQL.

    • Message queues: Services can use message brokers like RabbitMQ or Kafka to send and receive messages.

    • Event-driven architecture: Services can publish events to a message broker and subscribe to events they are interested in.

    • Service discov...

  • Answered by AI
  • Q4. Exception handling in spring boot
  • Ans. 

    Exception handling in Spring Boot involves using @ControllerAdvice, @ExceptionHandler, and ResponseEntity.

    • Use @ControllerAdvice to define global exception handling for all controllers

    • Use @ExceptionHandler to handle specific exceptions in individual controllers

    • Return ResponseEntity with appropriate status codes and error messages

  • Answered by AI
  • Q5. Where will be microservices deployed in AWS
  • Ans. 

    Microservices can be deployed in AWS using services like ECS, EKS, Lambda, or Fargate.

    • Microservices can be deployed on AWS Elastic Container Service (ECS) for containerized applications.

    • AWS Elastic Kubernetes Service (EKS) can be used for deploying microservices using Kubernetes.

    • Serverless microservices can be deployed using AWS Lambda.

    • AWS Fargate provides serverless compute for containers, allowing for easy deployment

  • Answered by AI
Round 3 - HR 

(5 Questions)

  • Q1. Tell me something about yourself
  • Q2. About your family
  • Q3. What's your long term goals
  • Q4. Salary expectations
  • Q5. Location constraints etc

Interview Preparation Tips

Topics to prepare for YASH Technologies Senior Software Engineer interview:
  • Java
  • java8
  • Hibernate
  • hashmap
  • Spring Boot
Interview preparation tips for other job seekers - Prepare Basic Java interview questions and for spring boot, atleast you should know the flow of creating a new project and how to run it.

Skills evaluated in this interview

Top YASH Technologies Senior Software Engineer Interview Questions and Answers

Q1. What is GCD? Explain in details
View answer (3)

Senior Software Engineer Interview Questions asked at other Companies

Q1. Find Nth PrimeYou are given a number 'N'. Your task is to find Nth prime number. A prime number is a number greater than 1 that is not a product of two smaller natural numbers. Prime numbers have only two factors – 1 and the number itself. ... read more
View answer (6)

Associate Interview Questions & Answers

user image Anonymous

posted on 12 Sep 2024

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

I applied via Recruitment Consulltant and was interviewed in Aug 2024. There were 2 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. Technical Question
Round 2 - One-on-one 

(1 Question)

  • Q1. Technical Q only

Interview Preparation Tips

Topics to prepare for YASH Technologies Associate interview:
  • AZ 104
  • WIndows Server Administrator
  • Active Directory
  • DNS DHCP

Associate Interview Questions asked at other Companies

Q1. What is mean of TTR & why required for powder coating process ?
View answer (17)

YASH Technologies interview questions for popular designations

 Senior Software Engineer

 (15)

 Consultant

 (8)

 Software Developer

 (6)

 Trainee Programmer

 (6)

 Module Lead

 (5)

 SAP Consultant

 (5)

 Software Engineer

 (5)

 Trainee

 (5)

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

(2 Questions)

  • Q1. What is your apprach of training?
  • Ans. 

    My approach to training is interactive, hands-on, and tailored to the individual learning styles of participants.

    • I believe in incorporating real-world examples and practical exercises to reinforce learning.

    • I encourage active participation and engagement from trainees through discussions, group activities, and Q&A sessions.

    • I adapt my teaching methods to accommodate different learning styles, whether visual, auditory, or...

  • Answered by AI
  • Q2. Which topics you include in your training
  • Ans. 

    Topics include technical skills, software applications, troubleshooting techniques, and best practices.

    • Technical skills such as programming languages, networking protocols, and system administration

    • Software applications like Microsoft Office, Adobe Creative Suite, and Salesforce

    • Troubleshooting techniques for hardware, software, and network issues

    • Best practices in training delivery, adult learning principles, and instru...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Go ahead with detailed preparation and be relaxed, no tension, all people here are very friendly

Senior Technical Trainer Interview Questions asked at other Companies

Q1. WHAT IS DDIS/CRDI IN DIESEL ENGINE
View answer (1)

Get interview-ready with Top YASH Technologies Interview Questions

IT System Engineer Interview Questions & Answers

user image Karimullah shaik

posted on 20 Jul 2024

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

(2 Questions)

  • Q1. Incident management
  • Q2. Customer support
Round 2 - Technical 

(2 Questions)

  • Q1. What is incident
  • Ans. 

    An incident is an unplanned event that disrupts normal operations and requires immediate attention to resolve.

    • An incident can be a hardware or software failure

    • It can also be a security breach or data loss

    • Examples include server crashes, network outages, and malware infections

  • Answered by AI
  • Q2. What is problem
  • Ans. 

    A problem is an issue or obstacle that needs to be solved or addressed.

    • A problem can arise from technical issues, errors in code, hardware malfunctions, or network failures.

    • Identifying the root cause of a problem is crucial in finding a solution.

    • Effective problem-solving skills involve analyzing the situation, brainstorming possible solutions, and implementing the best course of action.

    • Examples: troubleshooting a serve...

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. Salary discossion
  • Q2. Date of joining

IT System Engineer Interview Questions asked at other Companies

Q1. What are DNS and DHCP, and what are their respective port numbers?
View answer (1)

Jobs at YASH Technologies

View all

Technician Interview Questions & Answers

user image Anonymous

posted on 14 Oct 2024

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

I applied via Naukri.com and was interviewed in Sep 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Questions were from time and distance space and boats and streams and various other doamin of the apptitude

Round 2 - HR 

(2 Questions)

  • Q1. Explain youself
  • Ans. 

    I am a dedicated and detail-oriented technician with a passion for problem-solving and a strong work ethic.

    • I have a strong background in troubleshooting and repairing technical issues

    • I am skilled in using various tools and equipment to perform tasks efficiently

    • I am a quick learner and always eager to expand my knowledge and skills

  • Answered by AI
  • Q2. Expalin your project
  • Ans. 

    My project involves developing a new software system for managing inventory in a warehouse setting.

    • Designed user-friendly interface for easy navigation

    • Implemented barcode scanning functionality for efficient inventory tracking

    • Integrated automated alerts for low stock levels to streamline reordering process

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Study well and hard

Technician Interview Questions asked at other Companies

Q1. What kinds of pipe used for hot and cold water supply ?
View answer (8)
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 Interview Questions asked at other Companies

Q1. Delete Kth node From EndYou have been given a singly Linked List of 'N' nodes with integer data and an integer 'K'. Your task is to remove the Kth node from the end of the given Linked List. For example: The given linked list is 1 -> 2 -... read more
View answer (4)
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
No response

I was interviewed in May 2024.

Round 1 - Technical 

(2 Questions)

  • Q1. Difference between on change and at first
  • Ans. 

    On change triggers when a field value is modified, while at first triggers when a field is first loaded or displayed.

    • On change is used for real-time validation or calculations based on user input

    • At first is used for initializing values or performing actions when a field is loaded

    • Example: On change can be used to calculate total price when quantity is changed, while at first can be used to set default values when a form

  • Answered by AI
  • Q2. What is the table associated with invoice
  • Ans. 

    The table associated with invoice is VBRK (Billing Document: Header Data)

    • VBRK table stores header data for billing documents

    • Contains information such as invoice number, date, amount, etc.

    • Linked to other tables like VBRP (Billing Document: Item Data) for line item details

  • Answered by AI

Skills evaluated in this interview

SAP Consultant Interview Questions asked at other Companies

Q1. what all changes are there from AS to IND-AS in IND-AS 116
View answer (1)

Android Developer Interview Questions & Answers

user image Arooshi Tyagi

posted on 28 Jun 2024

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

(2 Questions)

  • Q1. Questions on basic Android concepts
  • Q2. Questions on Kotlin concepts

Android Developer Interview Questions asked at other Companies

Q1. Cube Sum PairsYou are given a positive integer N, and you have to find the number of ways to represent N as a sum of cubes of two integers(let’s say A and B), such that: N = A^3 + B^3. Note: 1. A should be greater than or equal to one (A&g... read more
View answer (3)

YASH Technologies Interview FAQs

How many rounds are there in YASH Technologies interview?
YASH Technologies interview process usually has 2-3 rounds. The most common rounds in the YASH Technologies interview process are Technical, HR and Resume Shortlist.
How to prepare for YASH Technologies 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, SAP CO, SQL and SAP ABAP.
What are the top questions asked in YASH Technologies interview?

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

  1. 1) describe the Cloud architecture for the azure storage, blob , cloud services...read more
  2. What is GCD? Explain in deta...read more
  3. 3.how will you read unstructured table and convert to structured tab...read more
How long is the YASH Technologies interview process?

The duration of YASH Technologies interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

YASH Technologies Interview Process

based on 128 interviews

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.5k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.7k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.9k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
LTIMindtree Interview Questions
3.8
 • 3k Interviews
DXC Technology Interview Questions
3.7
 • 813 Interviews
Mphasis Interview Questions
3.4
 • 810 Interviews
KPIT Technologies Interview Questions
3.4
 • 294 Interviews
View all

YASH Technologies Reviews and Ratings

based on 1.6k reviews

3.8/5

Rating in categories

3.6

Skill development

3.8

Work-life balance

3.5

Salary

3.5

Job security

3.8

Company culture

3.3

Promotions

3.5

Work satisfaction

Explore 1.6k Reviews and Ratings
YASH Technologies is Hiring - SAP Project/Program/Delivery Manager

Hyderabad / Secunderabad,

Pune

13-20 Yrs

Not Disclosed

YASH Technologies is Hiring - SAP MM S/4 Hana -Solution Architect

Hyderabad / Secunderabad,

Pune

+1

10-18 Yrs

Not Disclosed

YASH Technologies is Hiring - SAP PP/QM - Presales Sr Consultant

Hyderabad / Secunderabad,

Pune

+1

9-14 Yrs

Not Disclosed

Explore more jobs
Senior Software Engineer
1.4k salaries
unlock blur

₹7 L/yr - ₹24.1 L/yr

Software Engineer
1.3k salaries
unlock blur

₹3.2 L/yr - ₹12 L/yr

Associate Consultant
775 salaries
unlock blur

₹2.2 L/yr - ₹10.3 L/yr

Consultant
732 salaries
unlock blur

₹5 L/yr - ₹20.3 L/yr

Module Lead
526 salaries
unlock blur

₹9.2 L/yr - ₹32 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