i
YASH Technologies
Filter interviews by
I applied via Naukri.com and was interviewed in Aug 2021. There were 2 interview rounds.
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.
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
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.
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
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.
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...
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
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
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
YASH Technologies interview questions for popular designations
Get interview-ready with Top YASH Technologies Interview Questions
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
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.
I applied via Campus Placement and was interviewed in Sep 2024. There were 3 interview rounds.
It is based on java fundamentals and some pseudo code questions
HR gave us topic on human
I am a recent graduate with a degree in Business Administration, passionate about marketing and eager to learn and grow in a professional setting.
Recent graduate with a degree in Business Administration
Passionate about marketing
Eager to learn and grow in a professional setting
I have worked on various projects including market research, data analysis, and social media campaigns.
Market research project for a new product launch
Data analysis project to optimize sales strategies
Social media campaign to increase brand awareness
Inheritance is the process by which genetic information is passed from parent to offspring, determining traits and characteristics.
Inheritance involves the transmission of genes from one generation to the next
Traits and characteristics of offspring are determined by the combination of genes inherited from both parents
Inheritance can lead to the expression of dominant or recessive traits
Examples include eye color, blood
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 139 interviews
Interview experience
based on 1.7k reviews
Rating in categories
Hyderabad / Secunderabad,
Pune
+115-24 Yrs
Not Disclosed
Senior Software Engineer
1.4k
salaries
| ₹6.3 L/yr - ₹21.4 L/yr |
Software Engineer
1.2k
salaries
| ₹2.4 L/yr - ₹10.4 L/yr |
Consultant
747
salaries
| ₹4.9 L/yr - ₹20.3 L/yr |
Associate Consultant
745
salaries
| ₹2.2 L/yr - ₹10.3 L/yr |
Module Lead
529
salaries
| ₹9.4 L/yr - ₹32 L/yr |
DXC Technology
Sutherland Global Services
Optum Global Solutions
FIS