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 Interview Questions, Process, and Tips

Updated 22 Feb 2025

Top Sigmoid Interview Questions and Answers

View all 52 questions

Sigmoid Interview Experiences

Popular Designations

59 interviews found

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

Software Development Engineer II Interview Questions asked at other Companies

Q1. Given 2 large numeric comma seperated strings. You need to calculate their sum along with maintaining the correct position of commas. Example Test Case - s1 - "123,456,788" s2 - "1" output - "123,456,789" constraints - since the strings can... read more
View answer (1)

I applied via Naukri.com and was interviewed in Jul 2022. 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 - Aptitude Test 

Send me the question file and my Gmail.

Round 3 - Assignment 

Send me the assignment

Interview Preparation Tips

Topics to prepare for Sigmoid IT (Data Analytics) interview:
  • Statistics
  • Ms Excel
  • Python programming, Data analyti
  • R software
Interview preparation tips for other job seekers - I am currently looking for job pune City. I am very interested to the apply this job.

IT (Data Analytics) Interview Questions asked at other Companies

Q1. Can you tell few use case examples in the banking scenario?
View answer (2)

I applied via Recruitment Consulltant and was interviewed before Nov 2021. There were 2 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 - One-on-one 

(2 Questions)

  • Q1. Questions related to projects on your resume.
  • Q2. Fizz buzz style of programming questions, Nothing like Competitive programming.

Interview Preparation Tips

Topics to prepare for Sigmoid Associate Data Scientist interview:
  • NLP
  • Computer Vision
Interview preparation tips for other job seekers - Make sure whats on your resume you are able to explain it in detail.

Associate Data Scientist Interview Questions asked at other Companies

Q1. Why do you think the objective of predictive modeling is minimizing the cost function? How would you define a cost function after all?
View answer (1)

I applied via Referral and was interviewed in Aug 2021. There was 1 interview round.

Interview Questionnaire 

3 Questions

  • Q1. Find k min elements in given array.
  • Ans. 

    Find k min elements in given array.

    • Sort the array and return the first k elements.

    • Use a min heap of size k to find the k min elements.

    • Use quickselect algorithm to find the kth smallest element and return first k elements smaller than it.

  • Answered by AI
  • Q2. Find that given tree is BST or not.
  • Ans. 

    Check if a given tree is a Binary Search Tree (BST) or not.

    • Traverse the tree in-order and check if the elements are in ascending order.

    • Check if the maximum value in the left subtree is less than the root and the minimum value in the right subtree is greater than the root.

    • Use recursion to check if all subtrees are BSTs.

    • Time complexity: O(n), Space complexity: O(h) where h is the height of the tree.

  • Answered by AI
  • Q3. Find pair in BST with given sum
  • Ans. 

    Given a BST and a sum, find a pair of nodes whose values add up to the given sum.

    • Traverse the BST in-order and store the nodes in a list

    • Use two pointers approach to find the pair with the given sum

    • If the sum is less than the current pair, move the right pointer to the left

    • If the sum is greater than the current pair, move the left pointer to the right

    • If the sum is equal to the current pair, return the pair

    • Time complexit

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview was Focused on DS Algo mostly.
2 technical round ( DS Algo)
1 managerial round ( General past working experiences questions)

Skills evaluated in this interview

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (183)

Sigmoid interview questions for popular designations

 Data Engineer

 (5)

 Software Developer

 (5)

 Software Development Engineer II

 (5)

 Data Scientist

 (4)

 Sde1

 (4)

 Senior Data Engineer

 (3)

 Software Engineer

 (3)

 Data Analyst

 (2)

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

I applied via Naukri.com and was interviewed before Oct 2022. There were 2 interview rounds.

Round 1 - Aptitude Test 

1 hour general aptitude online test. Math logical reasoning and Comprehension

Round 2 - Case Study 

Case study of data science project and how to pitch it

Interview Preparation Tips

Interview preparation tips for other job seekers - Data science knowledge must

Sales Development Representative Interview Questions asked at other Companies

Q1. How to improve sales skills
View answer (1)

Get interview-ready with Top Sigmoid Interview Questions

Round 1 - Coding Test 

Medium leet code

Round 2 - Coding Test 

Medium leet code

Round 3 - HR 

(1 Question)

  • Q1. Some basic questions related to Job profile and interest.

Interview Preparation Tips

Interview preparation tips for other job seekers - Just practice from leetcode easy and medium questions and it will be sufficient.

SDE (Software Development Engineer) Interview Questions asked at other Companies

Q1. A string is given consisting of lowercase alphabets. Write a function which returns yes if the string has all the lowercase letters appearing in it at least once. O(N) time and without using extra space
View answer (3)

I applied via Company Website and was interviewed in May 2021. There were 5 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. First round: 2 coding questions 1. Find minimum from sorted rotated array.
  • Q2. 2.relative sort leetcode....... second round: 1. Flower bed leetcode........2. find maximum subarray sum from an array

Interview Preparation Tips

Interview preparation tips for other job seekers - Interviewers are really good and helpful. Just focus on the questions and try to discuss it with the interviewer. Third round is the managerial where they will discuss about your projects.

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (39)

I applied via campus placement at Indian Institute of Technology (IIT), Jodhpur and was interviewed in Feb 2021. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. How you will figure out how many WhatsApp user are there in world
  • Ans. 

    Estimating the number of WhatsApp users worldwide requires a combination of data sources and statistical methods.

    • Collect data from WhatsApp's official reports and announcements

    • Use third-party analytics tools to estimate user numbers

    • Analyze demographic and geographic trends to extrapolate global user numbers

    • Consider factors such as population growth and smartphone adoption rates

    • Compare with similar messaging apps to val

  • Answered by AI
  • Q2. Tell me about the how you will tackle a crude data for data analysis
  • Ans. 

    I will start by understanding the data source and its quality, then clean and preprocess the data before performing exploratory data analysis.

    • Understand the data source and its quality

    • Clean and preprocess the data

    • Perform exploratory data analysis

    • Identify patterns and trends in the data

    • Use statistical methods to analyze the data

    • Visualize the data using graphs and charts

    • Iterate and refine the analysis as needed

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and always try to discuss

Skills evaluated in this interview

Data Scientist Interview Questions asked at other Companies

Q1. for a data with 1000 samples and 700 dimensions, how would you find a line that best fits the data, to be able to extrapolate? this is not a supervised ML problem, there's no target. and how would you do it, if you want to treat this as a s... read more
View answer (5)

I was interviewed before Feb 2016.

Interview Preparation Tips

Round: Test
Experience: its consist of DS and c And java based programming code test
Tips: be with logic, no need that your code needs to run
Duration: 2 hours 30 minutes
Total Questions: 5

College Name: Rimt-iet

Software Development Engineer Intern Interview Questions asked at other Companies

Q1. Say you're dealing with really long integers. They're too long to fit into a regular datatype, so linked lists are used to store them, with each node of the list containing one digit. Now the problem is, given two linked lists, i.e. two rea... read more
View answer (2)

Sigmoid Interview FAQs

How many rounds are there in Sigmoid 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.
How to prepare for Sigmoid interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at Sigmoid. The most common topics and skills that interviewers at Sigmoid expect are Data Analytics, Python, SQL, Machine Learning and Data Science.
What are the top questions asked in Sigmoid interview?

Some of the top questions asked at the Sigmoid interview -

  1. Given a non-decreasing array, how can I determine the indices of an element X w...read more
  2. How you will figure out how many WhatsApp user are there in wo...read more
  3. in an integer array where element represent stock price and index represent day...read more
How long is the Sigmoid interview process?

The duration of Sigmoid interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Sigmoid Interview Process

based on 62 interviews

Interview experience

3.7
  
Good
View more

Interview Questions from Similar Companies

Mu Sigma Interview Questions
2.6
 • 229 Interviews
Tiger Analytics Interview Questions
3.6
 • 221 Interviews
Fractal Analytics Interview Questions
4.0
 • 207 Interviews
Tredence Interview Questions
3.6
 • 123 Interviews
Axtria Interview Questions
3.1
 • 115 Interviews
C5i Interview Questions
4.0
 • 44 Interviews
AbsolutData Interview Questions
3.6
 • 9 Interviews
View all

Sigmoid Reviews and Ratings

based on 121 reviews

3.2/5

Rating in categories

3.2

Skill development

3.1

Work-life balance

3.3

Salary

3.3

Job security

3.1

Company culture

2.8

Promotions

3.0

Work satisfaction

Explore 121 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