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

I was interviewed in Jan 2016.

Interview Questionnaire 

16 Questions

  • Q1. Based on project. What is difference between REST and SOAP? And couple of other questions
  • Q2. Delete nodes in linkedlist which have a greater value on right side?
  • Ans. 

    Delete nodes in linkedlist with greater value on right side

    • Traverse the linked list from right to left

    • Compare each node with the maximum value seen so far

    • If the current node has a greater value, delete it

    • Update the maximum value seen so far

  • Answered by AI
  • Q3. Check if given tree is BST or not?
  • Ans. 

    Check if given tree is BST or not

    • A binary tree is a BST if the value of each node is greater than all the values in its left subtree and less than all the values in its right subtree

    • Perform an in-order traversal of the tree and check if the values are in ascending order

    • Alternatively, for each node, check if its value is within the range defined by its left and right subtrees

  • Answered by AI
  • Q4. One adhoc question on strings?
  • Q5. One adhoc question from the online test itself? Ask me how i approached this problem and ask me to write code and explain?
  • Q6. What is OOP? Describe its properties?
  • Ans. 

    OOP is a programming paradigm that organizes code into objects with properties and behaviors.

    • OOP stands for Object-Oriented Programming.

    • It focuses on creating reusable code by organizing it into objects.

    • Objects have properties (attributes) and behaviors (methods).

    • Encapsulation, inheritance, and polymorphism are key principles of OOP.

    • Example: In Java, a class represents an object with its properties and methods.

  • Answered by AI
  • Q7. What is runtime polymorphism and compile time polymorphism? Difference between them?
  • Ans. 

    Runtime polymorphism is when the method to be executed is determined at runtime, while compile-time polymorphism is determined at compile-time.

    • Runtime polymorphism is achieved through method overriding.

    • Compile-time polymorphism is achieved through method overloading.

    • Runtime polymorphism is also known as dynamic polymorphism.

    • Compile-time polymorphism is also known as static polymorphism.

    • Runtime polymorphism is associate...

  • Answered by AI
  • Q8. What are virtual functions?
  • Ans. 

    Virtual functions are functions in a base class that can be overridden by derived classes to provide different implementations.

    • Virtual functions are declared in a base class and can be overridden in derived classes.

    • They allow polymorphism, where a pointer to a base class can invoke different derived class implementations.

    • Virtual functions are resolved at runtime based on the actual object type.

    • They are used to achieve

  • Answered by AI
  • Q9. What is abstract class?
  • Ans. 

    An abstract class is a class that cannot be instantiated and is meant to be subclassed.

    • An abstract class can have both abstract and non-abstract methods.

    • It can provide a common interface for its subclasses.

    • Subclasses of an abstract class must implement all the abstract methods.

    • Abstract classes can have constructors.

    • An abstract class cannot be instantiated directly, but its subclasses can be.

  • Answered by AI
  • Q10. What is inheritance? What are diffence types of inheritance?
  • Ans. 

    Inheritance is a mechanism in object-oriented programming where a class inherits properties and behaviors from another class.

    • Inheritance allows code reuse and promotes code organization.

    • There are different types of inheritance: single inheritance, multiple inheritance, multilevel inheritance, hierarchical inheritance, and hybrid inheritance.

    • Single inheritance involves a class inheriting from a single base class.

    • Multipl...

  • Answered by AI
  • Q11. Ask me about my coding experience how i started since i was from non IT Branch?
  • Q12. Print fibonaaci series less than equal to 1000?
  • Ans. 

    Print Fibonacci series less than or equal to 1000.

    • Start with two variables, a and b, initialized to 0 and 1 respectively.

    • Print a and update a to the value of b, and b to the sum of the previous a and b.

    • Repeat until a exceeds 1000.

  • Answered by AI
  • Q13. In the above question calculate sum of only even numbers of fibonaaci series?
  • Ans. 

    The sum of even numbers in the Fibonacci series is calculated.

    • Generate the Fibonacci series up to a given limit

    • Iterate through the series and check if each number is even

    • If the number is even, add it to the sum

    • Return the sum of the even numbers

  • Answered by AI
  • Q14. Optimized the above solution less than O(n). For this you have to think out of the box
  • Q15. What are stacks and its properties?
  • Ans. 

    Stacks are a data structure that follows the Last-In-First-Out (LIFO) principle.

    • Stacks have two main operations: push (adds an element to the top) and pop (removes the top element).

    • Stacks can be implemented using arrays or linked lists.

    • Common applications of stacks include function call stack, undo/redo operations, and expression evaluation.

    • Example: A stack of books, where the last book placed is the first one to be re

  • Answered by AI
  • Q16. Now implement one extra funtion called max() with give the maximum of all elements in the above stack with optimized time and space complexity?
  • Ans. 

    Implement max() function to find the maximum element in a stack with optimized time and space complexity.

    • Use an additional stack to keep track of the maximum element at each step.

    • When pushing an element onto the stack, compare it with the top element of the maximum stack and push the larger one.

    • When popping an element from the stack, also pop the top element from the maximum stack if they are equal.

    • The top element of t...

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: There were 4 questions of varying difficulty. Those attempted atleast 2 were selected for the next round.
Q1) Question based on Tower of hanoi problem. I solved it using dynamic programming.
Q2) Check for balanced parenthesis in an expression.
Q3)One adhoc question to calculate the maximum number of people present at a particular time in a hotel.
Q4) One other question based on string algorithms.
two adhoc questions
Tips: Lead in this round can benefit you in next rounds, so give your best shot
Total Questions: 4

Round: Technical Interview
Experience: The interviewer asked to write the full code for a couple of questions only
Tips: Prepare DS nicely.
Strong OOPs concepts.
They want optimized solution of all.
Be honest with your interviewer.
Don't pretend.

Round: Other Interview
Experience: Ask me write and compile the codes.
The interviewer was very friendly and helping nature.
He was giving hints where i stuck.
He was checking my thinking and prolem solving capability.
Tips: Correct explaination matters,time doesn't.Take your time.
Ask fro hint.
Be yourself.Don't pretend.
All the best :)

Skill Tips: Have conceptual knowledge of subjects, don't just mug up things. Interviewers are smart enough to make it out anyway.
Skills: C++, Object Oriented Programming, Algorithms And Data Structures, Ability To Think
College Name: NIT Allahabad
Motivation: Flat hierarchy.
Good progress by the company in its last 10 years of expansion.
opportunity to work with best minds of the country.
Decent salary.

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