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

Clear (1)

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 Resume 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 the Duplicate Number Problem Statement Given an integer arra ... 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

I was interviewed in Jun 2017.

Interview Questionnaire 

12 Questions

  • Q1. Write the annotation for controller?
  • Ans. 

    An annotation for controller in software engineering.

    • The annotation for controller is used to define the class as a controller in a software application.

    • It is typically used in frameworks like Spring MVC or ASP.NET MVC.

    • The annotation helps in mapping the incoming requests to the appropriate controller methods.

    • It can also be used to specify the URL path for the controller.

    • Example: @Controller in Spring MVC, [ApiControll

  • Answered by AI
  • Q2. Write the annotation for request mapping?
  • Ans. 

    The annotation for request mapping is used to map HTTP requests to specific methods in a controller class.

    • The annotation is @RequestMapping

    • It can be used at the class level to specify a common base URL for all methods in the class

    • It can also be used at the method level to specify the URL path and HTTP method for a specific method

    • Additional attributes can be used to further customize the mapping, such as specifying requ...

  • Answered by AI
  • Q3. What is front controller from context in spring mvc?
  • Ans. 

    Front controller is a design pattern used in Spring MVC to handle incoming requests and route them to appropriate handlers.

    • Front controller acts as a central point of control for handling requests in Spring MVC.

    • It receives all incoming requests and delegates them to appropriate handlers called controllers.

    • Front controller provides a consistent way to handle requests and perform common tasks like authentication, logging...

  • Answered by AI
  • Q4. Write the css box model?
  • Ans. 

    The CSS box model describes the layout and sizing of elements on a web page.

    • The box model consists of content, padding, border, and margin.

    • Content refers to the actual content of the element, such as text or images.

    • Padding is the space between the content and the border.

    • Border is a line that surrounds the padding and content.

    • Margin is the space outside the border, separating the element from other elements.

    • The width an...

  • Answered by AI
  • Q5. Select all div using jquery
  • Ans. 

    Select all div using jQuery

    • Use the jQuery selector $('div') to select all div elements

    • This will return a jQuery object containing all the selected div elements

    • You can then perform operations on the selected div elements using jQuery methods

  • Answered by AI
  • Q6. Change all ul element to blue background color using jquery
  • Ans. 

    Use jQuery to change the background color of all ul elements to blue.

    • Use the jQuery selector to select all ul elements

    • Use the css() method to change the background color to blue

  • Answered by AI
  • Q7. Change first li element to yellow background color using jquery
  • Ans. 

    Use jQuery to change the background color of the first li element to yellow.

    • Use the :first-child selector to select the first li element

    • Use the css() method to change the background color to yellow

  • Answered by AI
  • Q8. Output of this var arr=[1,2,3,4,5] arr.push(6) arr.unshift(1) arr.pop() arr.shift()
  • Ans. 

    The output of the given code is [1, 2, 3, 4, 5, 6].

    • The 'push' method adds an element to the end of the array.

    • The 'unshift' method adds an element to the beginning of the array.

    • The 'pop' method removes the last element from the array.

    • The 'shift' method removes the first element from the array.

  • Answered by AI
  • Q9. What are the uses of final in java
  • Ans. 

    The 'final' keyword in Java is used to declare constants, prevent method overriding, and ensure thread safety.

    • Final variables cannot be reassigned once initialized

    • Final methods cannot be overridden by subclasses

    • Final classes cannot be extended by other classes

    • Final parameters ensure that they cannot be modified within a method

    • Final fields can be used to achieve thread safety

  • Answered by AI
  • Q10. Public static void getsum(int a,int b){System.out.println("a b method");}public static void getsum(int a,int b,int c){System.out.println("a b c method");}public static void getsum(int a,int ...b){System.o...
  • Ans. 

    The question is about method overloading in Java.

    • Method overloading allows multiple methods with the same name but different parameters.

    • The method to be called is determined at compile-time based on the arguments passed.

    • In the given code, there are three overloaded methods with the same name 'getsum'.

    • The first method takes two integers as arguments.

    • The second method takes three integers as arguments.

    • The third method ta...

  • Answered by AI
  • Q11. Output of this program public static int floating(int x){ return x*floating(x-1); } public static void main(String[] args){ floating(10); }
  • Ans. 

    The program will result in a StackOverflowError due to infinite recursion.

    • The 'floating' method is recursively calling itself without a base case to stop the recursion.

    • Each recursive call multiplies the input parameter by the result of the recursive call with a decremented parameter.

    • This will continue indefinitely until the stack overflows and an error is thrown.

  • Answered by AI
  • Q12. What is the output of this int i=0; int j=10;do{ if(i++ < --j){ } }while(i
  • Ans. 

    The output of the code is 9.

    • The code initializes i as 0 and j as 10.

    • Inside the do-while loop, i is incremented by 1 and j is decremented by 1.

    • The loop continues until i becomes greater than or equal to j.

    • Since i is incremented before the comparison and j is decremented before the comparison, the loop runs 9 times.

    • Therefore, the output is 9.

  • Answered by AI

Interview Preparation Tips

Skills: Javascript, Java Programming, Jquery

Skills evaluated in this interview

I was interviewed before Apr 2021.

Round 1 - Face to Face 

(3 Questions)

Round duration - 60 minutes
Round difficulty - Easy

Technical Interview round with questions on CSS and Jquery mainly.

  • Q1. What is the CSS box model?
  • Ans. 

    The CSS box model is a design and layout concept that defines the structure and sizing of elements on a web page.

    • It consists of content, padding, border, and margin around an element.

    • Content area is where text and images are displayed.

    • Padding is the space between the content and the border.

    • Border is the line that goes around the padding and content.

    • Margin is the space outside the border.

    • Example: div { width: 200px; pad...

  • Answered by AI
  • Q2. How do you select all div elements using jQuery?
  • Ans. 

    To select all div elements using jQuery, use the selector $('div').

    • Use the jQuery selector $('div') to select all div elements on the page.

    • You can also use the find() method to select div elements within a specific parent element.

    • To perform actions on the selected div elements, use jQuery methods like css(), text(), or addClass().

  • Answered by AI
  • Q3. How can you change the background color of all items in JavaScript?
  • Ans. 

    You can change the background color of all items in JavaScript by selecting all elements and setting their background color property.

    • Select all elements using document.querySelectorAll()

    • Loop through the selected elements and set their style.backgroundColor property

    • Example: document.querySelectorAll('.item').forEach(item => item.style.backgroundColor = 'blue');

  • Answered by AI
Round 2 - Face to Face 

(4 Questions)

Round duration - 60 minutes
Round difficulty - Easy

Technical Interview round with questions on Java mainly.

  • Q1. What are the uses of the final keyword in Java?
  • Ans. 

    The final keyword in Java is used to define constants, prevent method overriding, and make a class immutable.

    • Final variables cannot be reassigned once initialized

    • Final methods cannot be overridden in subclasses

    • Final classes cannot be extended

  • Answered by AI
  • Q2. What is the Front Controller in Spring MVC?
  • Ans. 

    Front Controller in Spring MVC is a design pattern that handles all requests and acts as a central point of control.

    • Front Controller is a servlet in Spring MVC that receives all requests and then dispatches them to the appropriate handlers.

    • It helps in centralizing request handling logic, improving code organization and reducing duplication.

    • Front Controller can perform tasks like authentication, logging, exception handl...

  • Answered by AI
  • Q3. What is the annotation for request mapping in Java?
  • Ans. 

    The annotation for request mapping in Java is @RequestMapping.

    • @RequestMapping annotation is used to map web requests to specific handler methods in Spring MVC.

    • It can be applied at class level or method level to specify the URL path that the controller will handle.

    • You can also specify HTTP request methods, headers, parameters, and more using @RequestMapping.

  • Answered by AI
  • Q4. What is the annotation used for a controller in Java?
  • Ans. 

    The annotation used for a controller in Java is @RestController.

    • Used to define a class as a controller in Spring MVC

    • Automatically serializes return objects into JSON/XML responses

    • Equivalent to @Controller + @ResponseBody annotations

  • Answered by AI
Round 3 - HR 

Round duration - 30 minutes
Round difficulty - Easy

This was a typical HR round.

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPATredence Inc. interview preparation:Topics to prepare for the interview - JavaScript, Java Programming, JQuery, DSA, OOPS, System DesignTime required to prepare for the interview - 6 monthsInterview preparation tips for other job seekers

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Final outcome of the interviewSelected

Skills evaluated in this interview

Interview Questionnaire 

1 Question

  • Q1. About informatica and sql

I was interviewed before May 2021.

Round 1 - Coding Test 

(1 Question)

Round duration - 90 minutes
Round difficulty - Easy

  • Q1. 

    Reverse Linked List Problem Statement

    Given a singly linked list of integers, return the head of the reversed linked list.

    Example:

    Initial linked list: 1 -> 2 -> 3 -> 4 -> NULL
    Reversed link...
  • Ans. 

    Reverse a singly linked list of integers and return the head of the reversed linked list.

    • Iterate through the linked list and reverse the pointers to point to the previous node instead of the next node.

    • Use three pointers to keep track of the current, previous, and next nodes while reversing the linked list.

    • Update the head of the reversed linked list as the last node encountered during the reversal process.

  • Answered by AI
Round 2 - Face to Face 

(1 Question)

Round duration - 60 minutes
Round difficulty - Easy

  • Q1. You have a puzzle involving 4 liters of water. Can you describe the details of this puzzle?
Round 3 - Face to Face 

(1 Question)

Round duration - 40 minutes
Round difficulty - Easy

  • Q1. You were given CSS code and asked to debug it to make the functionality work. Can you describe the process you followed and the issues you encountered?
  • Ans. 

    I followed a systematic process to debug CSS code and resolve functionality issues.

    • Reviewed the CSS code to identify any syntax errors or typos

    • Checked for any conflicting styles that may be overriding the desired functionality

    • Used browser developer tools to inspect elements and troubleshoot layout issues

    • Tested different scenarios to pinpoint the exact cause of the problem

    • Made necessary adjustments to the CSS code to fi

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI applied for the job as Software Engineer in BangaloreEligibility criteriaNo CriteriaTredence Analytics interview preparation:Topics to prepare for the interview - Arrays, Strings, Hashing, CSS, NodeJS, BackendTime required to prepare for the interview - 2 monthsInterview preparation tips for other job seekers

Tip 1 : If you are looking for fullstack roles, prepare CSS well
Tip 2 : Prepare 2 pointer Array questions

Application resume tips for other job seekers

Tip 1 : If you have any python or cloud related experience, do put it and make it stand out.
Tip 2 : They would lay more emphasis on the projects, sometimes even more than the interview itself.

Final outcome of the interviewSelected

Skills evaluated in this interview

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

I applied via LinkedIn and was interviewed before Aug 2023. There were 2 interview rounds.

Round 1 - Coding Test 

Online coding test with Sql and python questions

Round 2 - Technical 

(5 Questions)

  • Q1. Details about project and experience
  • Q2. Pyspark and databricks questions
  • Q3. What is Spark context
  • Ans. 

    Spark context is the main entry point for Spark functionality and represents the connection to a Spark cluster.

    • Main entry point for Spark functionality

    • Represents connection to a Spark cluster

    • Used to create RDDs, broadcast variables, and accumulators

  • Answered by AI
  • Q4. What is inheritance
  • Ans. 

    Inheritance is a concept in object-oriented programming where a class can inherit attributes and methods from another class.

    • Allows for code reusability by creating a new class based on an existing class

    • Derived class inherits properties and behaviors of the base class

    • Supports the concept of polymorphism and encapsulation

    • Example: Class 'Car' can inherit from class 'Vehicle' and inherit its attributes like 'color' and met

  • Answered by AI
  • Q5. What is sparkconfig
  • Ans. 

    SparkConfig is a configuration object used in Apache Spark to set various parameters for Spark applications.

    • SparkConfig is used to set properties like application name, master URL, and other Spark settings.

    • It is typically created using SparkConf class in Spark applications.

    • Example: val sparkConf = new SparkConf().setAppName("MyApp").setMaster("local")

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare sql and databricks and you are good to go. Also watch out for comms skills

Skills evaluated in this interview

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

(1 Question)

  • Q1. 2 sum problem on number
Round 2 - Technical 

(1 Question)

  • Q1. Json data manipulation
Round 3 - HR 

(1 Question)

  • Q1. Normal hr question

I was interviewed before Dec 2020.

Round 1 - Coding Test 

(1 Question)

Round duration - 120 minutes
Round difficulty - Easy

After round 1 there was a break of 15 mins and the coding round started.
We had a choice to attempt the exam in R language & SQL or python & sql
I chose python and sql
It had 8 questions 4 python and 4 sql

  • Q1. 

    Longest Common Subsequence Problem Statement

    Given two strings, S and T with respective lengths M and N, your task is to determine the length of their longest common subsequence.

    A subsequence is a seque...

  • Ans. 

    The task is to find the length of the longest common subsequence between two given strings.

    • Use dynamic programming to solve this problem efficiently.

    • Create a 2D array to store the lengths of longest common subsequences of substrings.

    • Iterate through the strings to fill the array and find the length of the longest common subsequence.

    • Example: For strings 'abcde' and 'ace', the longest common subsequence is 'ace' with leng

  • Answered by AI
Round 2 - Video Call 

Round duration - 15 minutes
Round difficulty - Medium

The interview was mostly analytical based and how you approach the round a few technical questions in dbms and oops were also asked.

Round 3 - Video Call 

(1 Question)

Round duration - 20 Minutes
Round difficulty - Medium

Similar to first round
For Shortlists after elimination from first round.

  • Q1. 

    Car Pooling Capacity Problem

    You are a cab driver with a car that initially has 'C' empty seats. The car moves in a straight line towards the forward direction only. Your job is to determine if it is poss...

  • Ans. 

    Determine if it is possible to accommodate all passenger trips within a car's capacity without exceeding it at any point.

    • Iterate through each trip and keep track of the total number of passengers in the car at each point.

    • Check if the total number of passengers exceeds the car capacity at any point.

    • Return 'True' if all trips can be accommodated within the car capacity, otherwise return 'False'.

  • Answered by AI
Round 4 - Video Call 

(1 Question)

Round duration - 20 minutes
Round difficulty - Easy

After two technical round interviews, the last round was a hr interview. The whole process can take up one whole day or more and your interview can be at any time
My process started at 5 pm and ended at 10:30 pm
All the interviewers were very friendly no pressure.

  • Q1. 

    Nth Fibonacci Number Problem Statement

    Calculate the Nth term in the Fibonacci sequence, where the sequence is defined as follows: F(n) = F(n-1) + F(n-2), with initial conditions F(1) = F(2) = 1.

    Input:

    ...
  • Ans. 

    Calculate the Nth Fibonacci number efficiently using dynamic programming.

    • Use dynamic programming to store previously calculated Fibonacci numbers to avoid redundant calculations.

    • Start with base cases F(1) and F(2) as 1, then iterate to calculate subsequent Fibonacci numbers.

    • Time complexity can be optimized to O(N) using dynamic programming.

    • Example: For N = 5, the 5th Fibonacci number is 5.

  • Answered by AI

Interview Preparation Tips

Eligibility criteriaCgpa was initially 6 and above but was later on cut to 7 and above due to high no of applicationsFractal Analytics interview preparation:Topics to prepare for the interview - Machine learning, dbms, sql, oops, python,Time required to prepare for the interview - 2 monthsInterview preparation tips for other job seekers

Tip 1 : Be fast ans accurate on your aptitude amd verbal tests. 
Tip 2 : In coding round, depending on the difficulty of the questions the time in which you complete solving them should decrease .If almost everyone can solve them timming comes in to the equation for shortlisting
Tip 3 : While submitting your resume, please be honest about the projects you have done and do not bluff about it because in the interview when you ate drilled abt it, they can catch you easily.
Tip 4 : be confident and answer every question to the best of your ability and if u don't know something, tell them you don't know abt it .

Application resume tips for other job seekers

Tip 1 : Research the company and put the most revalent projects and skills that the company os looking for specifically
Tip 2 : Do not bluff or lie on your resume. It show's during the interview.

Final outcome of the interviewSelected

Skills evaluated in this interview

Contribute & help others!
anonymous
You can choose to be anonymous

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

Recently Viewed

DESIGNATION

SALARIES

Sigmoid

REVIEWS

Celebal Technologies

No Reviews

SALARIES

JPMorgan Chase & Co.

INTERVIEWS

Sigmoid

No Interviews

SALARIES

JPMorgan Chase & Co.

INTERVIEWS

Sigmoid

No Interviews

LIST OF COMPANIES

Discover companies

Find best workplace

REVIEWS

Celebal Technologies

No Reviews

SALARIES

JPMorgan Chase & Co.

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 19 salaries
₹10 L/yr - ₹19 L/yr
80% 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
86 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Data Scientist
49 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Data Engineer
49 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Data Scientist
44 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Development Engineer
37 salaries
unlock blur

₹0 L/yr - ₹0 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