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
3.3

based on 104 Reviews

Filter interviews by

Sigmoid Software Engineer Interview Questions and Answers

Updated 25 Nov 2024

Sigmoid Software Engineer Interview Experiences

3 interviews found

Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

1 coding question, and basic MCQ

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 

Two easy questions two wasy questions two easy questions two easy questions

Round 3 - Technical 

(2 Questions)

  • Q1. Technical interviews was very easy techijcal interviews was very easy very easy very easy
  • Q2. Interviews was conducted in advance of a news conference in the United Kingdom and the European government on Tuesday

Interview Preparation Tips

Interview preparation tips for other job seekers - Ghar was the second man killed by an twowwywiwywuw The new rules would be similar y

Software Engineer Interview Questions Asked at Other Companies

asked in Qualcomm
Q1. Bridge and torch problem : Four people come to a river in the nig ... read more
asked in Capgemini
Q2. In a dark room,there is a box of 18 white and 5 black gloves. You ... read more
asked in TCS
Q3. Find DuplicateYou have been given an integer array/list(ARR) of s ... read more
Q4. Tell me something about yourself. Define encapsulation. What is i ... read more
asked in Paytm
Q5. Puzzle : 100 people are standing in a circle .each one is allowed ... read more

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

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 - One-on-one 

(1 Question)

  • Q1. Basic Form Validation on React Js but on a platform which doesn't have syntax highlighting. Expected best coding standards to be followed.
Round 2 - One-on-one 

(1 Question)

  • Q1. React Js and JavaScript questions
Round 3 - Behavioral 

(1 Question)

  • Q1. Technical questions based on situations.

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep your foundations strong on js, react js.
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

Software Engineer Interview Questions & Answers

Kantar user image K VENKATA SAI DEEPAK

posted on 14 May 2024

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

I was interviewed in Apr 2024.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Basics of sql and some coding questions
  • Q2. Data structures
Round 2 - Technical 

(1 Question)

  • Q1. Putin arrays strings

I applied via Naukri.com and was interviewed in Aug 2022. There were 2 interview rounds.

Round 1 - Coding Test 

Topics on python,sql and hands on coding questions

Round 2 - Technical 

(2 Questions)

  • Q1. Based on resume, project discussion and hands on coding
  • Q2. Fibonacci series, other basic coding questions

Interview Preparation Tips

Interview preparation tips for other job seekers - practice more hands on and you want to good about your project
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before Mar 2022. There were 4 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Coding test on sql and logical programming
Round 2 - Technical 

(1 Question)

  • Q1. Coding on sql and tsql
Round 3 - One-on-one 

(1 Question)

  • Q1. Manager round, general discussion
Round 4 - HR 

(1 Question)

  • Q1. Company benefits and Salary discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - Good luck with new opportunities and only focus on learning.

Sigmoid Interview FAQs

How many rounds are there in Sigmoid Software Engineer interview?
Sigmoid interview process usually has 2 rounds. The most common rounds in the Sigmoid interview process are Coding Test, Resume Shortlist and Technical.
What are the top questions asked in Sigmoid Software Engineer interview?

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

  1. Find k min elements in given arr...read more
  2. Find that given tree is BST or n...read more
  3. Find pair in BST with given ...read more

Tell us how to improve this page.

People are getting interviews through

based on 1 Sigmoid interview
Referral
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.
Sigmoid Software Engineer Salary
based on 16 salaries
₹10 L/yr - ₹19 L/yr
77% more than the average Software Engineer Salary in India
View more details

Sigmoid Software Engineer Reviews and Ratings

based on 3 reviews

2.1/5

Rating in categories

1.5

Skill development

2.1

Work-Life balance

1.5

Salary & Benefits

2.6

Job Security

1.5

Company culture

1.0

Promotions/Appraisal

1.5

Work Satisfaction

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

₹14 L/yr - ₹24 L/yr

Data Engineer
45 salaries
unlock blur

₹8.5 L/yr - ₹25 L/yr

Data Scientist
44 salaries
unlock blur

₹10.5 L/yr - ₹22.5 L/yr

Senior Data Scientist
38 salaries
unlock blur

₹15 L/yr - ₹28 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.7
Compare

Tiger Analytics

3.7
Compare

LatentView Analytics

3.7
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview