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 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
Q3. Tell me something about yourself. Define encapsulation. What is i ... read more
asked in Paytm
Q4. Puzzle : 100 people are standing in a circle .each one is allowed ... read more
asked in TCS
Q5. Find the Duplicate Number Problem Statement Given an integer arra ... 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

I applied via Campus Placement and was interviewed before Nov 2021. 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 

There are 30 basic aptitude question in 30 minutes

Round 3 - Coding Test 

3 coding question 2 were easy and 1 was of medium level

Interview Preparation Tips

Interview preparation tips for other job seekers - i was not selected in HR round . they select only two girls out 15 students

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

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 Sep 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 - Technical 

(2 Questions)

  • Q1. I was interviewed for 2yr experience. Normal Core java and basic sql question.
  • Q2. Oops concept. Collections. Abstract class and interface. Sql procedures and functions Sql basic query
Round 3 - Behavioral 

(2 Questions)

  • Q1. Questions related to the projects worked till date. Explain your project. And counter question on your project.
  • Q2. How many projects have you worked on? Explain each in short.

Interview Preparation Tips

Interview preparation tips for other job seekers - Mainly focus on your communication and be detailed about project.
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed before Aug 2022. There were 5 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 - Coding Test 

They will prove some static design template image need to conver in responsive HTML5 code they will prove some images related to the template provided

Round 3 - Technical 

(2 Questions)

  • Q1. Questions on responsive design device resolutions size and some js basic questions
  • Q2. Sudo element in css iPad and desktop screen resolution Javascript elements Difference between dot &# class in css How to declare and define class in css
  • Ans. 

    sudo element in CSS allows styling of elements based on their parent element

    • sudo element in CSS is used to select elements based on their parent element

    • It is denoted by the > symbol

    • Example: div > p { color: red; } selects all <p> elements that are direct children of <div> elements

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

(1 Question)

  • Q1. About your qualifications and last company designation role package
Round 5 - Technical 

(2 Questions)

  • Q1. How to add internal and external css in html code Difference between HTML5 & HTML
  • Ans. 

    Internal CSS is added within the <style> tag in the <head> section of HTML, while external CSS is linked using the <link> tag.

    • Internal CSS is added within the <style> tag in the <head> section of HTML

    • External CSS is linked using the <link> tag with the 'rel' attribute set to 'stylesheet' and the 'href' attribute pointing to the CSS file

    • Example: <style> body { background-color: ...

  • Answered by AI
  • Q2. Difference between Css & SAAS
  • Ans. 

    CSS is a styling language used to style web pages, while SASS is a preprocessor scripting language that is interpreted into CSS.

    • CSS is a styling language used to describe the look and formatting of a document written in HTML.

    • SASS is a preprocessor scripting language that is interpreted into CSS.

    • SASS allows for variables, nesting, and mixins to be used in the stylesheet, making it more efficient and maintainable.

    • CSS is ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - About your salary discussion

Skills evaluated in this interview

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

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.

Sigmoid Software Engineer Interview Process

based on 1 interview

Interview experience

2
  
Poor
View more
Sigmoid Software Engineer Salary
based on 21 salaries
₹10 L/yr - ₹19 L/yr
81% 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

2.6

Job security

1.5

Company culture

1.0

Promotions

1.5

Work satisfaction

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

₹15 L/yr - ₹23 L/yr

Data Engineer
63 salaries
unlock blur

₹6.5 L/yr - ₹25 L/yr

Data Scientist
58 salaries
unlock blur

₹7.2 L/yr - ₹24 L/yr

Software Development Engineer
42 salaries
unlock blur

₹13.2 L/yr - ₹19.4 L/yr

Senior Data Scientist
41 salaries
unlock blur

₹15 L/yr - ₹28.9 L/yr

Explore more salaries
Compare Sigmoid with

Crisil

3.6
Compare

Indegene

3.4
Compare

Kantar

3.5
Compare

Acuity Knowledge Partners

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