Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Synopsys Team. If you also belong to the team, you can get access from here

Synopsys Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Synopsys Software Engineer Interview Questions and Answers

Updated 29 Mar 2025

11 Interview questions

A Software Engineer was asked 9mo ago
Q. Write a program to identify if a number is positive, negative, or zero.
Ans. 

Identify if a number is positive, negative, or zero

  • Check if the number is greater than 0 to determine if it is positive

  • Check if the number is less than 0 to determine if it is negative

  • If the number is neither greater nor less than 0, it is zero

A Software Engineer was asked
Q. Where should const pointers be declared?
Ans. 

Const pointers should be declared in the same scope as the variable they point to.

  • Declaring const pointers in the same scope as the variable they point to ensures that the pointer cannot be used to modify the variable.

  • If the pointer is only used within a function, it should be declared within that function.

  • If the pointer is used across multiple functions, it should be declared in a header file or at the top of the...

Software Engineer Interview Questions Asked at Other Companies

asked in Qualcomm
Q1. Four people need to cross a bridge at night with only one torch t ... read more
asked in Capgemini
Q2. In a dark room, there is a box of 18 white and 5 black gloves. Yo ... 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
A Software Engineer was asked
Q. What are the differences between references and pointers?
Ans. 

References and pointers are both used to refer to memory locations, but references cannot be null and cannot be reseated.

  • Pointers can be null or uninitialized

  • Pointers can be reseated to point to a different memory location

  • References are automatically dereferenced

  • References cannot be used with arrays

  • Pointers can be used with arrays

A Software Engineer was asked
Q. Explain the purpose and implementation of a copy constructor when dealing with pointers.
Ans. 

Copy constructor with pointers creates a new object by copying the values of the existing object's pointers.

  • Copy constructor is used to create a new object from an existing object.

  • Pointers in the new object point to the same memory locations as the original object.

  • Deep copy should be used to avoid shallow copy issues.

A Software Engineer was asked
Q. What are the differences between new and malloc?
Ans. 

new and malloc are used for dynamic memory allocation in C++ and C respectively.

  • new is an operator in C++ while malloc is a function in C.

  • new automatically calls the constructor while malloc does not.

  • new returns a pointer to the object while malloc returns a void pointer.

  • new throws an exception if allocation fails while malloc returns NULL.

  • new can be overloaded while malloc cannot be.

  • new and delete are used togeth...

A Software Engineer was asked
Q. When is it necessary to use references?
Ans. 

References are necessary when passing large objects to functions or when returning objects from functions.

  • When passing large objects to functions

  • When returning objects from functions

  • When working with complex data structures

  • When implementing operator overloading

  • When working with polymorphism

A Software Engineer was asked
Q. How many points are required to define a rectangle?
Ans. 

At least 4 points are required to draw a rectangle.

  • A rectangle has 4 sides and 4 corners, so at least 4 points are needed to define those corners.

  • The points must be arranged in a specific order to form a closed shape with 4 sides.

  • Additional points can be used to add details or modify the shape of the rectangle.

  • The number of points required may vary depending on the software or tool used to draw the rectangle.

Are these interview questions helpful?
A Software Engineer was asked
Q. Given the dimensions of a larger rectangle and a smaller rectangle, derive a formula to calculate how many smaller rectangles can fit into the larger rectangle.
Ans. 

Derive a formula to determine how many smaller rectangles fit into a bigger rectangle given their dimensions.

  • Calculate the number of times the smaller rectangle can fit into the bigger rectangle horizontally and vertically

  • Divide the width of the bigger rectangle by the width of the smaller rectangle to get the horizontal count

  • Divide the height of the bigger rectangle by the height of the smaller rectangle to get t...

A Software Engineer was asked
Q. Given a random number as input, write a program to detect its data type (int or float) without using the sizeof function.
Ans. 

This program detects if a number is an integer or a float based on its input format.

  • Use input() to get user input as a string.

  • Check if the string contains a decimal point to identify floats.

  • Use str.isdigit() to check if the string represents an integer.

  • Example: '123' is int, '123.45' is float.

A Software Engineer was asked
Q. What will be the new coordinates of a rectangle points if rectangle length and breadth is scaled and write a program to calculate the coordinates of corner points of scaled rectangle
Ans. 

Answering how to calculate new coordinates of a scaled rectangle and providing a program for it.

  • To calculate new coordinates, multiply the original coordinates by the scaling factor

  • Scaling factor can be calculated by dividing the new length/breadth by the original length/breadth

  • Program can take input of original coordinates, scaling factor, and output new coordinates

  • Example: Original coordinates: (0,0), (0,5), (5,...

Synopsys Software Engineer Interview Experiences

4 interviews found

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. General behavioral and situational questions about team members
Round 2 - Technical 

(1 Question)

  • Q1. Identify if the number is positive, negative or zero
  • Ans. 

    Identify if a number is positive, negative, or zero

    • Check if the number is greater than 0 to determine if it is positive

    • Check if the number is less than 0 to determine if it is negative

    • If the number is neither greater nor less than 0, it is zero

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I appeared for an interview in Sep 2024, where I was asked the following questions.

  • Q1. Two sum ( via codility)
  • Q2. String anagram based

I applied via LinkedIn and was interviewed in Jun 2021. There was 1 interview round.

Interview Questionnaire 

6 Questions

  • Q1. References vs pointers
  • Ans. 

    References and pointers are both used to refer to memory locations, but references cannot be null and cannot be reseated.

    • Pointers can be null or uninitialized

    • Pointers can be reseated to point to a different memory location

    • References are automatically dereferenced

    • References cannot be used with arrays

    • Pointers can be used with arrays

  • Answered by AI
  • Q2. Where is it necessary to use references
  • Ans. 

    References are necessary when passing large objects to functions or when returning objects from functions.

    • When passing large objects to functions

    • When returning objects from functions

    • When working with complex data structures

    • When implementing operator overloading

    • When working with polymorphism

  • Answered by AI
  • Q3. Const pointers
  • Q4. Where to declare const pointers
  • Ans. 

    Const pointers should be declared in the same scope as the variable they point to.

    • Declaring const pointers in the same scope as the variable they point to ensures that the pointer cannot be used to modify the variable.

    • If the pointer is only used within a function, it should be declared within that function.

    • If the pointer is used across multiple functions, it should be declared in a header file or at the top of the sour...

  • Answered by AI
  • Q5. Copy constructor with pointers
  • Ans. 

    Copy constructor with pointers creates a new object by copying the values of the existing object's pointers.

    • Copy constructor is used to create a new object from an existing object.

    • Pointers in the new object point to the same memory locations as the original object.

    • Deep copy should be used to avoid shallow copy issues.

  • Answered by AI
  • Q6. New vs malloc
  • Ans. 

    new and malloc are used for dynamic memory allocation in C++ and C respectively.

    • new is an operator in C++ while malloc is a function in C.

    • new automatically calls the constructor while malloc does not.

    • new returns a pointer to the object while malloc returns a void pointer.

    • new throws an exception if allocation fails while malloc returns NULL.

    • new can be overloaded while malloc cannot be.

    • new and delete are used together wh...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well OOPS fundamentals

Skills evaluated in this interview

I appeared for an interview in Nov 2016.

Interview Questionnaire 

8 Questions

  • Q1. A random number will be given as input to system,write a program to detect its data type(int or float ) without using size of function
  • Ans. 

    This program detects if a number is an integer or a float based on its input format.

    • Use input() to get user input as a string.

    • Check if the string contains a decimal point to identify floats.

    • Use str.isdigit() to check if the string represents an integer.

    • Example: '123' is int, '123.45' is float.

  • Answered by AI
  • Q2. General hr questions
  • Q3. Once again general hr interview questions
  • Q4. 1.given a large rectangle
  • Ans. 

    Need more context. What needs to be done with the large rectangle?

    • What are the dimensions of the rectangle?

    • Is it a 2D or 3D object?

    • What is the context of the problem?

    • Are there any constraints or limitations?

    • What tools or programming languages can be used?

  • Answered by AI
  • Q5. You will be given dimensions of a bigger rectangle and smaller rectangle,derive a formula to get how many smaller rectangles fit into the bigger rectangle
  • Ans. 

    Derive a formula to determine how many smaller rectangles fit into a bigger rectangle given their dimensions.

    • Calculate the number of times the smaller rectangle can fit into the bigger rectangle horizontally and vertically

    • Divide the width of the bigger rectangle by the width of the smaller rectangle to get the horizontal count

    • Divide the height of the bigger rectangle by the height of the smaller rectangle to get the ve...

  • Answered by AI
  • Q6. How many points are required to draw a rectangle
  • Ans. 

    At least 4 points are required to draw a rectangle.

    • A rectangle has 4 sides and 4 corners, so at least 4 points are needed to define those corners.

    • The points must be arranged in a specific order to form a closed shape with 4 sides.

    • Additional points can be used to add details or modify the shape of the rectangle.

    • The number of points required may vary depending on the software or tool used to draw the rectangle.

  • Answered by AI
  • Q7. What will be the new coordinates of a rectangle points if rectangle length and breadth is scaled and write a program to calculate the coordinates of corner points of scaled rectangle
  • Ans. 

    Answering how to calculate new coordinates of a scaled rectangle and providing a program for it.

    • To calculate new coordinates, multiply the original coordinates by the scaling factor

    • Scaling factor can be calculated by dividing the new length/breadth by the original length/breadth

    • Program can take input of original coordinates, scaling factor, and output new coordinates

    • Example: Original coordinates: (0,0), (0,5), (5,5), (...

  • Answered by AI
  • Q8. Lastly a puzzle: i dont remember the question

Interview Preparation Tips

Round: Test
Experience: The test had three sections:
1.aptitude:It was like any other aptitude test,all it takes is a bit of practice to crack all the questions
2.C programming:Basics of c were asked,outputs of some programs,u have to be thorough with concepts of c
3.Electronics:The company hired for both profiles: 1. PDK:software
and 2.Logic library:hardware,so this electronics section was also there,questions are mostly Network analysis,cmos logic,digital logic,vlsi etc
u should have good basics to get the electronics questions of course they are not very hard,but not too easy


Tips: practice aptitude,basics of c programming and also basics of electronics
Duration: 1 hour 30 minutes
Total Questions: 60

Round: Test
Experience: after 1st round i was shortlisted to this technical round,i was asked this question, i suggested that i will convert that number into a string and check whether string has a dot or not to check if it is float or int,the interviewer was not very impressed but was ok and asked few small questions and promoted me to next round

Tips: If u crack test with top marks,the technical rounds will be very easy,because the interviewers do not ask tough questions for people who cracked written test with high marks

Round: Technical Interview
Experience: tell me about yourself,strengths,weakness,three principles u follow in life,etc
Tips: This round depends on you,dont try to bluff something,they will know if u are bluffing,take a breath and speak up ur mind,be confident u can do it

Round: HR Interview
Experience: same questions,but this time less duration,not involving lengthy discussions, i think this round was just for double check

Round: HR Interview
Experience: After the hr round,only seven were shortlist,this interview round was very much easy and they checked my approach to the given problem,they were checking how well i am thinking adding complexities to the given problem
Tips: they did not check my programming ability,but just problem solving skills,so be good at aptitude,by practicing as much as you can

Round: Group Discussion
Experience: after technical interview,4 were shortlisted,so they went for gd round,it was general topic,which checks your general knowledge
Tips: Dont be nervous,just speak what ever you know,never mind language issues
Duration: 20 minutes

Skills: for pdk profile :programming
College Name: NIT Warangal

Top trending discussions

View All
Interview Tips & Stories
1w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about Synopsys?
Ask anonymously on communities.

Interview questions from similar companies

I appeared for an interview in Feb 2017.

Interview Questionnaire 

7 Questions

  • Q1. What is a malloc function and where is it used and how is it different from new?
  • Ans. 

    malloc is a function in C that dynamically allocates memory on the heap. It is used to allocate memory for variables or data structures.

    • malloc is used in C programming language.

    • It is used to allocate memory on the heap.

    • malloc is different from 'new' in C++ as it does not call constructors for objects.

  • Answered by AI
  • Q2. What is the difference between C++ and Objective C and where will you use it?
  • Ans. 

    C++ is a general-purpose programming language while Objective C is a superset of C used for iOS and macOS development.

    • C++ is widely used for developing applications, games, and system software.

    • Objective C is mainly used for iOS and macOS development.

    • C++ supports both procedural and object-oriented programming paradigms.

    • Objective C is an object-oriented language with dynamic runtime features.

    • C++ has a larger community a...

  • Answered by AI
  • Q3. What is the difference between class container and class composition?
  • Ans. 

    Class container is a class that holds objects of other classes, while class composition is a way to combine multiple classes to create a new class.

    • Class container holds objects of other classes, acting as a collection or container.

    • Class composition combines multiple classes to create a new class with its own behavior and attributes.

    • In class container, the objects are typically stored in a data structure like an array o...

  • Answered by AI
  • Q4. There are fifteen horses and a racing track that can run five horses at a time. You have to figure out the top 3 horses out of those and you don't have any timer machine to measure. How will you find the t...
  • Ans. 

    Divide the horses into groups of 5 and race them. Take the top 2 from each race and race them again. Finally, race the top 2 horses to determine the top 3.

    • Divide the horses into 3 groups of 5 and race them.

    • Take the top 2 horses from each race and race them again.

    • Finally, race the top 2 horses to determine the top 3.

  • Answered by AI
  • Q5. What is the most difficult problem that you have solved (during work) till now and why you think you could do so?
  • Ans. 

    Developing a real-time data processing system for a high-traffic e-commerce website

    • Implemented a distributed system architecture to handle large volumes of data

    • Optimized algorithms for efficient data processing and storage

    • Utilized caching mechanisms to improve system performance

    • Worked closely with cross-functional teams to troubleshoot and resolve issues

    • Example: Successfully reduced data processing time by 50% by imple...

  • Answered by AI
  • Q6. Why you want to change your current job?
  • Ans. 

    Seeking new challenges and opportunities for growth.

    • Looking for a more challenging role to further develop my skills

    • Interested in exploring new technologies and industries

    • Seeking better career advancement opportunities

    • Want to work in a more collaborative team environment

  • Answered by AI
  • Q7. What is the width of a tree? How will you calculate the width of the tree?
  • Ans. 

    The width of a tree is the maximum number of nodes at any level in the tree.

    • To calculate the width of a tree, we can perform a level order traversal and keep track of the maximum number of nodes at any level.

    • We can use a queue data structure to perform the level order traversal.

    • At each level, we count the number of nodes in the queue and update the maximum width if necessary.

  • Answered by AI

Interview Preparation Tips

Skills: Basic C/C++, Implementing Data Structures In C++

Skills evaluated in this interview

Software Engineer Interview Questions & Answers

Intel user image ESHAN SHEKHAR cs15m018

posted on 2 Dec 2016

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

Interview Questionnaire 

2 Questions

  • Q1. Given a blackbox with arithmetic circuits , design the logical circuits
  • Ans. 

    Design logical circuits for arithmetic circuits in a blackbox.

    • Understand the functionality of the arithmetic circuits in the blackbox.

    • Identify the inputs and outputs of the blackbox.

    • Design logical circuits using logic gates to replicate the arithmetic operations.

    • Test the logical circuits to ensure they produce the same outputs as the arithmetic circuits.

  • Answered by AI
  • Q2. Embedded c-code for recursion
  • Ans. 

    Recursion in embedded C-code allows a function to call itself, useful for repetitive tasks or complex algorithms.

    • Ensure proper base case to avoid infinite recursion

    • Use stack space efficiently as embedded systems have limited resources

    • Avoid recursive functions with deep call stacks to prevent stack overflow

    • Example: Recursive function to calculate factorial of a number

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: During this round we had some technical questions and some digital logic questions.
Tips: Please be patient.Interviewers do stress testing. Don't panic even if you don't know any answers.
Duration: 2 hours
Total Questions: 1

Round: Technical Interview
Experience: He asked me questions regarding my project and some coding questions
Tips: Please be patient.Interviewers do stress testing. Don't panic even if you don't know any answers.

Round: Technical + HR Interview
Experience: He asked me questions regarding my project and some coding questions
Tips: Please be patient.Interviewers do stress testing. Don't panic even if you don't know any answers.

College Name: IIT Madras

Skills evaluated in this interview

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

Interview Preparation Tips

Round: Test
Experience: Questions were based on C concepts, given piece of code, find error, output,etc then data structures, bit manipulation, a few aptitude questions were also there (around 5-7).
Duration: 1 hour
Total Questions: 30

Round: Technical + HR Interview
Experience: I was asked to explain project in detail, I had done projects on embedded, so was asked what fields did you use in that structure, why this implementation and not some related other. Then questions on C concepts, memory allocation, function pointers, data structures, linked lists, then bit manipulation in registers. Then later, why higher studies, would you still go for higher studies if you had a good job at a company, why etc.
Tips: Just be thorough with C (Know your Kernighan Ritchie) and be prepared to go into details about your projects.

College Name: IIT Madras
Are these interview questions helpful?

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

Interview Questionnaire 

2 Questions

  • Q1. Tell me about your self
  • Ans. 

    I am a passionate software engineer with experience in developing web applications using various technologies.

    • Experienced in developing web applications using HTML, CSS, JavaScript, and frameworks like React and Angular

    • Proficient in backend development with Node.js and databases like MongoDB and MySQL

    • Familiar with version control systems like Git and project management tools like Jira

  • Answered by AI
  • Q2. Questions on gen data structures and basic electrical questions Regards software - Dsa,computer organization,computer networks

Interview Preparation Tips

Round: Test
Experience: I was gen basic analytics questions
Tips: No needforany serious preperation,just be yourself
Duration: 45 minutes
Total Questions: 25

Round: Technical + HR Interview
Experience: I got trough most of dsa and computer network questions but i was notso strong in digital part so i cupped
Tips: Just know the basics of all the areas you are interested in.

Round: HR Interview
Experience: This is the basic question expected i have gone through my family childhood experiences and hobies
Tips: Every person have a unique style of expressing themselves ,so prepare for these kind of questions,dont rise any interest in higher studies

College Name: IIT Madras

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

Interview Questionnaire 

3 Questions

  • Q1. Question on pointers and concepts based on Resume
  • Q2. Device Drivers, Linux, Firmware and some questions like "how will you handle some scenarios"
  • Q3. Why Intel, Introduce yourself
  • Ans. 

    I am passionate about technology and innovation, and I believe Intel is at the forefront of cutting-edge advancements in the field.

    • I have always been fascinated by the latest advancements in technology and Intel's reputation for innovation drew me to the company.

    • I admire Intel's commitment to pushing the boundaries of what is possible in the tech industry.

    • I am excited about the opportunity to work with a team of talent...

  • Answered by AI

Interview Preparation Tips

College Name: IIT Madras

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

Interview Questionnaire 

1 Question

  • Q1. OS concepts, C programme to convert big endian (int data type) to little endian(short data type)

Interview Preparation Tips

Round: Test
Duration: 1 hour
Total Questions: 25

College Name: IIT Madras

Synopsys Interview FAQs

How many rounds are there in Synopsys Software Engineer interview?
Synopsys interview process usually has 2 rounds. The most common rounds in the Synopsys interview process are One-on-one Round and Technical.
How to prepare for Synopsys Software Engineer interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at Synopsys. The most common topics and skills that interviewers at Synopsys expect are Python, Linux, Unix, Windows and Debugging.
What are the top questions asked in Synopsys Software Engineer interview?

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

  1. you will be given dimensions of a bigger rectangle and smaller rectangle,derive...read more
  2. A random number will be given as input to system,write a program to detect its ...read more
  3. what will be the new coordinates of a rectangle points if rectangle length and ...read more

Tell us how to improve this page.

Overall Interview Experience Rating

4.6/5

based on 5 interview experiences

Difficulty level

Moderate 100%

Duration

2-4 weeks 100%
View more
Synopsys Software Engineer Salary
based on 75 salaries
₹6.5 L/yr - ₹25 L/yr
80% more than the average Software Engineer Salary in India
View more details

Synopsys Software Engineer Reviews and Ratings

based on 6 reviews

4.5/5

Rating in categories

2.7

Skill development

4.7

Work-life balance

3.8

Salary

4.6

Job security

4.3

Company culture

3.8

Promotions

3.6

Work satisfaction

Explore 6 Reviews and Ratings
Software Engineering, Sr Engineer

Kolkata,

Mumbai

+5

4-8 Yrs

Not Disclosed

Software Engineering, Staff Engineer

Bangalore / Bengaluru

5-10 Yrs

Not Disclosed

Software Engineering, Sr Engineer

Bangalore / Bengaluru

2-5 Yrs

₹ 5.3-40 LPA

Explore more jobs
R&D Engineer
160 salaries
unlock blur

₹8.1 L/yr - ₹27.6 L/yr

Staff Engineer
159 salaries
unlock blur

₹18 L/yr - ₹48 L/yr

Senior R&D Engineer
92 salaries
unlock blur

₹15 L/yr - ₹35 L/yr

Software Engineer
75 salaries
unlock blur

₹6.5 L/yr - ₹25 L/yr

Security Consultant
73 salaries
unlock blur

₹5.8 L/yr - ₹16.9 L/yr

Explore more salaries
Compare Synopsys with

Intel

4.2
Compare

Apar Industries

4.1
Compare

Molex

3.9
Compare

TDK India Private Limited

3.9
Compare
write
Share an Interview