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

109 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
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
Are these interview questions helpful?
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
A Senior Manager was asked 7mo ago
Q. What budget tools have you used in projects?
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 capabil...

View all Senior Manager interview questions

YASH Technologies Interview Experiences

157 interviews found

Module Lead Interview Questions & Answers

user image Anonymous

posted on 10 Feb 2022

I applied via Naukri.com and was interviewed in Aug 2021. There were 2 interview rounds.

Round 1 - Technical 

(7 Questions)

  • Q1. Tell us about yourself
  • Q2. What is the architecture of the project
  • Ans. 

    The project follows a microservices architecture.

    • The project is divided into small, independent services that communicate with each other through APIs.

    • Each service is responsible for a specific task or functionality.

    • The architecture allows for scalability, flexibility, and easier maintenance.

    • Examples of microservices used in the project include user management, payment processing, and inventory management.

  • Answered by AI
  • Q3. What is MVVM and types
  • Ans. 

    MVVM stands for Model-View-ViewModel. It is a design pattern used in software engineering.

    • MVVM separates the user interface from the business logic

    • Model represents the data and business logic

    • View represents the user interface

    • ViewModel acts as a mediator between the Model and View

    • Types of MVVM include Classic MVVM, Prism MVVM, and ReactiveUI MVVM

  • Answered by AI
  • Q4. What all design patterns used
  • Ans. 

    Multiple design patterns were used including Singleton, Factory, and Observer.

    • Singleton pattern was used to ensure only one instance of a class is created.

    • Factory pattern was used to create objects without exposing the creation logic.

    • Observer pattern was used to notify objects of any changes in state.

    • Other patterns such as Decorator and Adapter were also used in specific cases.

  • Answered by AI
  • Q5. What is messaging center
  • Ans. 

    Messaging center is a platform for sending and receiving messages between users or systems.

    • It allows users to communicate with each other through messages.

    • It can be used for notifications, alerts, and updates.

    • Messaging center can be integrated with other systems or applications.

    • Examples include email, chat applications, and social media messaging.

    • It can also be used for automated messaging, such as appointment reminder...

  • Answered by AI
  • Q6. What is exception handling
  • Ans. 

    Exception handling is the process of handling errors and unexpected events in a program.

    • It allows a program to gracefully handle errors and prevent crashes.

    • It involves catching and handling exceptions using try-catch blocks.

    • Common exceptions include null pointer exceptions and arithmetic exceptions.

    • Exception handling can improve the reliability and robustness of a program.

  • Answered by AI
  • Q7. What is xamarin profiler
  • Ans. 

    Xamarin Profiler is a tool for analyzing and optimizing the performance of Xamarin apps.

    • Xamarin Profiler helps identify memory leaks, CPU usage, and other performance issues

    • It can be used with both iOS and Android apps

    • The tool provides detailed reports and visualizations to help developers optimize their code

    • Xamarin Profiler is available as part of the Visual Studio Enterprise subscription

  • Answered by AI
Round 2 - Technical 

(10 Questions)

  • Q1. Explain Behaviors , Custom renderers and triggers
  • Ans. 

    Behaviors, custom renderers, and triggers are tools used in Xamarin.Forms to customize the appearance and behavior of controls.

    • Behaviors allow you to add functionality to controls without subclassing them.

    • Custom renderers allow you to create platform-specific renderers for controls.

    • Triggers allow you to change the appearance or behavior of controls based on certain conditions.

    • Behaviors and triggers can be used together...

  • Answered by AI
  • Q2. Explain OOPs and Solid Principles
  • Ans. 

    OOPs is a programming paradigm that focuses on objects and their interactions. SOLID principles are a set of guidelines for OOP design.

    • OOPs stands for Object-Oriented Programming

    • It emphasizes on objects and their interactions

    • SOLID principles are a set of guidelines for OOP design

    • SOLID stands for Single Responsibility, Open-Closed, Liskov Substitution, Interface Segregation, and Dependency Inversion

    • Single Responsibility...

  • Answered by AI
  • Q3. How to add push notifications
  • Ans. 

    To add push notifications, you need to integrate a push notification service into your app.

    • Choose a push notification service provider such as Firebase Cloud Messaging or OneSignal

    • Integrate the push notification SDK into your app

    • Register your app with the push notification service provider

    • Create a server-side API to send push notifications to your app

    • Handle push notifications in your app's code

  • Answered by AI
  • Q4. How to Unit test the app
  • Ans. 

    Unit testing involves testing individual units of code to ensure they function as expected.

    • Identify the units of code to be tested

    • Write test cases for each unit

    • Execute the tests and analyze the results

    • Use testing frameworks like JUnit or NUnit

    • Mock dependencies to isolate the unit being tested

    • Test for edge cases and error handling

    • Ensure code coverage is sufficient

  • Answered by AI
  • Q5. What is App Center and how to use
  • Ans. 

    App Center is a mobile app development platform that helps build, test, and distribute apps.

    • It offers features like crash reporting, analytics, and push notifications.

    • Developers can integrate App Center with their code repositories and CI/CD pipelines.

    • It supports multiple platforms including iOS, Android, and Windows.

    • App Center also provides a marketplace for third-party services and plugins.

    • Examples of companies using...

  • Answered by AI
  • Q6. How devops works for xamarin
  • Ans. 

    DevOps for Xamarin involves continuous integration, delivery, and deployment of mobile apps.

    • Automated builds and testing using tools like Visual Studio App Center

    • Continuous delivery through app store publishing and distribution

    • Monitoring and logging for app performance and user feedback

    • Collaboration between development and operations teams for seamless app delivery

  • Answered by AI
  • Q7. Abstraction vs Encapsulation
  • Ans. 

    Abstraction focuses on hiding unnecessary details while encapsulation focuses on hiding implementation details.

    • Abstraction is about showing only the necessary details to the user while hiding the rest.

    • Encapsulation is about wrapping data and methods into a single unit and restricting access to the internal details.

    • Abstraction is achieved through abstract classes and interfaces.

    • Encapsulation is achieved through access m...

  • Answered by AI
  • Q8. Advantages and disadvantages of Xamarin
  • Ans. 

    Xamarin is a cross-platform app development tool that allows developers to build native apps for iOS, Android, and Windows using C#.

    • Advantages:

    • - Code sharing across multiple platforms

    • - Native performance

    • - Access to native APIs

    • - Large community support

    • - Integration with Visual Studio

    • Disadvantages:

    • - Limited access to some platform-specific features

    • - Large app size

    • - Requires knowledge of C#

    • - Licensing fees for enterprise ...

  • Answered by AI
  • Q9. What all native features developed
  • Ans. 

    Several native features have been developed.

    • Native camera app with advanced features

    • Built-in voice assistant with natural language processing

    • Gesture-based navigation system

    • Screen recording and screenshot tools

    • Biometric authentication options

    • Augmented reality capabilities

  • Answered by AI
  • Q10. Explain Boxing vs UnBoxing
  • Ans. 

    Boxing is the process of converting a value type to a reference type, while unboxing is the opposite process.

    • Boxing is used when a value type needs to be treated as an object, such as when passing it as a parameter to a method that expects an object.

    • Unboxing is used when retrieving the value of a boxed object.

    • Boxing and unboxing can have performance implications and should be used judiciously.

    • Example: int i = 42; objec...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Xamarin Forms Official MS documentation and basic C# topics will help

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
 • 839 Interviews
Nagarro Interview Questions
4.0
 • 793 Interviews
NTT Data Interview Questions
3.8
 • 660 Interviews
Publicis Sapient Interview Questions
3.5
 • 645 Interviews
GlobalLogic Interview Questions
3.6
 • 628 Interviews
EPAM Systems Interview Questions
3.7
 • 569 Interviews
UST Interview Questions
3.8
 • 544 Interviews
View all

YASH Technologies Reviews and Ratings

based on 1.8k 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.2

Promotions

3.5

Work satisfaction

Explore 1.8k Reviews and Ratings
Sr. Executive

Bangalore / Bengaluru

3-8 Yrs

Not Disclosed

Contractor - Optimizely Job

Pune

10-15 Yrs

Not Disclosed

Sr. Consultant - SAP SD Job

Hyderabad / Secunderabad

12-14 Yrs

Not Disclosed

Explore more jobs
Senior Software Engineer
1.4k salaries
unlock blur

₹11.6 L/yr - ₹21.3 L/yr

Software Engineer
1.3k salaries
unlock blur

₹4.4 L/yr - ₹10.5 L/yr

Associate Consultant
782 salaries
unlock blur

₹4 L/yr - ₹9.5 L/yr

Consultant
765 salaries
unlock blur

₹8.9 L/yr - ₹16 L/yr

Module Lead
546 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