Upload Button Icon Add office photos

Filter interviews by

Zopsmart Technology Sdet Automation Test Engineer Interview Questions and Answers

Updated 12 Apr 2024

Zopsmart Technology Sdet Automation Test Engineer Interview Experiences

1 interview found

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

It was sort of assessment which consists of technical questions and coding round

Round 2 - One-on-one 

(1 Question)

  • Q1. It was of more around the technical subjects and college projects
Round 3 - One-on-one 

(1 Question)

  • Q1. It consists of all the technical questions and coding questions , projects etc

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident on what you know

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Design URL shorterner
  • Ans. 

    Design a URL shortener service to generate short URLs for long URLs.

    • Use a hashing algorithm to generate unique short codes for long URLs.

    • Store the mapping of short codes to long URLs in a database.

    • Redirect users from short URLs to the corresponding long URLs.

    • Implement analytics to track usage and performance of the service.

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

3 hour test. 20 MCQs and 2 Coding problems

Round 2 - Technical 

(1 Question)

  • Q1. Prefix Sum and left sum of binary tree.
  • Ans. 

    Prefix Sum and left sum of binary tree involves calculating the sum of all nodes in a binary tree and the sum of nodes on the left side of each node.

    • Calculate prefix sum of binary tree by traversing in a pre-order manner and keeping track of the running sum.

    • To calculate left sum of binary tree, traverse the tree in a pre-order manner and keep track of the sum of nodes on the left side of each node.

    • Example: For a binary...

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. Recursion to memoization DP problem and follow ups.
  • Ans. 

    Recursion to memoization DP problem involves optimizing recursive solutions by storing intermediate results.

    • Recursion involves solving a problem by breaking it down into smaller subproblems and calling the function recursively.

    • Memoization involves storing the results of expensive function calls and reusing them when the same inputs occur again.

    • Dynamic Programming (DP) involves solving problems by breaking them down int...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Accepted. Prepare DSA.

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Sep 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

It was very good 60 questions

Round 2 - Coding Test 

3 coding question everhthing was hard

Round 3 - Technical 

(2 Questions)

  • Q1. What is java and cpp and dbms sql etc
  • Ans. 

    Java is a popular programming language, C++ is another programming language, and DBMS SQL is a language used for managing databases.

    • Java is an object-oriented programming language commonly used for building web applications and software.

    • C++ is a high-level programming language often used for system programming and game development.

    • DBMS SQL is a language used to interact with relational databases, allowing users to retr...

  • Answered by AI
  • Q2. What is python, oops and inheritance
  • Ans. 

    Python is a high-level programming language known for its simplicity and readability. OOPs (Object-Oriented Programming) is a programming paradigm that uses objects and classes. Inheritance is a feature of OOPs that allows a class to inherit properties and behavior from another class.

    • Python is a versatile, interpreted language used for web development, data analysis, artificial intelligence, and more.

    • OOPs focuses on cr...

  • Answered by AI

Skills evaluated in this interview

Sdet Automation Test Engineer Interview Questions & Answers

Amazon user image Madireddy Jagadeeswarreddy

posted on 16 Feb 2024

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Coding Test 

It consisted of 2 dsa questions

Round 2 - HR 

(2 Questions)

  • Q1. Tell me abiut yourself
  • Ans. 

    I am an experienced SDET Automation Test Engineer with a strong background in software testing and test automation.

    • I have a Bachelor's degree in Computer Science and have been working in the field for over 5 years.

    • I have expertise in designing and implementing test automation frameworks using tools like Selenium and Cucumber.

    • I have experience in writing test scripts, executing test cases, and analyzing test results.

    • I a...

  • Answered by AI
  • Q2. Your weaknesses

Interview Preparation Tips

Interview preparation tips for other job seekers - Nothing
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Assignment 

First was round based on Quality engineering concepts and aptitude combob

Round 2 - Technical 

(2 Questions)

  • Q1. Question on How proxy configured for device
  • Q2. What is test scenario,test case.
  • Ans. 

    Test scenario is a high-level description of the functionality to be tested, while test case is a detailed step-by-step procedure to validate the functionality.

    • Test scenario is a broad description of what needs to be tested, while test case is a detailed set of steps to verify a specific aspect of the scenario.

    • Test scenario is usually written in a more general and abstract way, while test case is more specific and conc...

  • Answered by AI

Skills evaluated in this interview

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

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

Round 1 - Technical 

(1 Question)

  • Q1. The hiring manager asked me to code the right view of the tree.

Interview Preparation Tips

Interview preparation tips for other job seekers - Interviewer asked me that he is not keen on checking the proper syntax. He is okay with syntax issue. He was being too nice and showing everything is going fine and then later within 30 mins send rejection mail.

I was interviewed before Dec 2020.

Round 1 - Face to Face 

(2 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

This round was purely based on Data Structures and Algorithms . One has to be fairly comfortable in solving Algorithmic problems to pass this round . Both the questions asked were quite common and luckily I had already prepared them from CodeStudio and LeetCode.

  • Q1. 

    Binary Tree Traversals Problem Statement

    Given a Binary Tree with 'N' nodes, where each node holds an integer value, your task is to compute the In-Order, Pre-Order, and Post-Order traversals of the binar...

  • Ans. 

    Compute the In-Order, Pre-Order, and Post-Order traversals of a Binary Tree given in level-order format.

    • Implement functions to perform In-Order, Pre-Order, and Post-Order traversals of a Binary Tree.

    • Use level-order input to construct the Binary Tree.

    • Traverse the Binary Tree recursively to generate the required traversals.

    • Ensure proper handling of null nodes represented by -1 in the input.

    • Return the three traversals as

  • Answered by AI
  • Q2. 

    Reverse Linked List Problem Statement

    Given a Singly Linked List of integers, your task is to reverse the Linked List by altering the links between the nodes.

    Input:

    The first line of input is an intege...
  • Ans. 

    Reverse a singly linked list by altering the links between nodes.

    • Iterate through the linked list and reverse the links between nodes

    • Use three pointers to keep track of the current, previous, and next nodes

    • Update the links between nodes to reverse the list

    • Return the head of the reversed linked list

  • Answered by AI
Round 2 - Face to Face 

(1 Question)

Round duration - 45 Minutes
Round difficulty - Medium

This round basically tested some concepts from Data Structures and File Manipulation .

  • Q1. 

    Intersection of Two Arrays Problem Statement

    Given two arrays A and B with sizes N and M respectively, both sorted in non-decreasing order, determine their intersection.

    The intersection of two arrays in...

  • Ans. 

    The problem involves finding the intersection of two sorted arrays efficiently.

    • Use two pointers to iterate through both arrays simultaneously.

    • Compare elements at the pointers and move the pointers accordingly.

    • Handle cases where elements are equal and update the intersection array.

    • Return the intersection array as the result.

  • Answered by AI

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPABig Basket interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, Operating Systems, Aptitude, OOPSTime required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Final outcome of the interviewSelected

Skills evaluated in this interview

Interview Questionnaire 

6 Questions

  • Q1. Given a Linked list , print yes if it is palindrome else print no
  • Q2. Print the level order traversal of the binary tree in the spiral form
  • Ans. 

    Print the level order traversal of binary tree in spiral form

    • Perform level order traversal of the binary tree

    • Alternate the direction of traversal for each level

    • Use a stack to reverse the order of nodes in each level

    • Print the nodes in the order of traversal

  • Answered by AI
  • Q3. Maximum of all subarrays of size k(Expected Time Complexity O(N). Input : arr[] = {1, 2, 3, 1, 4, 5, 2, 3, 6} k = 3 Output : 3 3 4 5 5 5 6
  • Ans. 

    Find the maximum element in each subarray of size k in a given array.

    • Iterate through the array from index 0 to n-k.

    • For each subarray of size k, find the maximum element.

    • Store the maximum elements in a separate array.

    • Return the array of maximum elements.

  • Answered by AI
  • Q4. Given Two sorted array of size size n each. Find the Kth largest element in these two array (Expected Time Complexity Log(n))
  • Ans. 

    To find the Kth largest element in two sorted arrays, we can use the merge step of merge sort algorithm.

    • Merge the two arrays into a single sorted array using a modified merge sort algorithm.

    • Return the Kth element from the merged array.

  • Answered by AI
  • Q5. Website having several web-pages. And also there are lot many user who are accessing the web-site. say user 1 has access pattern : x->y->z->a->b->c->d->e->f user 2 has access pattern : z->a->b->c->d user 3...
  • Q6. Given two array , one of size m+n and contains m element and other position are empty , 2nd array is of size n and contains n element. both array are sorted , now merge the second array to first one such t...
  • Ans. 

    Merge two sorted arrays into one sorted array with expected time complexity of (m+n).

    • Use a two-pointer approach to compare elements from both arrays and merge them into the first array.

    • Start comparing elements from the end of both arrays and place the larger element at the end of the first array.

    • Continue this process until all elements from the second array are merged into the first array.

  • Answered by AI

Interview Preparation Tips

Round: Test
Duration: 90 minutes

Skills: Algorithm , OS, DBMS, data structure
College Name: NIT BHOPAL

Skills evaluated in this interview

Interview Preparation Tips

Round: Test
Experience: Coding questions were comparatively easy. There were three questions.1. Given a string map each character of which to the corresponding digit in a 10 digit mobile phone keypad.2. Don't remember, will add when it comes to my mind.3. Don't remember, will add when it comes to my mind.

Skills: Coding ability, Complete knowledge of working of internet.,
College Name: IIT Bombay

Zopsmart Technology Interview FAQs

How many rounds are there in Zopsmart Technology Sdet Automation Test Engineer interview?
Zopsmart Technology interview process usually has 3 rounds. The most common rounds in the Zopsmart Technology interview process are One-on-one Round and Assignment.
What are the top questions asked in Zopsmart Technology Sdet Automation Test Engineer interview?

Some of the top questions asked at the Zopsmart Technology Sdet Automation Test Engineer interview -

  1. It was of more around the technical subjects and college proje...read more
  2. It consists of all the technical questions and coding questions , projects ...read more

Tell us how to improve this page.

Zopsmart Technology Sdet Automation Test Engineer Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

Amazon Interview Questions
4.1
 • 5k Interviews
Flipkart Interview Questions
4.0
 • 1.3k Interviews
BigBasket Interview Questions
3.9
 • 357 Interviews
Myntra Interview Questions
4.0
 • 214 Interviews
Blinkit Interview Questions
3.7
 • 178 Interviews
Snapdeal Interview Questions
3.8
 • 75 Interviews
Vyapar Interview Questions
3.4
 • 53 Interviews
Pepperfry Interview Questions
3.2
 • 31 Interviews
Classplus Interview Questions
3.4
 • 28 Interviews
View all
Zopsmart Technology Sdet Automation Test Engineer Salary
based on 16 salaries
₹9 L/yr - ₹13 L/yr
22% less than the average Sdet Automation Test Engineer Salary in India
View more details

Zopsmart Technology Sdet Automation Test Engineer Reviews and Ratings

based on 2 reviews

3.4/5

Rating in categories

2.7

Skill development

3.4

Work-life balance

2.7

Salary

4.6

Job security

2.7

Company culture

2.1

Promotions

2.7

Work satisfaction

Explore 2 Reviews and Ratings
Software Engineer
85 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Development Engineer
83 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Developer
73 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
51 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Development Engineer II
50 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Zopsmart Technology with

Flipkart

4.0
Compare

Amazon

4.1
Compare

Paytm Mall

3.6
Compare

Snapdeal

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