Upload Button Icon Add office photos

Filter interviews by

MyWays Interview Questions and Answers

Updated 23 Sep 2024

MyWays Interview Experiences

Popular Designations

7 interviews found

Interview Questions & Answers

user image Anonymous

posted on 9 Nov 2021

I applied via LinkedIn and was interviewed in May 2021. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Rate your MERN (all skills individually) skill level on a scale of 1 to 10
  • Ans. 
    Don't underrate yourself. Rate yourself according to your confidence. After the interview, you and the interviewer will know where you stand.
  • Answered Anonymously
  • Q2. Discussion on the projects done and the 1-day task assessment.
  • Ans. 
    Make sure you understand the code written in the assessment and the projects.
  • Answered Anonymously

Interview Preparation Tips

Interview preparation tips for other job seekers - 1) Be honest. The interviewer will grill you (they are just testing if you are a beginner, intermediate or senior). If you don't know something tell them you don't know. There is no point in wasting your time and his/her as well.
2) Do go through interview QnA of the tech stack required for the particular role.

Skills evaluated in this interview

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

(1 Question)

  • Q1. Ai based interview

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (196)
MyWays Interview Questions and Answers for Freshers
illustration image
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. They gave one coding question.

Java Developer Interview Questions asked at other Companies

Q1. Sort 0 and 1 Problem Statement Given an integer array ARR of size N containing only integers 0 and 1, implement a function to sort this array. The solution should scan the array only once without using any additional arrays. Input: The firs... read more
View answer (3)
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Campus Placement and was interviewed in Feb 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Develop a ml model to classify handwritten digits in given dataset
  • Ans. 

    Develop a machine learning model to classify handwritten digits in a given dataset.

    • Preprocess the dataset by resizing images, normalizing pixel values, and splitting into training and testing sets.

    • Choose a suitable classification algorithm such as Support Vector Machine (SVM) or Convolutional Neural Network (CNN).

    • Train the model on the training set and evaluate its performance using the testing set.

    • Tune hyperparameters...

  • Answered by AI

Skills evaluated in this interview

Engineering Student Interview Questions asked at other Companies

Q1. What are the main unit processes involved in water treatment?
View answer (2)

MyWays interview questions for popular designations

 Backend Developer

 (2)

 Software Engineer

 (1)

 Marketing Intern

 (1)

 Java Developer

 (1)

 Engineering Student

 (1)

Backend Developer Interview Questions & Answers

user image anirudh reddy

posted on 23 Jul 2024

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

I applied via Campus Placement and was interviewed in Jan 2024. There was 1 interview round.

Round 1 - Coding Test 

Fetch an API using Java

Backend Developer Interview Questions asked at other Companies

Q1. Vertical Order Traversal of a Binary Tree Given a binary tree, your task is to return the vertical order traversal of its nodes' values. For each node located at a position (X, Y), its left child will be at (X-1, Y-1) and its right child wi... read more
View answer (1)
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in Sep 2023. There was 1 interview round.

Round 1 - Aptitude Test 

It was a 20min aptitude test in which they basiacally ask question from JS , mongodb and mysql

Backend Developer Interview Questions asked at other Companies

Q1. Vertical Order Traversal of a Binary Tree Given a binary tree, your task is to return the vertical order traversal of its nodes' values. For each node located at a position (X, Y), its left child will be at (X-1, Y-1) and its right child wi... read more
View answer (1)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Aug 2022. 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 Resume tips
Round 2 - One-on-one 

(2 Questions)

  • Q1. Why should we hier you
  • Ans. 

    I have a strong background in marketing and a passion for creativity and innovation.

    • I have a Bachelor's degree in Marketing and have completed relevant coursework.

    • I have previous experience as a marketing intern, where I successfully executed marketing campaigns and strategies.

    • I am highly creative and have a keen eye for design, which allows me to create visually appealing marketing materials.

    • I am proficient in various...

  • Answered by AI
  • Q2. What is your weakness
  • Ans. 

    I tend to be overly critical of my own work, which can sometimes slow down my progress.

    • I have high standards for myself and strive for perfection.

    • I often spend extra time reviewing and revising my work to ensure it meets my expectations.

    • I sometimes struggle with prioritizing tasks because I want to give equal attention to all of them.

    • However, I am aware of this weakness and actively work on managing it by setting reali

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - 1. Always prepare yourself before the interview.
2. Your body language matters in the interview.
3. If you don't know the answer then tell the interviewer don't sit blank and waste time. Rather answer - that you will surely look into the topic after the interview.

Marketing Intern Interview Questions asked at other Companies

Q1. Most of our website traffic comes from India while our target geography is the USA. How will you bring US traffic?
View answer (1)

Interview questions from similar companies

I applied via Naukri.com and was interviewed before May 2020. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Real life scenarios
  • Q2. Keep your mind prepared with some real life scenarios

Interview Preparation Tips

Interview preparation tips for other job seekers - Talk more about your previous exp.

I applied via LinkedIn and was interviewed in Apr 2021. There were 4 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. 1. Mininum cost to reach the last cell of a 2D matrix. Required moves are only downward or to the right direction
  • Ans. 

    Minimum cost to reach last cell of 2D matrix with only downward or right moves.

    • Use dynamic programming approach to solve the problem.

    • Calculate minimum cost for each cell by considering minimum cost of its adjacent cells.

    • Final answer will be the minimum cost to reach the last cell.

  • Answered by AI
  • Q2. Design a Stack that can support getMin functionality. Whenever it calls getMin on stack it should return the min element in the stack.
  • Ans. 

    Design a stack that supports getMin functionality to return the minimum element in the stack.

    • Create two stacks, one for storing the actual elements and another for storing the minimum elements.

    • Push elements onto both stacks simultaneously.

    • When popping an element, pop from both stacks.

    • To get the minimum element, peek at the top of the minimum stack.

  • Answered by AI
  • Q3. Design a TreeSet functionality
  • Ans. 

    TreeSet is a data structure that stores unique elements in sorted order.

    • TreeSet is implemented using a Red-Black tree

    • It provides O(log n) time complexity for basic operations like add, remove, and contains

    • It also provides methods like first(), last(), headSet(), tailSet(), and subSet()

    • TreeSet can be used to implement priority queues and sorting algorithms

  • Answered by AI
  • Q4. Design a ArrayList that supprorts all the existing funtions of a list plus getMax functionality also.
  • Ans. 

    Design an ArrayList with getMax functionality.

    • Create a custom ArrayList class that extends the existing ArrayList class.

    • Add a getMax() method that returns the maximum value in the list.

    • Override the add() method to keep track of the maximum value in the list.

    • Update the maximum value whenever an element is added or removed from the list.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Practice Data Structures and algorithms. If you have industry experience you will be asked system design questions as well, migh as well prepare for that

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Java threads concepts and its usage
  • Q2. Data structures problems and design quentions
Contribute & help others!
anonymous
You can choose to be anonymous

MyWays Interview FAQs

How many rounds are there in MyWays interview?
MyWays interview process usually has 1-2 rounds. The most common rounds in the MyWays interview process are One-on-one Round, Technical and Aptitude Test.
How to prepare for MyWays 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 MyWays. The most common topics and skills that interviewers at MyWays expect are Android, IOS, Java, React Native and .NET.
What are the top questions asked in MyWays interview?

Some of the top questions asked at the MyWays interview -

  1. Rate your MERN (all skills individually) skill level on a scale of 1 to...read more
  2. develop a ml model to classify handwritten digits in given data...read more
  3. they gave one coding questi...read more

Recently Viewed

SALARIES

Visteon

INTERVIEWS

Maersk

No Interviews

LIST OF COMPANIES

Coding Ninjas

Locations

INTERVIEWS

Coding Ninjas

No Interviews

INTERVIEWS

Coding Ninjas

No Interviews

INTERVIEWS

Daikin

No Interviews

INTERVIEWS

Visteon

No Interviews

INTERVIEWS

Daikin

No Interviews

INTERVIEWS

Visteon

No Interviews

INTERVIEWS

Visteon

No Interviews

Tell us how to improve this page.

MyWays Interview Process

based on 7 interviews

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.5k Interviews
Flipkart Interview Questions
4.0
 • 1.4k Interviews
Paytm Interview Questions
3.3
 • 776 Interviews
Swiggy Interview Questions
3.8
 • 439 Interviews
BigBasket Interview Questions
3.9
 • 357 Interviews
Zomato Interview Questions
3.7
 • 322 Interviews
Ola Cabs Interview Questions
3.4
 • 143 Interviews
Urban Company Interview Questions
3.4
 • 135 Interviews
MakeMyTrip Interview Questions
3.7
 • 121 Interviews
BookMyShow Interview Questions
3.9
 • 23 Interviews
View all

MyWays Reviews and Ratings

based on 6 reviews

4.3/5

Rating in categories

4.1

Skill development

4.3

Work-life balance

3.7

Salary

3.8

Job security

4.5

Company culture

3.7

Promotions

4.0

Work satisfaction

Explore 6 Reviews and Ratings
Mern Full Stack Developer
7 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Product Designer
3 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare MyWays with

Urban Company

3.4
Compare

Swiggy

3.8
Compare

Ola Cabs

3.4
Compare

Zomato

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