i
YASH
Technologies
Filter interviews by
Absolutely! I'm eager to learn Playwright and enhance my skills through the available in-house training.
I have a strong foundation in web technologies, making it easier to grasp Playwright.
I am proactive in learning; for instance, I recently learned Cypress for end-to-end testing.
I believe in continuous improvement and staying updated with industry trends.
Participating in training sessions will allow me to collabo...
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...
SAP UI5 component lifecycle methods manage the initialization, rendering, and destruction of components in an application.
init: Called when the component is initialized. Example: Setting up models or routing.
createContent: Responsible for creating the UI content of the component. Example: Returning a view.
onBeforeRendering: Invoked before the component is rendered. Example: Updating data before display.
onAfterRend...
Fiori Elements provide a framework for building standard Fiori applications with consistent UI and UX based on SAP's design principles.
Fiori Elements leverage metadata from OData services to generate UI components automatically.
They promote a consistent user experience across applications, adhering to SAP Fiori design guidelines.
Examples include List Report and Object Page templates, which streamline development.
S...
Parsing parameters during navigation in SAP UI5 involves using routing and the component's router.
Use the router's 'navTo' method to navigate and pass parameters: e.g., this.getRouter().navTo('routeName', { param1: value1 });
In the target view/controller, implement 'onInit' to retrieve parameters using 'this.getOwnerComponent().getRouter().getRoute('routeName').attachPatternMatched'.
Access parameters in the event ...
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...
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...
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...
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...
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.
I applied via Naukri.com and was interviewed in Aug 2021. There were 2 interview rounds.
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...
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
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...
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...
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
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...
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
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...
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 ...
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
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...
I applied via Campus Placement and was interviewed in Dec 2024. There were 4 interview rounds.
Mcq questions on python aws database and networks ans os
8 members in a panel and they gave a topic generally a social issue or a general topic you can a lot about
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.
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.
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...
I applied via LinkedIn
I applied via Company Website and was interviewed in Oct 2024. There were 3 interview rounds.
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
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.
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...
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
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.
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
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...
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
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...
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 ...
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...
I appeared for an interview in May 2025, where I was asked the following questions.
Typing test in computer
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...
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.
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.
Top trending discussions
The duration of YASH Technologies interview process can vary, but typically it takes about less than 2 weeks to complete.
based on 146 interview experiences
Difficulty level
Duration
based on 1.8k reviews
Rating in categories
Hyderabad / Secunderabad,
Pune
+113-21 Yrs
₹ 20-35 LPA
Hyderabad / Secunderabad,
Pune
+110-18 Yrs
Not Disclosed
Hyderabad / Secunderabad,
Pune
8-13 Yrs
Not Disclosed
Senior Software Engineer
1.4k
salaries
| ₹11.7 L/yr - ₹21 L/yr |
Software Engineer
1.3k
salaries
| ₹4.4 L/yr - ₹10.6 L/yr |
Consultant
774
salaries
| ₹9.1 L/yr - ₹16.7 L/yr |
Associate Consultant
763
salaries
| ₹4.3 L/yr - ₹9.5 L/yr |
Module Lead
546
salaries
| ₹16.6 L/yr - ₹29.1 L/yr |
DXC Technology
Optum Global Solutions
Virtusa Consulting Services
CGI Group