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
3.8

based on 1.6k Reviews

Filter interviews by

YASH Technologies Python Software Developer Interview Questions, Process, and Tips

Updated 22 Nov 2024

YASH Technologies Python Software Developer Interview Experiences

1 interview found

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

Interview questions from similar companies

Interview experience
2
Poor
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
-

I applied via Recruitment Consulltant and was interviewed in Dec 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Explain decorators?
  • Q2. Programming question to find files with duplicate content.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via Recruitment Consulltant and was interviewed in Sep 2024. There was 1 interview round.

Round 1 - Technical 

(5 Questions)

  • Q1. Tell me about yourself
  • Q2. Project architecture
  • Q3. Sns vs SQS architecture
  • Ans. 

    SNS is a pub/sub messaging service while SQS is a message queue service in AWS architecture.

    • SNS allows for push notifications to multiple subscribers, while SQS is used for decoupling services and handling asynchronous tasks.

    • SNS is used for real-time messaging and event-driven architecture, while SQS is used for reliable message processing and scaling.

    • SNS supports multiple message delivery protocols like HTTP, HTTPS, E...

  • Answered by AI
  • Q4. S3 file parking and triggers
  • Q5. Explain Eventbridge
  • Ans. 

    Eventbridge is a serverless event bus service provided by AWS for connecting applications using events.

    • Eventbridge allows different AWS services, SaaS applications, and custom applications to communicate with each other through events.

    • It simplifies the process of building event-driven architectures by decoupling producers and consumers of events.

    • Eventbridge can be used to trigger automated workflows, connect different ...

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(1 Question)

  • Q1. Basic information
Round 2 - Technical 

(2 Questions)

  • Q1. Questions on python
  • Q2. PYTHON libraries
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Naukri.com and was interviewed in May 2023. There were 2 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 - HR 

(2 Questions)

  • Q1. She asking Work experience related and expected CTC etc.
  • Q2. Your resume is shortlisted then call back you.
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Python project overview
  • Ans. 

    Python project overview

    • Describe the purpose and goals of the project

    • Explain the technologies and tools used in the project

    • Discuss the project's architecture and design

    • Highlight any challenges faced and how they were overcome

  • Answered by AI
  • Q2. CI/CD related with AWS

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via Recruitment Consulltant and was interviewed in Sep 2024. There was 1 interview round.

Round 1 - Technical 

(5 Questions)

  • Q1. Tell me about yourself
  • Q2. Project architecture
  • Q3. Sns vs SQS architecture
  • Ans. 

    SNS is a pub/sub messaging service while SQS is a message queue service in AWS architecture.

    • SNS allows for push notifications to multiple subscribers, while SQS is used for decoupling services and handling asynchronous tasks.

    • SNS is used for real-time messaging and event-driven architecture, while SQS is used for reliable message processing and scaling.

    • SNS supports multiple message delivery protocols like HTTP, HTTPS, E...

  • Answered by AI
  • Q4. S3 file parking and triggers
  • Q5. Explain Eventbridge
  • Ans. 

    Eventbridge is a serverless event bus service provided by AWS for connecting applications using events.

    • Eventbridge allows different AWS services, SaaS applications, and custom applications to communicate with each other through events.

    • It simplifies the process of building event-driven architectures by decoupling producers and consumers of events.

    • Eventbridge can be used to trigger automated workflows, connect different ...

  • Answered by AI

Skills evaluated in this interview

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

(2 Questions)

  • Q1. Valid Sudoku leetcode problem
  • Q2. Generate Parentheses leetcode problem
  • Ans. 

    Generate all valid combinations of parentheses for given n pairs

    • Use backtracking to generate all valid combinations of parentheses

    • Keep track of the number of open and close parentheses used

    • Add open parenthesis if there are remaining open parentheses, add close parenthesis if there are more open than close parentheses

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Naukri.com and was interviewed in May 2023. There were 2 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - HR 

(2 Questions)

  • Q1. She asking Work experience related and expected CTC etc.
  • Q2. Your resume is shortlisted then call back you.
Interview experience
2
Poor
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
-

I applied via Recruitment Consulltant and was interviewed in Dec 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Explain decorators?
  • Q2. Programming question to find files with duplicate content.

YASH Technologies Interview FAQs

How many rounds are there in YASH Technologies Python Software Developer interview?
YASH Technologies interview process usually has 3 rounds. The most common rounds in the YASH Technologies interview process are Technical and HR.
What are the top questions asked in YASH Technologies Python Software Developer interview?

Some of the top questions asked at the YASH Technologies Python Software Developer interview -

  1. print cube of all the numbers in given ran...read more
  2. sort a list without inbuilt keywo...read more
  3. is tuple fully immutab...read more

Tell us how to improve this page.

YASH Technologies Python Software Developer Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

YASH Technologies Python Software Developer Reviews and Ratings

based on 1 review

1.0/5

Rating in categories

1.0

Skill development

1.0

Work-life balance

1.0

Salary

1.0

Job security

1.0

Company culture

1.0

Promotions

1.0

Work satisfaction

Explore 1 Review and Rating
Software Engineer
1.3k salaries
unlock blur

₹3.2 L/yr - ₹12.2 L/yr

Senior Software Engineer
1.3k salaries
unlock blur

₹6.1 L/yr - ₹24.1 L/yr

Associate Consultant
772 salaries
unlock blur

₹2.9 L/yr - ₹10.6 L/yr

Consultant
721 salaries
unlock blur

₹4.8 L/yr - ₹18 L/yr

Module Lead
521 salaries
unlock blur

₹8.7 L/yr - ₹32 L/yr

Explore more salaries
Compare YASH Technologies with

TCS

3.7
Compare

Infosys

3.6
Compare

Wipro

3.7
Compare

Tech Mahindra

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