Upload Button Icon Add office photos

Filter interviews by

Mettl Sdet Engineer Interview Questions and Answers

Updated 17 May 2024

Mettl Sdet Engineer Interview Experiences

1 interview found

Sdet Engineer Interview Questions & Answers

user image Sumit Nimesh

posted on 17 May 2024

Interview experience
3
Average
Difficulty level
Easy
Process Duration
-
Result
-

I was interviewed in Apr 2024.

Round 1 - Technical 

(4 Questions)

  • Q1. Sql related questions
  • Q2. Testcase related questions
  • Q3. Java collection based question
  • Q4. Testng, rest api, assertion

Interview questions from similar companies

Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Aug 2024. There were 3 interview rounds.

Round 1 - Coding Test 

Array , String, stack , queue - Basic Easy to medium level

Round 2 - Technical 

(2 Questions)

  • Q1. What happen when we visit Url
  • Ans. 

    When we visit a URL, the browser sends a request to the server hosting the website, which then responds with the requested web page.

    • Browser sends a request to the server hosting the website

    • Server processes the request and responds with the requested web page

    • Web page is displayed in the browser for the user to interact with

  • Answered by AI
  • Q2. Difference B/w Http and https
  • Ans. 

    HTTP is a protocol used for transferring data over the internet, while HTTPS is a secure version of HTTP that encrypts data.

    • HTTP stands for Hypertext Transfer Protocol, used for transmitting data over the internet.

    • HTTPS stands for Hypertext Transfer Protocol Secure, which adds a layer of security by encrypting data.

    • HTTP operates on port 80, while HTTPS operates on port 443.

    • HTTPS uses SSL/TLS certificates to establish a...

  • Answered by AI
Round 3 - One-on-one 

(2 Questions)

  • Q1. Journey through school life till now
  • Ans. 

    I have always been a dedicated student, excelling in academics and extracurricular activities.

    • Consistently achieved top grades in all subjects

    • Participated in various school competitions and won awards

    • Served as a class representative and organized events

    • Took part in sports teams and cultural activities

  • Answered by AI
  • Q2. Tell everything and also mention achievement you received

Interview Preparation Tips

Interview preparation tips for other job seekers - Its easy to crack

Skills evaluated in this interview

Sdet Lead Interview Questions & Answers

Zolo user image Harshitha A

posted on 22 Jul 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Aptitude Test 

Moderate to difficult questions were asked

Round 2 - Coding Test 

6 coding questions from strings were asked

SDE-2 Interview Questions & Answers

Dream11 user image Anonymous

posted on 10 Jul 2024

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

There were 2 medium level coding questions.

Round 2 - Project Discussion 

(2 Questions)

  • Q1. LLD of current project
  • Ans. 

    The LLD of the current project involves detailed design of the system architecture and components.

    • LLD includes detailed design of modules, classes, interfaces, and relationships between components.

    • It focuses on how the system will be implemented based on the requirements specified in the HLD.

    • LLD helps in understanding the flow of data and control within the system.

    • It also includes design patterns, algorithms, and data ...

  • Answered by AI
  • Q2. Deep understanding of kafka

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare your current projects deeply .

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Sep 2022. There were 4 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 - One-on-one 

(2 Questions)

  • Q1. Coding , puzzles ,scenerio based , selenium , api automation, core java
  • Q2. Data structure and algorithms
Round 3 - One-on-one 

(1 Question)

  • Q1. Coding , api automation , mucroservices concepts etc
Round 4 - Aptitude Test 

Apptitute and techno managerial questions by director

SDE-2 Interview Questions & Answers

Carwale user image Suraj Ahire

posted on 12 Oct 2022

Round 1 - Coding Test 

Coding round on hackerrank platform.

Round 2 - Technical 

(2 Questions)

  • Q1. Technical interview were not much easy. 4 questions were asked. 1) smallest sybarray with sum 0; 2) given two string qwerty and qrw how much time req to type qrw
  • Q2. 3) tell me about your self

Interview Preparation Tips

Interview preparation tips for other job seekers - needs daily practice of ds and algo. i had faced issues during optimal solutions. try to give answers as much as possible.

Sdet Interview Questions & Answers

Dream11 user image Anonymous

posted on 16 May 2024

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

I applied via Approached by Company and was interviewed before May 2023. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. SQL basics were asked
  • Q2. 2 programming question to solve

Interview Preparation Tips

Interview preparation tips for other job seekers - It's quite difficult. SDET interview had total of 5 rounds. 2 technical, 1 Hiring manager, 1 VP round and 1 HR round for cultural fitment. You should keep patience in the entire interview process.

I applied via Approached by Company and was interviewed in May 2022. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Java programming ques
  • Q2. Selenium automation testing

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well with Java and selenium

Interview Questionnaire 

8 Questions

  • Q1. Given a balance and 100 coins;out of which,one is heavier. Find minimum number of weighing required to find out heavier coin?
  • Ans. 

    Find minimum number of weighings required to find the heavier coin out of 100 coins with a balance.

    • Divide the coins into 3 groups of 33 each and weigh 2 groups against each other.

    • If one group is heavier, divide it into 3 groups of 11 each and weigh 2 groups against each other.

    • Repeat the process until the heavier coin is found.

    • Minimum number of weighings required is 4.

  • Answered by AI
  • Q2. Questions on Graph like DFS and BFS traversal
  • Q3. Explain Prims and Kruskal’s algorithms
  • Ans. 

    Prims and Kruskal's algorithms are used to find the minimum spanning tree in a graph.

    • Prims algorithm starts with a single vertex and adds the minimum weight edge to the tree until all vertices are included.

    • Kruskal's algorithm starts with all vertices as separate trees and merges them by adding the minimum weight edge until all vertices are included.

    • Both algorithms have a time complexity of O(E log V) where E is the num...

  • Answered by AI
  • Q4. A graph was shown and asked to form Minimum Spanning Tree using above two algorithms. (Also asked if I can code it)
  • Q5. Delete nodes in a linked list which have greater value on right side
  • Ans. 

    Delete nodes in a linked list which have greater value on right side

    • Traverse the linked list and compare each node with its right side node

    • If the current node's value is less than its right side node, delete the current node

    • Repeat the process until the end of the linked list is reached

  • Answered by AI
  • Q6. Write code for reversing the linked list
  • Ans. 

    Code for reversing a linked list

    • Create a new empty linked list

    • Traverse the original linked list and insert each node at the beginning of the new list

    • Return the new list

  • Answered by AI
  • Q7. Difference between Methods and Constructors.(At least five)
  • Ans. 

    Methods are functions that perform a specific task, while constructors are special methods that initialize objects.

    • Constructors have the same name as the class they belong to.

    • Constructors are called automatically when an object is created.

    • Constructors can be overloaded with different parameters.

    • Methods can be called multiple times with different arguments.

    • Methods can have a return type, while constructors do not.

  • Answered by AI
  • Q8. Long discussion on Deadlock(necessary conditions), its prevention and avoidance etc, Bankers Algorithm

Interview Preparation Tips

Round: Test
Experience: Coding Platform : Hackerrank(C/C++/Java)
1) Check for balanced parenthesis in an expression.
2) Count all possible paths from top left to bottom right of a MxN matrix. (from each cell you can move only to right or down)
3) Given an array of size n and its elements, you have to include k elements such that the difference between the highest and lowest number in these k elements is minimum.
4) Find number of pair in a given array which is equal to given sum.
Duration: 120 minutes
Total Questions: 4

Round: Technical Interview
Experience: At the start of interview I was asked to Rate myself(out of 10) in Aptitude, Puzzle and then for C++.
For both I rated myself closer to 8.




Round: TECHNICAL AND HR
Experience: Icebreaker question- Tell me about yourself.
1. A question on tree Data structure.
2. I was asked about my Project work in college which was on Operating System. Detailed explanation why and how I picked this project. Who were the group members, how was the group formed, how much was the involvement of college faculty? What is its use in future? What was my role in the project?
The interviewer pointed out some flaw in algorithms used in project. Basically he asked me to think of Data Structures through which insertion can be done in O(1) as well as deletion and retrieval in O(1)…like the implementation of LRU cache algorithm.
The process took 40 minutes.
3. Discussion on second project which was on knn algorithm.
4. Asked me about tiny Url or Url shortener. Implement it.
Tips: The interviews were really thought provoking and the interviewers were helpful and friendly. It felt like solving problems as a team and not at all like a test. The interviewers were quite receptive to our questions and patient.

Skills: Object Oriented Programming (OOP) Basics, Puzzle Solving Capability, Operating System Basics, Algorithm, Data Structures
College Name: NIT Bhopal

Skills evaluated in this interview

I applied via Recruitment Consulltant and was interviewed in Jan 2022. There were 4 interview rounds.

Round 1 - Coding Test 

Basic DS and Algo 2 question asked

Round 2 - Coding Test 

4 questions were asked on Javascript as I was interviewing for a frontend developer role

Round 3 - Technical 

(2 Questions)

  • Q1. System Design questions was asked
  • Q2. How you will build amazon?
  • Ans. 

    Building Amazon requires a multi-faceted approach involving technology, logistics, and customer-centricity.

    • Develop a robust e-commerce platform with a user-friendly interface

    • Establish a vast network of warehouses and distribution centers for efficient delivery

    • Invest in cutting-edge technology such as AI and machine learning for personalized recommendations

    • Prioritize customer satisfaction through excellent customer serv...

  • Answered by AI
Round 4 - HR 

(4 Questions)

  • Q1. What are your salary expectations?
  • Q2. Share details of your previous job.
  • Q3. What are your strengths and weaknesses?
  • Q4. Tell me about yourself.

Interview Preparation Tips

Interview preparation tips for other job seekers - Consistency is key. solve the easy question on leet code that should do for DSA rounds

Mettl Interview FAQs

How many rounds are there in Mettl Sdet Engineer interview?
Mettl interview process usually has 1 rounds. The most common rounds in the Mettl interview process are Technical.
What are the top questions asked in Mettl Sdet Engineer interview?

Some of the top questions asked at the Mettl Sdet Engineer interview -

  1. Testng, rest api, assert...read more
  2. Sql related questi...read more
  3. Testcase related questi...read more

Tell us how to improve this page.

Mettl Sdet Engineer Interview Process

based on 1 interview

Interview experience

3
  
Average
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.5k Interviews
Accenture Interview Questions
3.8
 • 8.2k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.7k Interviews
Cognizant Interview Questions
3.8
 • 5.6k Interviews
Capgemini Interview Questions
3.7
 • 4.8k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.9k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
Genpact Interview Questions
3.8
 • 3.1k Interviews
IBM Interview Questions
4.0
 • 2.4k Interviews
View all

Mettl Sdet Engineer Reviews and Ratings

based on 1 review

5.0/5

Rating in categories

5.0

Skill development

5.0

Work-life balance

5.0

Salary

5.0

Job security

5.0

Company culture

5.0

Promotions

5.0

Work satisfaction

Explore 1 Review and Rating
Technical Lead
7 salaries
unlock blur

₹31 L/yr - ₹47.5 L/yr

Assessor
7 salaries
unlock blur

₹2 L/yr - ₹4 L/yr

Technology Consultant
7 salaries
unlock blur

₹6 L/yr - ₹9 L/yr

Software Developer II
7 salaries
unlock blur

₹10 L/yr - ₹25.4 L/yr

Product Manager
7 salaries
unlock blur

₹14 L/yr - ₹40 L/yr

Explore more salaries
Compare Mettl with

TCS

3.7
Compare

Infosys

3.6
Compare

Wipro

3.7
Compare

HCLTech

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