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 and Answers

Updated 13 Jan 2025

Sigmoid Software Development Engineer II Interview Experiences

5 interviews found

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

    Reverse K group linked list

    • Iterate through the linked list in groups of size K

    • Reverse each group of K nodes

    • Connect the reversed groups back together

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Nearest Left Greater element.
  • Ans. 

    Find the nearest element on the left side of an array that is greater than the current element.

    • Iterate through the array from right to left.

    • Use a stack to keep track of elements that are greater than the current element.

    • Pop elements from the stack until finding a greater element or the stack is empty.

    • If a greater element is found, that is the nearest left greater element.

    • If the stack is empty, there is no nearest left ...

  • Answered by AI
  • Q2. Validate binary search tree.
  • Ans. 

    Validate if a binary tree is a binary search tree

    • In-order traversal should result in a sorted array

    • Check if each node's value is within the correct range

    • Recursively validate left and right subtrees

  • Answered by AI
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
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
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.

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

Top trending discussions

View All
Interview Tips & Stories
2w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about Sigmoid?
Ask anonymously on communities.

Interview questions from similar companies

I applied via Naukri.com and was interviewed before May 2020. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. SQL Joins
  • Q2. Swap 2 numbers without 3rd variable
  • Ans. 

    Swapping two numbers without using a third variable

    • Use arithmetic operations to swap the values

    • Add the two numbers and store the result in the first variable

    • Subtract the second number from the result and store it in the second variable

    • Subtract the second variable from the first variable to get the original value of the second variable

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - 1st Round : Long set of Aptitude questions
2nd Round : Technical Interview
3rd Round : Technical Interview and HR questions

Skills evaluated in this interview

I applied via Approached by Company and was interviewed before Jul 2021. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. How would you write a REST API from scratch? Explain your role in the project.
  • Ans. 

    To write a REST API from scratch, I would follow these steps:

    • Define the resources and endpoints

    • Choose a programming language and framework

    • Implement CRUD operations for each resource

    • Use HTTP methods and status codes correctly

    • Add authentication and authorization

    • Test the API using tools like Postman

    • Document the API using tools like Swagger

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - There are two rounds of technical and one hr.

Skills evaluated in this interview

Are these interview questions helpful?

Interview Questionnaire 

2 Questions

  • Q1. This is swap case
  • Q2. Str.swapcase()
  • Ans. 

    str.swapcase() returns a new string with all uppercase letters converted to lowercase and vice versa.

    • Usage: 'Hello World'.swapcase() returns 'hELLO wORLD'.

    • It affects only alphabetic characters; numbers and symbols remain unchanged.

    • This method does not modify the original string; it returns a new one.

    • Example: 'Python 3.8'.swapcase() results in 'pYTHON 3.8'.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Main focus on Junit. If you are good in it is fine.

I applied via Naukri.com and was interviewed in Apr 2021. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Overall on SQL interview questions.
  • Q2. Triiggers, sp, function , some queries to build

Interview Preparation Tips

Interview preparation tips for other job seekers - Good SQL knowledge is required

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.

Overall Interview Experience Rating

3.7/5

based on 6 interview experiences

Difficulty level

Moderate 80%
Hard 20%

Duration

Less than 2 weeks 80%
2-4 weeks 20%
View more

Interview Questions from Similar Companies

IKS Health Interview Questions
3.6
 • 242 Interviews
Mu Sigma Interview Questions
2.6
 • 240 Interviews
Crisil Interview Questions
3.6
 • 202 Interviews
Indegene Interview Questions
3.4
 • 159 Interviews
Nielsen Interview Questions
3.7
 • 133 Interviews
Kantar Interview Questions
3.4
 • 106 Interviews
Netscribes Interview Questions
2.7
 • 90 Interviews
View all
Sigmoid Software Development Engineer II Salary
based on 110 salaries
₹15 L/yr - ₹23 L/yr
31% less than the average Software Development Engineer II Salary in India
View more details

Sigmoid Software Development Engineer II Reviews and Ratings

based on 5 reviews

4.5/5

Rating in categories

4.5

Skill development

4.7

Work-life balance

3.7

Salary

4.6

Job security

4.7

Company culture

3.2

Promotions

4.3

Work satisfaction

Explore 5 Reviews and Ratings
Software Development Engineer II
110 salaries
unlock blur

₹15 L/yr - ₹23 L/yr

Data Engineer
91 salaries
unlock blur

₹13 L/yr - ₹21 L/yr

Senior Data Scientist
68 salaries
unlock blur

₹17 L/yr - ₹28.5 L/yr

Data Scientist
63 salaries
unlock blur

₹11 L/yr - ₹20 L/yr

Senior Data Analyst
52 salaries
unlock blur

₹13.2 L/yr - ₹25 L/yr

Explore more salaries
Compare Sigmoid with

IKS Health

3.6
Compare

Crisil

3.6
Compare

CorroHealth infotech

3.1
Compare

Indegene

3.4
Compare
write
Share an Interview