Upload Button Icon Add office photos

Signify

Compare button icon Compare button icon Compare

Filter interviews by

Signify Software Development Engineer Interview Questions and Answers

Updated 6 Feb 2025

Signify Software Development Engineer Interview Experiences

2 interviews found

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Set a bit, make function pointers, etc
  • Ans. 

    Setting a bit and using function pointers in software development.

    • To set a bit, use bitwise OR operator: num |= 1 << bitPosition

    • To create function pointers, declare a pointer variable and assign the address of the function to it

    • Example: int num = 0; num |= 1 << 2; // Sets the 3rd bit

    • Example: void (*funcPtr)() = &someFunction; // Function pointer to 'someFunction'

  • Answered by AI
  • Q2. Deadlock,rtos, ipc, etc

I applied via Recruitment Consulltant and was interviewed in Sep 2021. There were 5 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Data structures and algorithms based scenarios and hackerrank kinda coding questions
Round 2 - Technical 

(1 Question)

  • Q1. Multi threading, performance tuning,and cloud based questions
Round 3 - HR 

(4 Questions)

  • Q1. Share details of your previous job.
  • Q2. Why are you looking for a change?
  • Ans. 

    I'm seeking new challenges and opportunities for growth that align with my career goals and aspirations.

    • Desire for professional growth: I'm looking to expand my skill set and take on more responsibilities, like leading projects.

    • Seeking a better cultural fit: I want to work in an environment that values collaboration and innovation, similar to my previous team.

    • Interest in new technologies: I'm excited about the opportun...

  • Answered by AI
  • Q3. What are your strengths and weaknesses?
  • Q4. Why should we hire you?
Round 4 - One-on-one 

(1 Question)

  • Q1. Discussion on my understanding about the lighting industry and vision of the organisation.
Round 5 - HR 

(2 Questions)

  • Q1. Share details of your previous job.
  • Q2. What are your salary expectations?

Interview Preparation Tips

Interview preparation tips for other job seekers - get a deeper knowledge on the technologies you have worked in past. showcase how quick you can learn and adapt to new trends in the software development division with IoT solutions in mind

Software Development Engineer Interview Questions Asked at Other Companies

asked in Amazon
Q1. Given an acyclic graph of a city where each edge represents a roa ... read more
asked in Hike
Q2. Given a screen with a button and a full-screen image view, descri ... read more
asked in Hike
Q3. You have an application that displays a list of contacts. The nam ... read more
asked in Amazon
Q4. Given an m * n matrix filled with '0's and 'x's with two position ... read more
asked in Samsung
Q5. There are 1000 wine bottles. One of the bottles contains poisoned ... read more

Top trending discussions

View All
Interview Tips & Stories
5d (edited)
a team lead
Why are women still asked such personal questions in interview?
I recently went for an interview… and honestly, m still trying to process what just happened. Instead of being asked about my skills, experience, or how I could add value to the company… the questions took a totally unexpected turn. The interviewer started asking things like When are you getting married? Are you engaged? And m sure, if I had said I was married, the next question would’ve been How long have you been married? What does my personal life have to do with the job m applying for? This is where I felt the gender discrimination hit hard. These types of questions are so casually thrown at women during interviews but are they ever asked to men? No one asks male candidates if they’re planning a wedding or how old their kids are. So why is it okay to ask women? Can we please stop normalising this kind of behaviour in interviews? Our careers shouldn’t be judged by our relationship status. Period.
Got a question about Signify?
Ask anonymously on communities.

Interview questions from similar companies

I appeared for an interview in Aug 2016.

Interview Questionnaire 

2 Questions

  • Q1. Questions related to my project, questions on binary tree, questions from OS (like paging and scheduling). Interviewer also asked about competitive coding
  • Q2. Formal questions regarding my background, family members etc

Interview Preparation Tips

Round: Test
Duration: 1 hour

Skills: General Coding And Problem Solving, Puzzle Solving Capability
College Name: NIT Jamshedpur

I applied via Campus Placement and was interviewed in Dec 2016. There were 5 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Basic question on my inclination of work, and my family background.

Interview Preparation Tips

Round: Test
Experience: There was a np complete problem given. Brute force solution worked
Duration: 3 hours
Total Questions: 1

College Name: IIT Madras

I appeared for an interview in Jun 2016.

Interview Preparation Tips

Round: Test
Experience: We had to code in the given duration. The question was a simple dynamic programming one. But the catch was that we could test our solution only a given number of times.
Tips: Make sure you're strong in your coding basics and have enough self confidence.
Duration: 3 hours
Total Questions: 1

Round: Technical Interview
Experience: The tech round was basically on the resume. There were a few questions about the projects I had done.
Tips: Know about everything you've written in your resume. Don't write anything that you're not very sure of.

Round: HR Interview
Experience: Questions were about my work and achievements in college and future plans.
Tips: Talk freely and don't be nervous. Don't reveal any future study plans to the HR!

College Name: Nitk surathkal

I appeared for an interview in Jan 2017.

Interview Questionnaire 

6 Questions

  • Q1. You are given a thread and you are unlocked in a room.Measure the height of the room using string.
  • Ans. 

    Measure the height of a room using a thread.

    • Tie one end of the thread to a known height point, such as a door handle.

    • Hold the other end of the thread and let it hang down to the floor.

    • Mark the point where the thread touches the floor.

    • Repeat the process at different points in the room to get multiple measurements.

    • Take the average of the measurements to estimate the height of the room.

  • Answered by AI
  • Q2. Process Scheduling in operating system
  • Ans. 

    Process scheduling is the method by which the operating system decides the order in which processes are executed.

    • Process scheduling determines the fairness and efficiency of resource allocation.

    • Different scheduling algorithms prioritize different factors such as CPU utilization, response time, and throughput.

    • Examples of scheduling algorithms include First-Come, First-Served (FCFS), Round Robin, and Shortest Job Next (S...

  • Answered by AI
  • Q3. Print linked list in reverse order
  • Ans. 

    To print a linked list in reverse order, we can use recursion or a stack data structure.

    • Recursion: Traverse the linked list recursively until the end, then print the current node.

    • Stack: Traverse the linked list and push each node onto a stack. Then pop and print the nodes from the stack.

  • Answered by AI
  • Q4. Dijkstra algorithm
  • Ans. 

    Dijkstra algorithm is a graph search algorithm that finds the shortest path between nodes in a weighted graph.

    • Dijkstra algorithm uses a priority queue to select the node with the smallest distance from the source node.

    • It maintains a distance array to keep track of the shortest distance from the source node to each node in the graph.

    • The algorithm iteratively selects the node with the smallest distance and updates the di...

  • Answered by AI
  • Q5. Bankers algorithm
  • Ans. 

    Banker's algorithm is a resource allocation and deadlock avoidance algorithm used in operating systems.

    • Banker's algorithm is used to prevent deadlock in a system with multiple processes and resources.

    • It works by simulating the allocation of resources to processes and checking if it leads to a safe state.

    • The algorithm considers the current allocation, maximum needs, and available resources to make decisions.

    • If a request...

  • Answered by AI
  • Q6. Deadlock in operating system
  • Ans. 

    Deadlock is a situation in which two or more processes are unable to proceed because each is waiting for the other to release a resource.

    • Deadlock occurs when two or more processes are stuck in a circular wait.

    • Four necessary conditions for deadlock are mutual exclusion, hold and wait, no preemption, and circular wait.

    • Examples of deadlock prevention techniques include resource allocation graphs and bankers' algorithm.

    • Dea...

  • Answered by AI

Interview Preparation Tips

Skills: Coding Skills And Knowledge On Data Structures, Operating Systems, Aptitude
College Name: LNMIIT , JAIPUR

Skills evaluated in this interview

Interview Questionnaire 

4 Questions

  • Q1. Mtech Thesis-based
  • Q2. Speech Recognition/ Signal Processing
  • Q3. Introductory questions
  • Q4. Don’t you think you should go for MBA than job after your graduation because it increases your salary package by leaps and bounds?
  • Ans. 

    Choosing between an MBA and a job post-graduation depends on career goals, financial implications, and industry demands.

    • An MBA can lead to higher salary potential, especially in management roles. For example, MBA graduates often earn 20-30% more than their peers.

    • Immediate work experience can provide practical skills and networking opportunities that an MBA may not offer right away.

    • Consider the industry: tech companies ...

  • Answered by AI

Interview Preparation Tips

Round: Resume Shortlist
Experience: Initial criterion for shortlisting is of CPI(>7).

Round: Test
Experience: There were two written tests: Technical and Aptitude. This year technical test was not organized due to some reasons. In technical for Bangalore Center questions were based on C language and data structures.
Duration: 60+60 minutes
Total Questions: 50+50

Round: Technical Interview
Experience: Panel of 1 person and lasted 10-15 minutes.

Round: HR Interview
Experience: Panel of 1 person and lasted for 10 minutes.

General Tips: • Improve your aptitude skills
• Try to solve puzzles ( Shakuntala Devi maths puzzles )
Skills: Speech Signal Processing , Image Processing , Statistical Signal Processing , Mathematical methods in Signal Processing
College Name: IIT- Kanpur
Are these interview questions helpful?

Interview Questionnaire 

1 Question

  • Q1. Which area would you concentrate on if you were the CEO of the company?
  • Ans. 

    I would concentrate on improving the company's software development process.

    • Implementing agile methodologies

    • Investing in automation tools

    • Encouraging continuous learning and development

    • Fostering a culture of innovation

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: One hour written test.
Objective questions related to C/C++/OS + 1 coding question .
Tips: Basic C/C++ reference material should be enough.
Revise basic OS, Networks, Data Structures and Algorithms.
Duration: 60 minutes

Round: Interview
Experience: Two Technical Interviews (20 minutes each)
 Questions on your B.Tech project, M.Tech project, Favorite subject, Programming ability.
 Discussion about the company, expectations from the company, future opportunities.
 Too much emphasis on the work done by you before. They require every explanation in
detail.
 If your B.Tech and M.Tech projects are in the field which company is looking forward for, it
is an added bonus.
Tips: Questions are mostly related to BTP as well as other work done in the Department.
 Prepare a compendium of the topics expected to prop up during interview.
 Revision of basic fundamentals of the field.
 Short report of the B.Tech as well as M.Tech project.
 Refer to placement sites for some tips.

General Tips: For non-core companies&#44; only puzzle solving skills and accuracy are needed to be
sharpened. So practice standard interview puzzles available on net. Also revise of topics in
probability and permutation/combination.
College Name: IIT Madras

Interview Questionnaire 

3 Questions

  • Q1. About Projects
  • Q2. About Research Work
  • Q3. Straight forward questions relating to project experiences.

Interview Preparation Tips

Round: Resume Shortlist
Experience: CGPA-9.55

Round: Test
Experience: Basic C Programming and Algorithms questions
Tips: General C programming knowledge is required. Nothing specific for the test
Duration: 60 minutes

Round: Technical Interview
Experience: Subjects tested: Signal Processing, Speech Technology, and Machine Learning

General Tips: Mostly they looked for Research experience&#44; Project works and a good knowledge of Speech
Technology, Signal processing and Machine Learning and maybe CGPA. They were looking for work related to Speech Technology, Signal processing and Machine Learning. I had my BTP and several projects related to these subjects.
Skills: Signal Processing, Speech Technology, Machine Learning
College Name: IIT Madras

Interview Questionnaire 

3 Questions

  • Q1. Elementary coding questions
  • Q2. Wireless communication
  • Q3. Puzzles-related questions

Interview Preparation Tips

Round: Test
Experience: There was an aptitude test on Day 4 and the interviews on day 5.

Round: HR Interview
Experience: In my HR interview I was offered the job and they elaborated on their packages and job description.

General Tips: Overall just doing the basic questions of ANSI C and solving elementary coding problems can take you through.
College Name: IIT KANPUR

Signify Interview FAQs

How many rounds are there in Signify Software Development Engineer interview?
Signify interview process usually has 3 rounds. The most common rounds in the Signify interview process are Technical, HR and One-on-one Round.
What are the top questions asked in Signify Software Development Engineer interview?

Some of the top questions asked at the Signify Software Development Engineer interview -

  1. Set a bit, make function pointers, ...read more
  2. data structures and algorithms based scenarios and hackerrank kinda coding ques...read more
  3. multi threading, performance tuning,and cloud based questi...read more
What are the most common questions asked in Signify Software Development Engineer HR round?

The most common HR questions asked in Signify Software Development Engineer interview are -

  1. Why are you looking for a chan...read more
  2. What are your strengths and weakness...read more
  3. What are your salary expectatio...read more

Tell us how to improve this page.

Overall Interview Experience Rating

3.5/5

based on 2 interview experiences

Interview Questions from Similar Companies

Dell Interview Questions
3.9
 • 405 Interviews
HARMAN Interview Questions
3.8
 • 277 Interviews
OPPO Interview Questions
4.0
 • 230 Interviews
LG Electronics Interview Questions
3.9
 • 228 Interviews
vivo Interview Questions
4.1
 • 209 Interviews
Philips Interview Questions
3.8
 • 169 Interviews
Apple Interview Questions
4.3
 • 150 Interviews
Voltas Interview Questions
4.0
 • 149 Interviews
Samsung Research Interview Questions
3.2
 • 140 Interviews
View all
Signify Software Development Engineer Salary
based on 17 salaries
₹12.1 L/yr - ₹33.5 L/yr
42% more than the average Software Development Engineer Salary in India
View more details

Signify Software Development Engineer Reviews and Ratings

based on 2 reviews

2.4/5

Rating in categories

1.9

Skill development

2.4

Work-life balance

2.5

Salary

2.9

Job security

2.9

Company culture

1.9

Promotions

1.9

Work satisfaction

Explore 2 Reviews and Ratings
Development Engineer
216 salaries
unlock blur

₹13 L/yr - ₹29.8 L/yr

Sales Specialist
212 salaries
unlock blur

₹10.4 L/yr - ₹18 L/yr

Assistant Manager
79 salaries
unlock blur

₹8.3 L/yr - ₹14.8 L/yr

Sales Executive
73 salaries
unlock blur

₹2.2 L/yr - ₹5 L/yr

Area Sales Manager
71 salaries
unlock blur

₹8.2 L/yr - ₹29 L/yr

Explore more salaries
Compare Signify with

vivo

4.1
Compare

OPPO

4.0
Compare

Dell

3.9
Compare

LG Electronics

3.9
Compare
write
Share an Interview