Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by ZeMoSo Technologies Team. If you also belong to the team, you can get access from here

ZeMoSo Technologies Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

ZeMoSo Technologies Sdet Lead Interview Questions and Answers

Updated 25 Jan 2023

ZeMoSo Technologies Sdet Lead Interview Experiences

1 interview found

Sdet Lead Interview Questions & Answers

user image Anonymous

posted on 25 Jan 2023

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Dec 2022. There were 4 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Basic technical discussion for an hour
  • Q2. Coding on array asc or desc
Round 2 - Coding Test 

Again further basic technical discussion for half time and a coding problem

Round 3 - Coding Test 

Again same as round 2 and coding test

Round 4 - Coding Test 

Discussion abt tech stack and worked assignments and ending with a coding test .This round happens for more experienced ppl by project lead/learning director level guys.The result wl told in their attitude and words here if salary you are expecting is out of their budget..Total wasted my time

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't waste time with this company .They waste time without knowing budget of project or salary expectations they gonna provide.totally waste of time.worst interview schedule by chitra and interview by Nabonita singh.

Interview questions from similar companies

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

(4 Questions)

  • Q1. What is an abstract class?
  • Ans. 

    An abstract class is a class that cannot be instantiated and may contain abstract methods that must be implemented by its subclasses.

    • Cannot be instantiated directly

    • May contain abstract methods

    • Used as a blueprint for other classes

  • Answered by AI
  • Q2. What is abstraction?
  • Ans. 

    Abstraction is the process of hiding complex details and showing only the essential features of an object or system.

    • Abstraction allows us to focus on what an object does, rather than how it does it

    • It helps in simplifying complex systems by breaking them down into smaller, more manageable parts

    • Examples of abstraction include using a car without needing to understand its internal combustion engine, or using a smartphone

  • Answered by AI
  • Q3. Best sorting algo?time complexity of it?
  • Ans. 

    QuickSort is one of the best sorting algorithms with an average time complexity of O(n log n).

    • QuickSort is a divide and conquer algorithm that works by selecting a 'pivot' element and partitioning the array around the pivot.

    • It has an average time complexity of O(n log n) and a worst-case time complexity of O(n^2).

    • Example: ['apple', 'banana', 'cherry', 'date', 'fig'] can be sorted using QuickSort.

    • Example: ['3', '1', '4'...

  • Answered by AI
  • Q4. You have been provided a sorted list time complexity achieved after we apply bubble sorting
  • Ans. 

    Bubble sorting has a time complexity of O(n^2) for a sorted list.

    • Bubble sorting has a worst-case time complexity of O(n^2) for a sorted list.

    • The time complexity does not change even if the list is already sorted.

    • Example: If we have a sorted list of size n, bubble sorting will still take O(n^2) time.

  • Answered by AI
Round 2 - HR 

(1 Question)

  • Q1. Have you ever been to a state other than jharkhand?
  • Ans. 

    Yes, I have been to multiple states other than Jharkhand.

    • I have traveled to states like Maharashtra, Karnataka, and Tamil Nadu for work and leisure.

    • I have visited tourist destinations in states like Rajasthan, Kerala, and Himachal Pradesh.

    • I have family in states like Uttar Pradesh, Bihar, and West Bengal, which I have visited multiple times.

  • Answered by AI
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Mostly sql based questions

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

It was modrate easy with compare to other

Round 2 - Coding Test 

Good questions which is some are modrate and some difficult

Interview Preparation Tips

Interview preparation tips for other job seekers - it was great experience

I applied via Job Fair and was interviewed before Sep 2021. There were 3 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 - Coding Test 

It was basic dsa questions on hashmap and heap

Round 3 - Technical 

Interview Preparation Tips

Interview preparation tips for other job seekers - You can easily crack the oa round and 3 technical interview
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

De/algo leetcode medium level

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

Mostly sql based questions

I was interviewed in Feb 2022.

Round 1 - Coding Test 

(2 Questions)

Round duration - 90 minutes
Round difficulty - Easy

It was purely a coding round

  • Q1. 

    Course Schedule Problem Statement

    You are enrolled as a student and must complete N courses, numbered from 1 to N, to earn your degree.

    Some courses have prerequisites, which means that to take course i,...

  • Q2. 

    N Queens Problem

    Given an integer N, find all possible placements of N queens on an N x N chessboard such that no two queens threaten each other.

    Explanation:

    A queen can attack another queen if they ar...

Interview Preparation Tips

Eligibility criterianaJosh Technology Group interview preparation:Topics to prepare for the interview - Data Structures, Pointers, OOPS, System Design, Algorithms, Dynamic ProgrammingTime required to prepare for the interview - 5 monthsInterview preparation tips for other job seekers

Tip 1 : Stay focused
Tip 2 : Practice coding questions
Tip 3 : View previous interviews of the companies

Application resume tips for other job seekers

Tip 1 : Have atleast 3 great project
Tip 2 : Write only what you know and prepare well

Final outcome of the interviewRejected

Skills evaluated in this interview

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

(4 Questions)

  • Q1. What is an abstract class?
  • Ans. 

    An abstract class is a class that cannot be instantiated and may contain abstract methods that must be implemented by its subclasses.

    • Cannot be instantiated directly

    • May contain abstract methods

    • Used as a blueprint for other classes

  • Answered by AI
  • Q2. What is abstraction?
  • Ans. 

    Abstraction is the process of hiding complex details and showing only the essential features of an object or system.

    • Abstraction allows us to focus on what an object does, rather than how it does it

    • It helps in simplifying complex systems by breaking them down into smaller, more manageable parts

    • Examples of abstraction include using a car without needing to understand its internal combustion engine, or using a smartphone

  • Answered by AI
  • Q3. Best sorting algo?time complexity of it?
  • Ans. 

    QuickSort is one of the best sorting algorithms with an average time complexity of O(n log n).

    • QuickSort is a divide and conquer algorithm that works by selecting a 'pivot' element and partitioning the array around the pivot.

    • It has an average time complexity of O(n log n) and a worst-case time complexity of O(n^2).

    • Example: ['apple', 'banana', 'cherry', 'date', 'fig'] can be sorted using QuickSort.

    • Example: ['3', '1', '4'...

  • Answered by AI
  • Q4. You have been provided a sorted list time complexity achieved after we apply bubble sorting
  • Ans. 

    Bubble sorting has a time complexity of O(n^2) for a sorted list.

    • Bubble sorting has a worst-case time complexity of O(n^2) for a sorted list.

    • The time complexity does not change even if the list is already sorted.

    • Example: If we have a sorted list of size n, bubble sorting will still take O(n^2) time.

  • Answered by AI
Round 2 - HR 

(1 Question)

  • Q1. Have you ever been to a state other than jharkhand?
  • Ans. 

    Yes, I have been to multiple states other than Jharkhand.

    • I have traveled to states like Maharashtra, Karnataka, and Tamil Nadu for work and leisure.

    • I have visited tourist destinations in states like Rajasthan, Kerala, and Himachal Pradesh.

    • I have family in states like Uttar Pradesh, Bihar, and West Bengal, which I have visited multiple times.

  • Answered by AI
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Jun 2022. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Aptitude Test 

1 hour duration with basic level aptitude

Round 3 - Coding Test 

1 hour 30 minutes, basic to medium level dsa

Interview Preparation Tips

Topics to prepare for Josh Technology Group SDE (Software Development Engineer) interview:
  • DSA
  • trees
Interview preparation tips for other job seekers - practice dsa as most questions were from leetcode. try solving trees and linked lists

ZeMoSo Technologies Interview FAQs

How many rounds are there in ZeMoSo Technologies Sdet Lead interview?
ZeMoSo Technologies interview process usually has 5 rounds. The most common rounds in the ZeMoSo Technologies interview process are Coding Test, Resume Shortlist and Technical.
What are the top questions asked in ZeMoSo Technologies Sdet Lead interview?

Some of the top questions asked at the ZeMoSo Technologies Sdet Lead interview -

  1. Basic technical discussion for an h...read more
  2. Coding on array asc or d...read more

Tell us how to improve this page.

ZeMoSo Technologies Sdet Lead Interview Process

based on 1 interview

Interview experience

1
  
Bad
View more

Sdet Lead Interview Questions from Similar Companies

TCS Sdet Lead Interview Questions
3.7
 • 7 Interviews
View all
Senior Software Engineer
74 salaries
unlock blur

₹12.7 L/yr - ₹33 L/yr

Associate Software Engineer
45 salaries
unlock blur

₹6.5 L/yr - ₹7.3 L/yr

Software Engineer
35 salaries
unlock blur

₹6 L/yr - ₹17 L/yr

Software Engineer2
31 salaries
unlock blur

₹10 L/yr - ₹14 L/yr

Senior Software Engineer 2
25 salaries
unlock blur

₹21.3 L/yr - ₹25 L/yr

Explore more salaries
Compare ZeMoSo Technologies with

Persistent Systems

3.5
Compare

LTIMindtree

3.8
Compare

Mphasis

3.4
Compare

TCS

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