Upload Button Icon Add office photos

Filter interviews by

MSys Tech India Sdet Interview Questions and Answers

Updated 10 Apr 2024

MSys Tech India Sdet Interview Experiences

1 interview found

Sdet Interview Questions & Answers

user image Anonymous

posted on 10 Apr 2024

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Coding Test 

It was a hacker rank test:
One question was to design a generator which does some 'x' work.
Buzz Fizz Buzz problem
print list of anagrams

Round 2 - Technical 

(1 Question)

  • Q1. Python codes mainly based on list and string. 1)abc$lsjia&shjs reverse above list but keep special characters at same place 2)[a,3,4,6.7,7,3.5,(5,78,j,k),complex(3,4)] add all ints and floats even prese...
Round 3 - Technical 

(1 Question)

  • Q1. Mostly around project work. Question on imports. Questions on pytest but I was not good at pytest so there was huge gap between understanding things. Coding based on list.

Sdet Jobs at MSys Tech India

View all

Interview questions from similar companies

Sdet Interview Questions & Answers

Cvent user image Saurav Kumar Jha

posted on 27 Nov 2024

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

(1 Question)

  • Q1. Intro of yourself
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Referral and was interviewed in Aug 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. SIP Call flow with headers
  • Ans. 

    SIP call flow involves signaling and media exchange between SIP devices with headers containing important information.

    • SIP INVITE message is sent to initiate a call

    • SIP 1xx responses indicate call progress

    • SIP 2xx response confirms call establishment

    • SIP ACK message acknowledges call setup

    • SIP BYE message terminates the call

  • Answered by AI
  • Q2. SIP mandatory headers
Round 2 - Technical 

(2 Questions)

  • Q1. SERVICE ROUTE,PATH AND RECORD ROUTE HEADER
  • Q2. K8's Deployment
  • Ans. 

    K8's Deployment refers to the deployment of applications on Kubernetes clusters.

    • Kubernetes (K8s) is an open-source container orchestration platform used for automating deployment, scaling, and management of containerized applications.

    • K8s Deployment involves defining the desired state of the application, creating deployment configurations, and managing the deployment process.

    • Deployment resources in K8s include Pods, Rep...

  • Answered by AI

Skills evaluated in this interview

Sde1 Interview Questions & Answers

UKG user image Anonymous

posted on 7 Aug 2024

Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-

I applied via Approached by Company

Round 1 - Coding Test 

Aptitude and coding round, one coding question and others are computer fundamentals

Round 2 - Technical 

(2 Questions)

  • Q1. Return true if Subarray is present whose sum is 0
  • Q2. Project, oops, dbms
Round 3 - Technical 

(2 Questions)

  • Q1. Subarray sun equal to k
  • Q2. Project, oops, dbms
Round 4 - HR 

(1 Question)

  • Q1. Did not got slected i answered all still
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Aug 2024. There were 3 interview rounds.

Round 1 - Coding Test 

Mainly sql qns are asked to write

Round 2 - Technical 

(1 Question)

  • Q1. Java basic questions and sql
Round 3 - HR 

(1 Question)

  • Q1. To test our communication skills
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. What is oops ?
  • Ans. 

    Object-oriented programming paradigm that focuses on objects and classes for code organization and reusability.

    • Encapsulation: bundling data and methods that operate on the data into a single unit (object)

    • Inheritance: ability of a class to inherit properties and behavior from another class

    • Polymorphism: ability to present the same interface for different data types

    • Abstraction: hiding the complex implementation details an

  • Answered by AI
  • Q2. Method overloading and overriding
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in Feb 2024. There were 2 interview rounds.

Round 1 - Technical 

(5 Questions)

  • Q1. Work Experience?
  • Q2. Questions Regarding CV ?
  • Q3. Question on Xpath (Selenium)
  • Q4. Questions on Python basic coding
  • Q5. Questions on API Testing
Round 2 - Coding Test 

Q1) Write a functions to perform all CRUD in api.
Q2) Given two sorted list
ar1 =[1,2,3,4,7,7,12,18,19]
ar2 = [3, 4, 7, 7,14, 18, 19]

You can add and find largest sum but you can switch when ar1 and ar2 have same numbers.

Solution: you can base your solution on merge algo and recursively call your function to return largest sum possible.

Interview Preparation Tips

Interview preparation tips for other job seekers - The first interviewer was very up high in the rank but was very bad at taking interviews.
He did said ask if you have anything to ask.
But when I started asking questions, he behaved very badly .
I do not remember his name. You should forget toxic people immediately.
It was shocking to me that he was Staff Engineer.

The second round of interview was the best experience I ever had.
I remember his name but for sake of confidconfidentiality, I will only tell his position. He was MTS 3.
The questions were very good and the interviewer was very soft spoken and knowledgeable.
He answered my questions and would love to see these people climb up the ladder rather than others.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Aptitude test was easy to clear

Round 2 - Coding Test 

Coding test was ok to clear

Round 3 - Technical 

(1 Question)

  • Q1. Technical was easy to medium
Round 4 - HR 

(1 Question)

  • Q1. Tell me about your self
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
Not Selected
Round 1 - Group Discussion 

General topics like Artificial Intelligence positive or negative impacts

Round 2 - Technical 

(1 Question)

  • Q1. Everything from resume
Round 3 - HR 

(1 Question)

  • Q1. General questions
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Job Portal and was interviewed in May 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Find the second largest number in an array
  • Ans. 

    Iterate through array to find second largest number

    • Iterate through the array and keep track of the largest and second largest numbers

    • Handle edge cases like duplicates or small array sizes

    • Return the second largest number found

  • Answered by AI
  • Q2. Other technical questions around java, oops, automation frameworks, testng, manual testing and test case creation.

Skills evaluated in this interview

MSys Tech India Interview FAQs

How many rounds are there in MSys Tech India Sdet interview?
MSys Tech India interview process usually has 3 rounds. The most common rounds in the MSys Tech India interview process are Technical and Coding Test.
How to prepare for MSys Tech India Sdet 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 MSys Tech India. The most common topics and skills that interviewers at MSys Tech India expect are AWS, Python, Azure, Backend and C++.
What are the top questions asked in MSys Tech India Sdet interview?

Some of the top questions asked at the MSys Tech India Sdet interview -

  1. python codes mainly based on list and string. 1)abc$lsjia&shjs reverse above...read more
  2. Mostly around project work. Question on imports. Questions on pytest but I was ...read more

Tell us how to improve this page.

MSys Tech India Sdet Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Sdet Interview Questions from Similar Companies

TCS Sdet Interview Questions
3.7
 • 4 Interviews
Cvent Sdet Interview Questions
3.5
 • 3 Interviews
Infosys Sdet Interview Questions
3.6
 • 2 Interviews
Accenture Sdet Interview Questions
3.8
 • 2 Interviews
View all
Senior Software Engineer
127 salaries
unlock blur

₹7.9 L/yr - ₹28.6 L/yr

Software Engineer
81 salaries
unlock blur

₹3.5 L/yr - ₹15.3 L/yr

Technical Lead
47 salaries
unlock blur

₹11.5 L/yr - ₹33.3 L/yr

Lead Engineer
21 salaries
unlock blur

₹14 L/yr - ₹27.3 L/yr

Senior Devops Engineer
18 salaries
unlock blur

₹7.4 L/yr - ₹23.6 L/yr

Explore more salaries
Compare MSys Tech India with

Infosys

3.6
Compare

Wipro

3.7
Compare

TCS

3.7
Compare

HCLTech

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