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

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

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)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via campus placement at Indian Institute of Technology (IIT), Bhuvaneshwar and was interviewed in Nov 2024. There were 3 interview rounds.

Round 1 - Coding Test 

2 coding problem 1)NSE

Round 2 - Coding Test 

This is again a coding round 1) boundary traversal of binary tree and 2)Rotten Oranges

Round 3 - HR 

(2 Questions)

  • Q1. About project which I have done
  • Q2. 2 DSA problem of linked list

Interview Preparation Tips

Interview preparation tips for other job seekers - Na

Data Engineer 1 Interview Questions asked at other Companies

Q1. What are joins and types, number of cols after all types of joins...
View answer (1)
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is Data science?
  • Ans. 

    Data science is a field that uses scientific methods, algorithms, and systems to extract knowledge and insights from structured and unstructured data.

    • Data science involves collecting, analyzing, and interpreting large amounts of data to solve complex problems.

    • It combines statistics, machine learning, and domain knowledge to make predictions and decisions.

    • Data scientists use programming languages like Python and R, as w...

  • Answered by AI
  • Q2. What is Decision Tree
  • Ans. 

    A decision tree is a flowchart-like structure in which each internal node represents a test on an attribute, each branch represents the outcome of the test, and each leaf node represents a class label.

    • Decision trees are a popular machine learning algorithm used for classification and regression tasks.

    • They are easy to interpret and visualize, making them useful for understanding the decision-making process.

    • Each internal...

  • Answered by AI
Round 2 - One-on-one 

(2 Questions)

  • Q1. Case study based on Customer Churn
  • Q2. Resume based project question

Skills evaluated in this interview

Associate Engineer Interview Questions asked at other Companies

Q1. Count Ways To Reach The N-th StairsYou have been given a number of stairs. Initially, you are at the 0th stair, and you need to reach the Nth stair. Each time you can either climb one step or two steps. You are supposed to return the number... read more
View answer (5)
Interview experience
3
Average
Difficulty level
Easy
Process Duration
-
Result
Not Selected

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

Round 1 - Coding Test 

Topics like sql, python, aptitude were covered.

Round 2 - Technical 

(1 Question)

  • Q1. Questions from stats, machine learning were asked. Behavioral questions were also covered.

Interview Preparation Tips

Interview preparation tips for other job seekers - It was a good experience but they didnt give any response for my mails. I was worried about the results for 3 weeks and later they told me it was a rejection. When I asked them for reason , they dont have any it seems . Post interview it was horrible experience for me .

Data Science Intern Interview Questions asked at other Companies

Q1. Rotate Matrix by 90 Degrees Problem Statement Given a square matrix 'MATRIX' of non-negative integers, rotate the matrix by 90 degrees in an anti-clockwise direction using only constant extra space. Input: The first line of input contains a... read more
View answer (1)

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)

Data Engineer Interview Questions & Answers

user image Anonymous

posted on 23 Sep 2024

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Coding Test 

General Aptitude test and 3 Medium level coding questions

Round 2 - Technical 

(2 Questions)

  • Q1. Sortr an array of 0,1
  • Ans. 

    Sort an array of 0s and 1s

    • Use a sorting algorithm like counting sort or two-pointer approach

    • Count the number of 0s and 1s and then reconstruct the array

    • Example: Input array = ['0', '1', '0', '1', '1'], Output array = ['0', '0', '1', '1', '1']

  • Answered by AI
  • Q2. Matrix traversal in spiral Manner
  • Ans. 

    Matrix traversal in spiral manner involves visiting each element of a matrix in a spiral order.

    • Start by traversing the outermost layer of the matrix from top left to top right, then top right to bottom right, bottom right to bottom left, and finally bottom left to top left.

    • Continue this process for the inner layers until all elements are visited.

    • Keep track of the boundaries of the matrix to know when to switch directio

  • Answered by AI

Skills evaluated in this interview

Top Sigmoid Data Engineer Interview Questions and Answers

Q1. Next Greater ElementYou are given an array arr of length N. You have to return a list of integers containing the NGE(next greater element) of each element of the given array. The NGE for an element X is the first greater element on the righ... read more
View answer (5)

Data Engineer Interview Questions asked at other Companies

Q1. Optimal Strategy for a GameYou and your friend Ninjax are playing a game of coins. Ninjax place the 'N' number of coins in a straight line. The rule of the game is as follows: 1. Each coin has a value associated with it. 2. It’s a two-playe... read more
View answer (6)

Get interview-ready with Top Sigmoid Interview Questions

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
-
Result
Selected Selected
Round 1 - Coding Test 

Questions on Trees, Sorting

Round 2 - Technical 

(1 Question)

  • Q1. High Level System Design
  • Ans. 

    High level system design involves creating an overview of the architecture and components of a software system.

    • Identify the main components of the system

    • Define the interactions between components

    • Consider scalability and performance requirements

    • Choose appropriate technologies and frameworks

    • Create a diagram to visualize the system architecture

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Basic HR questions

Skills evaluated in this interview

Lead Software Engineer Interview Questions asked at other Companies

Q1. Square Root with Decimal Precision Problem Statement You are provided with two integers, 'N' and 'D'. Your objective is to determine the square root of the number 'N' with a precision up to 'D' decimal places. This implies that the discrepa... read more
Add answer
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via campus placement at National Institute of Technology (NIT), Rourkela and was interviewed in Jun 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Simple Aptitude questions, Data interpretation and verbal

Round 2 - One-on-one 

(3 Questions)

  • Q1. Basic questions on Data Analytics, Projects mentioned
  • Q2. Code in SQL and python(moderate)
  • Ans. 

    The candidate is asked to code in SQL and Python at a moderate level.

    • Use SQL to query data from databases

    • Use Python to manipulate and analyze data

    • Practice writing SQL queries and Python scripts

  • Answered by AI
  • Q3. Machine Learning

Data Scientist Interview Questions asked at other Companies

Q1. Special Sum of Array Problem Statement Given an array 'arr' containing single-digit integers, your task is to calculate the total sum of all its elements. However, the resulting sum must also be a single-digit number. To achieve this, repea... read more
Add answer
Interview experience
2
Poor
Difficulty level
Easy
Process Duration
More than 8 weeks
Result
Selected Selected

I applied via campus placement at Indian Institute of Technology (IIT), Roorkee and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - Aptitude Test 

Topics advance mathematics and electronics

Interview Preparation Tips

Interview preparation tips for other job seekers - They just opened the form that we need to fill out, but since then, we have not received any response from their side.

Production Graduate Engineer Trainee Interview Questions asked at other Companies

Q1. PRINCIPLE ON WHICH HEAT TRANSFER WORKS (ALL PHASES)
View answer (1)
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
Not Selected
Round 1 - Technical 

(2 Questions)

  • Q1. Valid parentheses
  • Q2. Currying with arrow function
  • Ans. 

    Currying is a technique in functional programming where a function with multiple arguments is transformed into a sequence of nested functions, each taking a single argument.

    • Currying can be achieved using arrow functions in JavaScript.

    • Arrow functions automatically bind 'this' and do not have their own 'this' value.

    • Example: const add = a => b => a + b;

    • Example: const addFive = add(5); const result = addFive(3); // result

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. DFS related problem
  • Q2. Machine coding round

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus more on ds & algo

Skills evaluated in this interview

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray SumGiven an array of numbers, find the maximum sum of any contiguous subarray of the array. For example, given the array [34, -50, 42, 14, -5, 86], the maximum sum would be 137, since we would take elements 42, 14, -5, and ... read more
View answer (39)
Interview experience
1
Bad
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in Aug 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Aptitudes of everything

Round 2 - Coding Test 

Coding test in round 1 only

Interview Preparation Tips

Topics to prepare for Sigmoid Data Science Intern interview:
  • All ML topics and Sql
Interview preparation tips for other job seekers - Don't listen to the HR prepare for everything and certain coding questions

Data Science Intern Interview Questions asked at other Companies

Q1. Rotate Matrix by 90 Degrees Problem Statement Given a square matrix 'MATRIX' of non-negative integers, rotate the matrix by 90 degrees in an anti-clockwise direction using only constant extra space. Input: The first line of input contains a... read more
View answer (1)

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