Upload Button Icon Add office photos
Engaged Employer

i

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

kipi.ai Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

kipi.ai Sdet Lead Interview Questions and Answers

Updated 17 Oct 2024

kipi.ai Sdet Lead Interview Experiences

1 interview found

Sdet Lead Interview Questions & Answers

user image Anonymous

posted on 17 Oct 2024

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

Mostly sql based questions

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
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 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
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
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 

Online aptitude test with reasoning and java

Round 3 - Technical 

(2 Questions)

  • Q1. Explain all Oops concepts briefly
  • Ans. 

    Oops concepts are fundamental principles of object-oriented programming like inheritance, polymorphism, encapsulation, and abstraction.

    • Inheritance: Allows a class to inherit properties and behavior from another class.

    • Polymorphism: Ability of objects to take on multiple forms based on the context.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit.

    • Abstraction: Hiding the complex implemen...

  • Answered by AI
  • Q2. One basic level java question

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
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.

kipi.ai Interview FAQs

How many rounds are there in kipi.ai Sdet Lead interview?
kipi.ai interview process usually has 1 rounds. The most common rounds in the kipi.ai interview process are Aptitude Test.

Tell us how to improve this page.

kipi.ai Sdet Lead Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Sdet Lead Interview Questions from Similar Companies

View all
Senior Software Engineer
167 salaries
unlock blur

₹5.5 L/yr - ₹17.5 L/yr

Lead Engineer
88 salaries
unlock blur

₹10.6 L/yr - ₹30 L/yr

Senior Leader Engineer
53 salaries
unlock blur

₹16 L/yr - ₹42 L/yr

Software Engineer
42 salaries
unlock blur

₹4.5 L/yr - ₹11 L/yr

Solution Architect
38 salaries
unlock blur

₹30 L/yr - ₹56 L/yr

Explore more salaries
Compare kipi.ai with

Paytm

3.3
Compare

Flipkart

4.0
Compare

Ola Cabs

3.4
Compare

Swiggy

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