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 and Answers

Updated 25 Jun 2025
Popular Designations

110 Interview questions

An Architect was asked 6d ago
Q. What challenges have you faced in Automation Testing, and how did you resolve them?
Ans. 

Automation testing faces challenges like tool selection, test maintenance, and environment issues, which can be resolved with strategic planning.

  • Tool Selection: Choosing the right automation tool is crucial. For example, using Selenium for web applications due to its flexibility.

  • Test Maintenance: Keeping tests updated with application changes can be challenging. Implementing a modular test design helped reduce mai...

View all Architect interview questions
A Software Engineer was asked 3mo ago
Q. What is OOP?
Ans. 

OOP (Object-Oriented Programming) is a programming paradigm based on objects and classes, promoting code reusability and modularity.

  • Encapsulation: Bundling data and methods that operate on the data within one unit (e.g., a class).

  • Inheritance: Mechanism to create a new class from an existing class, inheriting its properties (e.g., a 'Dog' class inheriting from an 'Animal' class).

  • Polymorphism: Ability to present the...

View all Software Engineer interview questions
A SAP Fico Consultant was asked 3mo ago
Q. What is your experience with the integration of Finance module with Materials Management (MM) and Sales and Distribution (SD) modules?
Ans. 

Experienced in integrating SAP FICO with MM and SD for seamless financial processes and reporting.

  • Integration of MM and FICO ensures accurate inventory valuation and financial reporting.

  • For example, when goods are received in MM, the financial impact is automatically reflected in the FICO module.

  • In SD, when sales orders are processed, revenue recognition is directly linked to FICO for accurate financial statements...

View all SAP Fico Consultant interview questions
A SAP Fico Consultant was asked 3mo ago
Q. Can you describe a complex FICO ticket that you have resolved?
Ans. 

Resolved a complex FICO ticket involving intercompany reconciliation discrepancies.

  • Identified discrepancies in intercompany transactions between two entities.

  • Utilized transaction codes like FB03 and FBL1N to analyze document flow.

  • Collaborated with the controlling team to ensure proper allocation of costs.

  • Implemented a new reconciliation process that reduced discrepancies by 30%.

  • Provided training to the finance tea...

View all SAP Fico Consultant interview questions
A Senior Consultant was asked 3mo ago
Q. Are you comfortable working the complete night shift without any leave for 8 months?
Ans. 

I am open to discussing the possibility of a complete night shift for 8 months, considering the implications and support available.

  • Assessing personal circumstances: I would evaluate my health, family commitments, and overall well-being.

  • Understanding the role: I would seek clarity on the responsibilities and expectations during the night shift.

  • Support systems: I would inquire about available support, such as mental...

View all Senior Consultant interview questions
A Python Developer Trainee was asked 5mo ago
Q. Given a set of candidate numbers (candidates) (without duplicates) and a target number (target), find all unique combinations in candidates where the candidate numbers sum to target. The same repeated numbe...
Ans. 

Combination Sum problem involves finding all unique combinations of numbers that sum up to a target value.

  • Given an array of distinct integers and a target sum.

  • Use backtracking to explore all combinations of numbers.

  • Each number can be used multiple times in combinations.

  • Example: For nums = [2, 3, 6, 7] and target = 7, combinations are [7] and [2, 2, 3].

  • Return all unique combinations that add up to the target.

View all Python Developer Trainee interview questions
A Devops Engineer was asked 6mo ago
Q. What are the components of a VPC?
Ans. 

Components of VPC include subnets, route tables, internet gateways, security groups, network access control lists, and VPN connections.

  • Subnets

  • Route tables

  • Internet gateways

  • Security groups

  • Network access control lists

  • VPN connections

View all Devops Engineer interview questions
Are these interview questions helpful?
A Devops Engineer was asked 6mo ago
Q. Write Terraform code to create an EC2 instance and a VPC.
Ans. 

Terraform code for creating EC2 instance and VPC

  • Use Terraform resources 'aws_instance' for EC2 and 'aws_vpc' for VPC

  • Specify necessary parameters like instance type, AMI, subnet ID, security group ID, etc.

  • Use Terraform modules for better organization and reusability

  • Leverage Terraform state file to track infrastructure changes

View all Devops Engineer interview questions
A Devops Engineer was asked 6mo ago
Q. Explain Jenkins pipeline.
Ans. 

Jenkins pipeline is a set of automated steps to build, test, and deploy code.

  • Jenkins pipeline is defined using a Jenkinsfile, which can be written in either Declarative or Scripted syntax.

  • It allows for defining multiple stages, each containing one or more steps to be executed sequentially.

  • Pipeline can be triggered manually or automatically based on events like code commits or scheduled builds.

  • Pipeline can integrat...

View all Devops Engineer interview questions
A Senior Java Developer was asked 6mo ago
Q. Implement linked list data structure.
Ans. 

Implementing a linked list in Java involves creating nodes and managing pointers for efficient data storage and retrieval.

  • Define a Node class with data and a reference to the next node.

  • Create a LinkedList class to manage the head node and operations.

  • Implement methods like add, remove, and traverse.

  • Example of adding a node: public void add(int data) { Node newNode = new Node(data); newNode.next = head; head = newNo...

View all Senior Java Developer interview questions

YASH Technologies Interview Experiences

157 interviews found

I applied via Naukri.com and was interviewed in Aug 2021. There were 4 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 

(3 Questions)

  • Q1. What is GCD? Explain in details
  • Ans. 

    GCD stands for Greatest Common Divisor. It is the largest positive integer that divides two or more numbers without leaving a remainder.

    • GCD is used to find the highest common factor between two or more numbers.

    • It is often used in mathematical calculations and algorithms.

    • GCD can be calculated using various methods like Euclidean algorithm or prime factorization.

    • Example: GCD of 12 and 18 is 6, as 6 is the largest number ...

  • Answered by AI
  • Q2. Explain Solid principle?
  • Ans. 

    SOLID is a set of principles for object-oriented programming to make software more maintainable, scalable, and robust.

    • S - Single Responsibility Principle

    • O - Open-Closed Principle

    • L - Liskov Substitution Principle

    • I - Interface Segregation Principle

    • D - Dependency Inversion Principle

  • Answered by AI
  • Q3. Enum dictionary sets array explain
  • Ans. 

    Enum dictionary sets array of strings

    • An enum is a set of named values

    • A dictionary maps keys to values

    • An array is a collection of elements

    • The enum values can be used as keys in the dictionary to map to an array of strings

  • Answered by AI
Round 3 - Technical 

(2 Questions)

  • Q1. Explain ARC with example?
  • Ans. 

    ARC is Automatic Reference Counting used in iOS to manage memory.

    • ARC is a memory management technique used in iOS development.

    • It automatically manages the memory of objects in an iOS app.

    • ARC keeps track of the number of references to an object and deallocates it when there are no more references.

    • Example: If an object is assigned to a variable, ARC increments the reference count by 1. If the variable is reassigned or go...

  • Answered by AI
  • Q2. Difference between Structure VS class
  • Ans. 

    Structures are value types while classes are reference types.

    • Structures are allocated on stack while classes are allocated on heap.

    • Structures do not support inheritance while classes do.

    • Structures cannot have destructors while classes can.

    • Structures are used for small data structures while classes are used for larger, more complex objects.

    • Example of structure: struct Point { int x, y; }

    • Example of class: class Person { ...

  • Answered by AI
Round 4 - HR 

(6 Questions)

  • Q1. What are your salary expectations?
  • Q2. What is your family background?
  • Ans. 

    I come from a close-knit family that values education and hard work, which has greatly influenced my career in software engineering.

    • My parents are both educators, instilling a love for learning in me from a young age.

    • I have a younger sister who is pursuing a degree in computer science, following in my footsteps.

    • Family gatherings often involve discussions about technology and innovation, fostering my passion for softwar...

  • Answered by AI
  • Q3. Share details of your previous job.
  • Q4. Why are you looking for a change?
  • Q5. What are your strengths and weaknesses?
  • Q6. Tell me about yourself.

Interview Preparation Tips

Topics to prepare for YASH Technologies Senior Software Engineer interview:
  • Basics of swift
  • Networking
  • Core Data
  • Multithreading
  • OOPS
  • Design principle
  • SOLID Principle
  • ARC
  • Architecture
Interview preparation tips for other job seekers - Company is good. But very high waiting time to get allocate client. Till that time new joiner can do Learning and Developement

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Dec 2024. There were 4 interview rounds.

Round 1 - Coding Test 

Mcq questions on python aws database and networks ans os

Round 2 - Group Discussion 

8 members in a panel and they gave a topic generally a social issue or a general topic you can a lot about

Round 3 - Technical 

(4 Questions)

  • Q1. Project based questions
  • Q2. Python and pandas core question
  • Q3. Dsa question combination sum
  • Ans. 

    Combination Sum problem involves finding all unique combinations of numbers that sum up to a target value.

    • Given an array of distinct integers and a target sum.

    • Use backtracking to explore all combinations of numbers.

    • Each number can be used multiple times in combinations.

    • Example: For nums = [2, 3, 6, 7] and target = 7, combinations are [7] and [2, 2, 3].

    • Return all unique combinations that add up to the target.

  • Answered by AI
  • Q4. Database queries
Round 4 - Manegerial 

(2 Questions)

  • Q1. Question to test your soft skills
  • Q2. About behavioral attitude and how likely you are to fit in their organization

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview at yash technologies is a scam
I appeared in process through campus at yash technologies indore in December2024. I had 4 rounds, OA, GD, F2F technical and mangerial round. All the rounds went well. Total 32 students appeared in last managerial round. After waiting for 20 days results were disclosed. 5 students selected SURPRISE
2 of them were those who didn't even cleared the first round
1one failed in technical interview and was not selected for managerial
1one didn't appeared in interview
But wovvv wov wov they were selected
They had a relatives working in yash
So to work with you need not to even appear in interview just have a relative working there.

Principal Consultant Interview Questions & Answers

user image Krishna Brijwasi

posted on 11 Feb 2025

Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(3 Questions)

  • Q1. Zero Cybersecurity Projects in Yash Technologies
  • Ans. 

    Yash Technologies does not have any ongoing cybersecurity projects.

    • Yash Technologies currently does not have any cybersecurity projects in progress.

    • It is possible that Yash Technologies may focus on other areas of expertise besides cybersecurity.

    • The company may prioritize different types of projects over cybersecurity initiatives.

  • Answered by AI
  • Q2. Bad Leadership with Zero Cybersecurity Skills
  • Ans. 

    Bad leadership with zero cybersecurity skills can lead to serious security vulnerabilities and risks for the organization.

    • Lack of understanding of cybersecurity threats and best practices can result in poor decision-making regarding security measures.

    • Failure to prioritize cybersecurity can leave the organization vulnerable to cyber attacks and data breaches.

    • Ineffective communication and guidance from leadership can hin...

  • Answered by AI
  • Q3. Micromanagement by Leadership Sick Mentality

Interview Preparation Tips

Interview preparation tips for other job seekers - Dear Job Seeker,
Yash Technologies Cybersecurity Team is lead by non technical guys with arts degree.Senthilvel who acts as a leader is an arts graduate and Girish is an science grad with some sales mba degree with zero cybersecurity experience. If you are joining Yash Technologies you will be lead by 2 idiots into darkness. Dont join this stupid company with stupid leadership team.

Well Wisher,
Krishna
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn

Round 1 - One-on-one 

(2 Questions)

  • Q1. Work experience related questions
  • Q2. Difficult situation handling scenario questions
Round 2 - One-on-one 

(2 Questions)

  • Q1. Java basic questions
  • Q2. Team handling scenario questions

Interview Preparation Tips

Interview preparation tips for other job seekers - More on Project and overall experience questions were asked

Yarn Dyeing Incharge Interview Questions & Answers

user image Bajrang Painkra

posted on 24 Feb 2025

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(3 Questions)

  • Q1. Bajrang please tteavvbbbda nhdaf
  • Q2. Photo hhfss jjhsas hhudas
  • Q3. Bajrang Baki toh

Interview Preparation Tips

Interview preparation tips for other job seekers - Bhgsad jjgsad nhdaun ujcsav gcsawey bbcatigdsc ggsdubbss bvssyjkncsvvcs bfssyh.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed in Oct 2024. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Sort a list without inbuilt keyword?
  • Ans. 

    Sort a list without using inbuilt keyword

    • Iterate through the list and compare each element with the rest to find the smallest element

    • Swap the smallest element with the first element

    • Repeat the process for the remaining elements until the list is sorted

  • Answered by AI
  • Q2. Is tuple fully immutable?
  • Ans. 

    Yes, tuples are fully immutable in Python.

    • Tuples cannot be modified once created.

    • Elements of a tuple cannot be changed, added, or removed.

    • Attempting to modify a tuple will result in a TypeError.

    • Example: tuple1 = (1, 2, 3) - tuple1[0] = 4 will raise a TypeError.

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. What is docker used for?
  • Ans. 

    Docker is a platform used to develop, ship, and run applications in containers.

    • Docker allows developers to package their applications and dependencies into a container, which can then be easily shared and run on any system.

    • Containers created with Docker are lightweight, portable, and isolated from the host system, making them ideal for microservices architecture.

    • Docker simplifies the process of deploying and scaling ap...

  • Answered by AI
  • Q2. Print cube of all the numbers in given range?
  • Ans. 

    Use a loop to calculate the cube of each number in the given range and print the result.

    • Use a for loop to iterate through the range of numbers

    • Calculate the cube of each number using the formula cube = number * number * number

    • Print the cube of each number

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Why are you looking for a new job?
  • Ans. 

    Seeking new challenges and opportunities for growth in a dynamic work environment.

    • Looking to expand my skill set and knowledge in Python development.

    • Interested in working on more complex projects and collaborating with a diverse team.

    • Seeking a company that values innovation and encourages professional development.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - just prepare basic python very well.

Skills evaluated in this interview

Devops Engineer Interview Questions & Answers

user image Yuvaraj Patil

posted on 1 Jan 2025

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

(4 Questions)

  • Q1. What is components of vpc
  • Ans. 

    Components of VPC include subnets, route tables, internet gateways, security groups, network access control lists, and VPN connections.

    • Subnets

    • Route tables

    • Internet gateways

    • Security groups

    • Network access control lists

    • VPN connections

  • Answered by AI
  • Q2. Explain Jenkins pipeline
  • Ans. 

    Jenkins pipeline is a set of automated steps to build, test, and deploy code.

    • Jenkins pipeline is defined using a Jenkinsfile, which can be written in either Declarative or Scripted syntax.

    • It allows for defining multiple stages, each containing one or more steps to be executed sequentially.

    • Pipeline can be triggered manually or automatically based on events like code commits or scheduled builds.

    • Pipeline can integrate wit...

  • Answered by AI
  • Q3. Kubernetes architecture
  • Q4. Terraform code for ec2 and vpc
  • Ans. 

    Terraform code for creating EC2 instance and VPC

    • Use Terraform resources 'aws_instance' for EC2 and 'aws_vpc' for VPC

    • Specify necessary parameters like instance type, AMI, subnet ID, security group ID, etc.

    • Use Terraform modules for better organization and reusability

    • Leverage Terraform state file to track infrastructure changes

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Budget tools used in project
  • Ans. 

    Effective budget tools are essential for managing project finances and ensuring resource allocation aligns with project goals.

    • Microsoft Excel: Widely used for creating detailed budget spreadsheets and tracking expenses.

    • Project Management Software: Tools like Asana or Trello can integrate budget tracking features.

    • Cost Management Software: Solutions like Oracle Primavera or SAP can provide advanced budgeting capabilities...

  • Answered by AI
  • Q2. How team will be motivated
  • Ans. 

    Motivating a team involves clear communication, recognition, professional growth, and fostering a positive work environment.

    • Set clear goals and expectations to provide direction and purpose.

    • Recognize individual and team achievements regularly, such as through shout-outs in meetings.

    • Encourage professional development by offering training opportunities or mentorship programs.

    • Foster a collaborative environment where team ...

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. What are challenges in current project
  • Ans. 

    Current project faces challenges like resource allocation, stakeholder communication, and adapting to regulatory changes.

    • Resource Allocation: Limited budget affecting team size and project scope. For example, we had to prioritize features due to funding constraints.

    • Stakeholder Communication: Misalignment between stakeholders leading to conflicting priorities. Regular updates and meetings are essential.

    • Regulatory Change...

  • Answered by AI
  • Q2. WFO or WFO will be preferred
Interview experience
1
Bad
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I appeared for an interview in May 2025, where I was asked the following questions.

  • Q1. Only Personal Questions
  • Q2. Only about previous work experience

Interview Preparation Tips

Interview preparation tips for other job seekers - Only members of the Jain community seem to be able to thrive in this environment. The salary increment cycle is disappointing. When an employee submits their resignation, their salary for that month is withheld and processed in the following month.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Typing test in computer

Round 2 - One-on-one 

(3 Questions)

  • Q1. Typing service job
  • Q2. Entry method in system
  • Ans. 

    Data entry in system can be done manually or through automated processes like scanning or importing files.

    • Data can be entered manually by typing information into the system.

    • Data can also be entered through automated processes like scanning documents or importing files.

    • Some systems may have specific data entry forms or templates to ensure accuracy and consistency.

    • Data entry methods can vary depending on the type of info...

  • Answered by AI
  • Q3. Ms Excel data processing
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
-
Result
-
Round 1 - Technical 

(3 Questions)

  • Q1. Page break in smart form
  • Ans. 

    Page break in smart form allows for better organization and layout of content.

    • Use the command 'NEW-PAGE' in the smart form to insert a page break.

    • Page breaks can be triggered based on conditions or manually inserted.

    • Page breaks help in separating content logically and improving readability.

  • Answered by AI
  • Q2. Check table and value table
  • Q3. What is TMG? TMG events
  • Ans. 

    TMG stands for Transport Management Guide. TMG events are used in SAP to control the flow of data during transport requests.

    • TMG is used in SAP to manage the transport of data between systems.

    • TMG events are used to trigger actions before and after the data is transported.

    • Examples of TMG events include BEFORE_IMPORT, AFTER_IMPORT, BEFORE_EXPORT, and AFTER_EXPORT.

  • Answered by AI

Top trending discussions

View All
Interview Tips & Stories
2w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about YASH Technologies?
Ask anonymously on communities.

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 Analytical Chemistry.
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. How different microservices communicate with each ot...read more
What are the most common questions asked in YASH Technologies HR round?

The most common HR questions asked in YASH Technologies interview are -

  1. Why are you looking for a chan...read more
  2. What are your strengths and weakness...read more
  3. What are your salary expectatio...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.

Overall Interview Experience Rating

3.9/5

based on 146 interview experiences

Difficulty level

Easy 19%
Moderate 75%
Hard 6%

Duration

Less than 2 weeks 66%
2-4 weeks 23%
4-6 weeks 6%
6-8 weeks 2%
More than 8 weeks 3%
View more

Interview Questions from Similar Companies

DXC Technology Interview Questions
3.7
 • 836 Interviews
Nagarro Interview Questions
4.0
 • 791 Interviews
NTT Data Interview Questions
3.8
 • 656 Interviews
Publicis Sapient Interview Questions
3.5
 • 642 Interviews
GlobalLogic Interview Questions
3.6
 • 627 Interviews
EPAM Systems Interview Questions
3.7
 • 569 Interviews
UST Interview Questions
3.8
 • 542 Interviews
View all

YASH Technologies Reviews and Ratings

based on 1.8k reviews

3.8/5

Rating in categories

3.5

Skill development

3.8

Work-life balance

3.4

Salary

3.5

Job security

3.8

Company culture

3.2

Promotions

3.5

Work satisfaction

Explore 1.8k Reviews and Ratings
YASH Technologies is Hiring - Sr. Consultant - SAP Build Apps

Hyderabad / Secunderabad,

Pune

1-3 Yrs

Not Disclosed

YASH Technologies is Hiring - AWS Cloud Architect

Indore,

Hyderabad / Secunderabad

+1

18-25 Yrs

Not Disclosed

Technical Manager

Indore

12-18 Yrs

₹ 20-28.5 LPA

Explore more jobs
Senior Software Engineer
1.4k salaries
unlock blur

₹6.4 L/yr - ₹21 L/yr

Software Engineer
1.3k salaries
unlock blur

₹4.4 L/yr - ₹10.6 L/yr

Associate Consultant
782 salaries
unlock blur

₹4 L/yr - ₹9.5 L/yr

Consultant
765 salaries
unlock blur

₹9 L/yr - ₹16.5 L/yr

Module Lead
549 salaries
unlock blur

₹16.7 L/yr - ₹29.1 L/yr

Explore more salaries
Compare YASH Technologies with

DXC Technology

3.7
Compare

Sutherland Global Services

3.5
Compare

Optum Global Solutions

4.0
Compare

Virtusa Consulting Services

3.7
Compare
write
Share an Interview