Upload Button Icon Add office photos
Engaged Employer

i

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

Sigmoid Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Sigmoid Software Development Engineer II Interview Questions, Process, and Tips

Updated 13 Jan 2025

Top Sigmoid Software Development Engineer II Interview Questions and Answers

View all 6 questions

Sigmoid Software Development Engineer II Interview Experiences

5 interviews found

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

I applied via Recruitment Consulltant and was interviewed in Oct 2023. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Leetcode's Maximum Path Sum
  • Ans. 

    Find the maximum path sum in a binary tree

    • Use recursion to traverse the binary tree and calculate the maximum path sum at each node

    • At each node, calculate the maximum path sum that includes the current node and return the maximum path sum that does not include the current node

    • Update a global variable to keep track of the maximum path sum found so far

  • Answered by AI
  • Q2. Leetcode's sort 0 1 array in place
  • Ans. 

    Sort an array of 0s and 1s in place without using extra space.

    • Use two pointers approach - one for 0s and one for 1s.

    • Swap elements at the two pointers until all 0s are on the left and 1s on the right.

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Referral and was interviewed in Dec 2024. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Reverse K group linked list.
Round 2 - Technical 

(2 Questions)

  • Q1. Nearest Left Greater element.
  • Q2. Validate binary search tree.

Software Development Engineer II Interview Questions Asked at Other Companies

asked in Zepto
Q1. Given 2 large numeric comma seperated strings. You need to calcul ... read more
asked in Zepto
Q2. How many microservices do I own & at what scale they handle t ... read more
asked in Porter
Q3. 1. Given an array find a subset that sums to a given sum K 2. Giv ... read more
Q4. design a LLD of portfolio management system where you can add any ... read more
asked in S&P Global
Q5. Difference between truncate and delete and when we prefer what op ... read more
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Selected Selected
Round 1 - Aptitude Test 

Consist of 2 coding questions, multiple choice of around 30 question including, math, code, logic and core concepts.

Round 2 - Coding Test 

1 hr of coding test mostly on leetcode platform. level : Hard

Round 3 - Technical 

(1 Question)

  • Q1. Db related question
Round 4 - HR 

(1 Question)

  • Q1. Why this company?
  • Ans. 

    I am impressed by the company's innovative products, strong company culture, and opportunities for growth.

    • Innovative products: I am excited about the cutting-edge technology and solutions the company is developing.

    • Strong company culture: I have heard great things about the supportive and collaborative work environment at the company.

    • Opportunities for growth: The company's commitment to employee development and career a...

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

I applied via LinkedIn and was interviewed before Jul 2023. There were 4 interview rounds.

Round 1 - Coding Test 

You will be given a medium lever coding question. Questions about databricks and azure if had an experiance.

Round 2 - Coding Test 

Two DSA questions, you have to solve both with optimal solution.
1 could be from an array other could be a tree or stack.

Round 3 - Technical 

(1 Question)

  • Q1. Cloud experience, questions on Azure, AWS
Round 4 - One-on-one 

(1 Question)

  • Q1. Managerial round, basic behavioural questions, why change, pros and cons of previous company.

Sigmoid interview questions for designations

 Software Development Engineer

 (1)

 Software Development Engineer 1

 (1)

 Software Development Engineer Intern

 (2)

 SDE (Software Development Engineer)

 (1)

 Software Engineer

 (3)

 Associate Software Engineer

 (1)

 Lead Software Engineer

 (1)

 Software Developer

 (5)

I applied via Naukri.com and was interviewed in Aug 2022. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Given a binary string,find out the max length of substring having equal number of 1 and 0
  • Ans. 

    Find max length of substring with equal 1s and 0s in a binary string.

    • Use a hash table to store the difference between the count of 1s and 0s seen so far.

    • If the difference is 0, update the max length seen so far.

    • If the difference is already in the hash table, update the max length using the current index and the index where the difference was first seen.

    • Return the max length.

    • Example: '1100010110' -> 8

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Interviewer will help you.Leet code medium level questions

Skills evaluated in this interview

Get interview-ready with Top Sigmoid Interview Questions

Interview questions from similar companies

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

I applied via Campus Placement and was interviewed in Oct 2024. There were 2 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Maximal rectangal
  • Q2. Loop in linked list
  • Ans. 

    Loop in linked list is a situation where a node points to a previous node in the list, creating an infinite loop.

    • Check for loops using Floyd's cycle detection algorithm

    • Use two pointers, one moving twice as fast as the other, to detect a loop

    • If the fast pointer catches up to the slow pointer, there is a loop

  • Answered by AI
Round 2 - HR 

(2 Questions)

  • Q1. Basic hr question regarding your project and all
  • Q2. He was more interested in what is my thinking pattern

Skills evaluated in this interview

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

(1 Question)

  • Q1. What fifo? diff btwn fifo and lifo
  • Ans. 

    FIFO stands for First In, First Out. LIFO stands for Last In, First Out.

    • FIFO is a method for organizing and manipulating a data buffer, where the first element added is the first to be removed.

    • LIFO is a method where the last element added is the first to be removed.

    • FIFO is like a queue, while LIFO is like a stack.

    • Example: In a FIFO queue, if elements A, B, and C are added in that order, they will be removed in the same...

  • Answered by AI

Skills evaluated in this interview

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

I applied via Campus Placement and was interviewed in Apr 2024. There were 2 interview rounds.

Round 1 - Technical 

(3 Questions)

  • Q1. Core java concepts,Sql queries,2 coding question based on arrays and string
  • Q2. Reverse the string
  • Ans. 

    Reverse a given string

    • Use a loop to iterate through the characters of the string

    • Swap the characters from start to end to reverse the string

    • Return the reversed string

  • Answered by AI
  • Q3. Find third highest salary from a employee table
Round 2 - Technical 

(4 Questions)

  • Q1. Advance java and project related
  • Q2. Springboot and spring diff
  • Q3. Springboot annotations used in your project
  • Ans. 

    Some common Springboot annotations used in projects are @RestController, @Autowired, @RequestMapping, @Service, @Component, @Repository.

    • @RestController - Used to define RESTful web services.

    • @Autowired - Used for automatic dependency injection.

    • @RequestMapping - Used to map web requests to specific handler methods.

    • @Service - Used to indicate that a class is a service.

    • @Component - Used to indicate that a class is a Spring...

  • Answered by AI
  • Q4. Springboot dependencies

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Technology questions were asked as per experience
Round 2 - HR 

(1 Question)

  • Q1. Hr related questions were asking more of behaviourial
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed in Sep 2023. 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 - Coding Test 

Array,binary search, Aptitude

Round 3 - Technical 

(1 Question)

  • Q1. Coding Questions, java, Web development
Round 4 - HR 

(1 Question)

  • Q1. Just normal Questions

Sigmoid Interview FAQs

How many rounds are there in Sigmoid Software Development Engineer II interview?
Sigmoid interview process usually has 2-3 rounds. The most common rounds in the Sigmoid interview process are Technical, Coding Test and One-on-one Round.
What are the top questions asked in Sigmoid Software Development Engineer II interview?

Some of the top questions asked at the Sigmoid Software Development Engineer II interview -

  1. Given a binary string,find out the max length of substring having equal number ...read more
  2. Leetcode's sort 0 1 array in pl...read more
  3. Validate binary search tr...read more

Tell us how to improve this page.

Sigmoid Software Development Engineer II Interview Process

based on 5 interviews

Interview experience

3.6
  
Good
View more

Interview Questions from Similar Companies

Mu Sigma Interview Questions
2.6
 • 229 Interviews
Tiger Analytics Interview Questions
3.7
 • 221 Interviews
Fractal Analytics Interview Questions
4.0
 • 208 Interviews
Crisil Interview Questions
3.7
 • 187 Interviews
Indegene Interview Questions
3.4
 • 151 Interviews
Tredence Interview Questions
3.6
 • 123 Interviews
Nielsen Interview Questions
3.7
 • 118 Interviews
Axtria Interview Questions
3.1
 • 116 Interviews
Kantar Interview Questions
3.5
 • 105 Interviews
View all
Sigmoid Software Development Engineer II Salary
based on 85 salaries
₹14 L/yr - ₹24.5 L/yr
25% less than the average Software Development Engineer II Salary in India
View more details

Sigmoid Software Development Engineer II Reviews and Ratings

based on 3 reviews

4.4/5

Rating in categories

4.4

Skill development

4.3

Work-life balance

3.1

Salary

4.8

Job security

4.0

Company culture

3.3

Promotions

3.9

Work satisfaction

Explore 3 Reviews and Ratings
Software Development Engineer II
85 salaries
unlock blur

₹14 L/yr - ₹24.5 L/yr

Data Scientist
49 salaries
unlock blur

₹10.5 L/yr - ₹22.5 L/yr

Data Engineer
49 salaries
unlock blur

₹8.5 L/yr - ₹25 L/yr

Senior Data Scientist
44 salaries
unlock blur

₹17 L/yr - ₹28.9 L/yr

Software Development Engineer
36 salaries
unlock blur

₹13.2 L/yr - ₹20.4 L/yr

Explore more salaries
Compare Sigmoid with

Fractal Analytics

4.0
Compare

Mu Sigma

2.6
Compare

Tiger Analytics

3.7
Compare

LatentView Analytics

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