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 107 Reviews

Filter interviews by

Sigmoid Sde1 Interview Questions and Answers

Updated 18 Dec 2024

Sigmoid Sde1 Interview Experiences

4 interviews found

Sde1 Interview Questions & Answers

user image Anonymous

posted on 18 Dec 2024

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

I applied via Job Portal and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - Coding Test 

Some python qustions on list, dict, array, string. SQL questions on window function.

Interview Preparation Tips

Interview preparation tips for other job seekers - can clear it for data engineering.

Sde1 Interview Questions & Answers

user image Anonymous

posted on 24 Apr 2024

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

I applied via Recruitment Consulltant and was interviewed in Mar 2024. There were 4 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. 2 java coding questions
Round 2 - Technical 

(1 Question)

  • Q1. 2 linked list questions
Round 3 - Behavioral 

(1 Question)

  • Q1. General questions
Round 4 - HR 

(1 Question)

  • Q1. Project and salary

Sde1 Interview Questions Asked at Other Companies

Q1. DSA and Language Questions: 1. Difference between Arrays and Arra ... read more
asked in Park Plus
Q2. 1. What is a doubly-linked list? And real-world applications.
asked in Amazon
Q3. pid ={3,5,0,1} ppid ={5,4,2,2} process id(pid) ppid=parent proces ... read more
Q4. Given one point and circle how will you find if it's inside circl ... read more
asked in Amazon
Q5. N queen problem with problem statement and dry running of code wi ... read more

Sde1 Interview Questions & Answers

user image Mahalakshmi B S

posted on 27 Feb 2024

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

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

Round 1 - Coding Test 

Segregate 0's and 1's in an array
Anagrams of two string using Hashmap

Round 2 - Technical 

(4 Questions)

  • Q1. NextGreater element in array using Stack(can find on leetcode)
  • Ans. 

    Using a stack to find the next greater element in an array of strings.

    • Iterate through the array from right to left.

    • Push elements onto the stack and compare with the top element to find the next greater element.

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

  • Answered by AI
  • Q2. Reverse LinkedList
  • Q3. Few basics of Java
  • Q4. Previous project

Interview Preparation Tips

Topics to prepare for Sigmoid Sde1 interview:
  • DSA
Interview preparation tips for other job seekers - DSA is most important

Skills evaluated in this interview

Sde1 Interview Questions & Answers

user image Anonymous

posted on 10 Sep 2024

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Medium-level DSA question

Sigmoid interview questions for designations

 Software Developer

 (5)

 Data Engineer

 (5)

 Software Development Engineer II

 (5)

 Software Engineer

 (3)

 Senior Data Engineer

 (2)

 Devops Engineer

 (2)

 Software Development Engineer 1

 (1)

 Associate Software Engineer

 (1)

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
2
Poor
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Technical 

(2 Questions)

  • Q1. What is difference between function and stored procedure
  • Ans. 

    Functions return a single value, while stored procedures can perform multiple operations and return multiple values.

    • Functions return a single value, while stored procedures can return multiple values.

    • Functions are called in SQL statements, while stored procedures are called using EXECUTE statement.

    • Functions cannot have output parameters, while stored procedures can have output parameters.

    • Functions cannot modify server ...

  • Answered by AI
  • Q2. How to implement custom exception in MVC
  • Ans. 

    Custom exceptions can be implemented in MVC by creating a new class that inherits from Exception class.

    • Create a new class that inherits from Exception class

    • Override the constructor to pass a custom message to the base Exception class

    • Throw the custom exception in the MVC controller or service layer

  • Answered by AI

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

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

I applied via Naukri.com and was interviewed in Mar 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Explain fail fast and fail safe iterator in Java
  • Ans. 

    Fail fast iterator throws ConcurrentModificationException if the collection is modified while iterating. Fail safe iterator does not throw exception but works on clone of collection.

    • Fail fast iterator checks for modification during iteration and throws ConcurrentModificationException if found.

    • Fail safe iterator works on clone of collection and does not throw exception if collection is modified.

    • Example: ArrayList iterat...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Nielsen Software Engineer interview:
  • Java
  • Cloud

Skills evaluated in this interview

Sigmoid Interview FAQs

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

Some of the top questions asked at the Sigmoid Sde1 interview -

  1. NextGreater element in array using Stack(can find on leetco...read more
  2. 2 java coding questi...read more
  3. 2 linked list questi...read more

Tell us how to improve this page.

Sigmoid Sde1 Interview Process

based on 4 interviews

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

Mu Sigma Interview Questions
2.6
 • 226 Interviews
Tiger Analytics Interview Questions
3.7
 • 219 Interviews
Fractal Analytics Interview Questions
4.0
 • 204 Interviews
Crisil Interview Questions
3.7
 • 183 Interviews
Indegene Interview Questions
3.4
 • 150 Interviews
Tredence Interview Questions
3.6
 • 122 Interviews
Nielsen Interview Questions
3.7
 • 116 Interviews
Axtria Interview Questions
3.0
 • 114 Interviews
Kantar Interview Questions
3.5
 • 105 Interviews
View all
Sigmoid Sde1 Salary
based on 22 salaries
₹12 L/yr - ₹18.2 L/yr
29% less than the average Sde1 Salary in India
View more details

Sigmoid Sde1 Reviews and Ratings

based on 2 reviews

3.8/5

Rating in categories

4.5

Skill development

4.6

Work-life balance

4.0

Salary

4.0

Job security

4.6

Company culture

4.0

Promotions

3.8

Work satisfaction

Explore 2 Reviews and Ratings
Software Development Engineer II
80 salaries
unlock blur

₹14 L/yr - ₹23 L/yr

Data Engineer
47 salaries
unlock blur

₹8.5 L/yr - ₹25 L/yr

Data Scientist
45 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.6
Compare

Tiger Analytics

3.7
Compare

LatentView Analytics

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