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 Senior Manager Interview Questions and Answers

Updated 4 Dec 2024

YASH Technologies Senior Manager Interview Experiences

1 interview found

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

(2 Questions)

  • Q1. Budget tools used in project
  • Q2. How team will be motivated
Round 2 - Technical 

(2 Questions)

  • Q1. What are challenges in current project
  • Q2. WFO or WFO will be preferred

Interview questions from similar companies

I appeared for an interview in Jul 2021.

Interview Questionnaire 

1 Question

  • Q1. Tech amd process

Interview Preparation Tips

Interview preparation tips for other job seekers - Ok good to start with ...

I applied via LinkedIn and was interviewed in Oct 2021. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Formula of Current Ratio
  • Ans. 

    Current Ratio formula is Current Assets divided by Current Liabilities.

    • Current Ratio = Current Assets / Current Liabilities

    • It measures a company's ability to pay off its short-term liabilities with its short-term assets

    • A higher current ratio indicates a better ability to meet short-term obligations

    • Example: If a company has current assets of $100,000 and current liabilities of $50,000, the current ratio would be 2:1

  • Answered by AI
  • Q2. What is Quick Ratio
  • Ans. 

    Quick Ratio is a financial metric used to measure a company's ability to pay off its current liabilities with its most liquid assets.

    • Quick Ratio is also known as Acid Test Ratio

    • It is calculated by dividing the sum of cash, marketable securities, and accounts receivable by current liabilities

    • A higher Quick Ratio indicates a company's better liquidity position

    • A Quick Ratio of 1:1 is considered good

    • Example: If a company h...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared on basics. Journals practical examples and if you are experienced always explain by taking examples
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
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 - Case Study 

Agile basics and scenario based

Round 3 - One-on-one 

(1 Question)

  • Q1. Situational cases
Round 4 - HR 

(1 Question)

  • Q1. Salary negotiation

Interview Preparation Tips

Interview preparation tips for other job seekers - Concept to be clear

I applied via LinkedIn and was interviewed in Oct 2021. There were 2 interview rounds.

Round 1 - Aptitude Test 

Overall 40 questions to be answered in 20 mins.

Round 2 - One-on-one 

(1 Question)

  • Q1. Most of the questions were related to Agile framework and Project Management.

Interview Preparation Tips

Interview preparation tips for other job seekers - Good preparation and grasp over domain subject shall sail you through the interview process.

Interview Questionnaire 

1 Question

  • Q1. Combination of Tech and Behavioral
  • Ans. 

    Combining technology and behavioral aspects to achieve organizational goals.

    • Using technology to track employee performance and behavior

    • Implementing gamification to motivate employees

    • Using virtual reality for employee training

    • Using data analytics to understand employee behavior and make informed decisions

    • Encouraging open communication and feedback to improve employee engagement

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Provide as much details as possible

Skills evaluated in this interview

Interview Questionnaire 

2 Questions

  • Q1. About AWS and Cloud related services.
  • Q2. NA

I applied via LinkedIn and was interviewed in Nov 2020. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. 1) General C# and Sql Questions.. some concepts in more depth
  • Q2. Joins, Union, Linq, Collections

Interview Preparation Tips

Interview preparation tips for other job seekers - Be Prepared with basic C# questions like delegates, generics, events, interfaces, static classes with some examples

Sql Questions like types of Joins, Subquery, Union, view, stored proc, identity, indexes with some examples

I applied via Naukri.com and was interviewed in Mar 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Applied for QA position. Questions were asked based on capital market/banking domain along with testing fundamentals and some scenario based question.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident about domain and testing concepts.

I appeared for an interview before Sep 2020.

Round 1 - Coding Test 

(2 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

Timing was in the morning around 10 am. This round was conducted on Hackerrank and contained 2 coding questions of easy to medium level which varied for all the students taking the test. There were 20 MCQs from topics like Java, Operating Systems, Data structures, and SQL.
I also gave a test for this company last year during internships. At that time MCQs were based on aptitude and reasoning. Also at that time, there were 2 coding questions and timing was dividing according to sections.

  • Q1. 

    Nth Element Of Modified Fibonacci Series

    Given two integers X and Y as the first two numbers of a series, and an integer N, determine the Nth element of the series following the Fibonacci rule: f(x) = f(x...

  • Ans. 

    Calculate the Nth element of a modified Fibonacci series given the first two numbers and N, with the result modulo 10^9 + 7.

    • Implement a function to calculate the Nth element of the series using the Fibonacci rule f(x) = f(x - 1) + f(x - 2)

    • Return the answer modulo 10^9 + 7 due to the possibility of a very large result

    • The series starts with the first two numbers X and Y, and the position N in the series

  • Answered by AI
  • Q2. 

    Consonant Counting Problem Statement

    Given a string STR comprising uppercase and lowercase characters and spaces, your task is to count the number of consonants in the string.

    A consonant is defined as a...

  • Ans. 

    Count the number of consonants in a given string containing uppercase and lowercase characters and spaces.

    • Iterate through each character in the string and check if it is a consonant (not a vowel).

    • Keep a count of the consonants encountered while iterating through the string.

    • Return the total count of consonants at the end.

  • Answered by AI
Round 2 - Video Call 

(1 Question)

Round duration - 45 Minutes
Round difficulty - Medium

This round was conducted on Cisco WebEx and the interviewer was very friendly. Firstly, we were asked briefly to introduce ourselves. Then he moved on to the CV and asked various questions about the projects, certifications, and internships mentioned. He asked about the implementation of a few features in some of the projects and also about the challenges I faced while doing the project and how I finally overcome the challenge. He also asked about various skills mentioned in the resume.

  • Q1. 

    Merge Two Sorted Linked Lists Problem Statement

    You are provided with two sorted linked lists. Your task is to merge them into a single sorted linked list and return the head of the combined linked list.

    ...
  • Ans. 

    Merge two sorted linked lists into a single sorted linked list with constant space complexity and linear time complexity.

    • Create a dummy node to start the merged list

    • Compare the values of the two linked lists and append the smaller value to the merged list

    • Move the pointer of the merged list and the pointer of the smaller value's linked list

    • Continue this process until one of the linked lists is fully traversed

    • Append the ...

  • Answered by AI
Round 3 - HR 

Round duration - 30 Minutes
Round difficulty - Easy

This round started with my Introduction. Then he moved on to behavioral questions just to get an understanding of how we deal with situations and our thinking process.
 

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Dr. B.R. Ambedkar National Institute of Technology. I applied for the job as Software Engineer in HyderabadEligibility criteriaAbove 7.5 CGPAOptum interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, OOPS(C++ & Java) , DBMS, Operating Systems, Aptitude, Resume(Projects)Time required to prepare for the interview - 2 monthsInterview preparation tips for other job seekers

Tip 1 : Do at least 2 good projects and make an attractive resume mentioning all your skills in the best possible way(Don't include any False commitments)
Tip 2 : Practice easy to medium level coding questions from geeks for geeks or Leetcode.
Tip 3 : Prepare everything mentioned in your resume properly including Java, SQL.

Application resume tips for other job seekers

Tip 1 : Include projects and experiences in detail.
Tip 2 : Make an eye-catching resume clearly mentioning all your skills including subjects like data structures, JAVA, SQL, etc. The database is a very important skill if you have its knowledge.

Final outcome of the interviewSelected

Skills evaluated in this interview

YASH Technologies Interview FAQs

How many rounds are there in YASH Technologies Senior Manager interview?
YASH Technologies interview process usually has 2 rounds. The most common rounds in the YASH Technologies interview process are Technical.
How to prepare for YASH Technologies Senior Manager 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 SQL, Agile Coaching, Business Transformation, Database Design and Database Management.
What are the top questions asked in YASH Technologies Senior Manager interview?

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

  1. what are challenges in current proj...read more
  2. how team will be motiva...read more
  3. WFO or WFO will be prefer...read more

Tell us how to improve this page.

YASH Technologies Senior Manager Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more
YASH Technologies Senior Manager Salary
based on 18 salaries
₹15 L/yr - ₹30.5 L/yr
7% more than the average Senior Manager Salary in India
View more details

YASH Technologies Senior Manager Reviews and Ratings

based on 1 review

3.0/5

Rating in categories

3.0

Skill development

4.0

Work-life balance

3.0

Salary

3.0

Job security

3.0

Company culture

3.0

Promotions

3.0

Work satisfaction

Explore 1 Review and Rating
Senior Software Engineer
1.4k salaries
unlock blur

₹6.3 L/yr - ₹21.4 L/yr

Software Engineer
1.2k salaries
unlock blur

₹2.4 L/yr - ₹10.4 L/yr

Consultant
747 salaries
unlock blur

₹4.9 L/yr - ₹20.3 L/yr

Associate Consultant
745 salaries
unlock blur

₹2.2 L/yr - ₹10.3 L/yr

Module Lead
529 salaries
unlock blur

₹9.4 L/yr - ₹32 L/yr

Explore more salaries
Compare YASH Technologies with

DXC Technology

3.7
Compare

Sutherland Global Services

3.6
Compare

Optum Global Solutions

4.0
Compare

FIS

3.9
Compare
Did you find this page helpful?
Yes No
write
Share an Interview