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, Process, and Tips

Updated 10 Sep 2024

Top Synopsys Software Engineer Interview Questions and Answers

  • Q1. 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
  • Q2. 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 scal ...read more
  • Q3. How many points are required to draw a rectangle
View all 10 questions

Synopsys Software Engineer Interview Experiences

3 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

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

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 was interviewed 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
  • 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

Software Engineer Jobs at Synopsys

View all

Interview questions from similar companies

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

I applied via LinkedIn and was interviewed in Dec 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Basic fundamentals of cs, dsa
  • Q2. Puzzles, os concepts

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare basics for cs fundamentals, dsa leetcode medium
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via campus placement at Indian Institute of Technology (IIT), Delhi and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - Coding Test 

Topics was binary search tree, String, Sorting-bubble sort, merge sort, time complexity. Hire pro plateform

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare basics of DSA , strings , sorting, Trees.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Technical plus aptitude based on domain you choose( pre placemt talks)

Round 2 - Technical 

(2 Questions)

  • Q1. Communication theory , aptitude, electronics basics for firmware domain(screening)
  • Q2. Coding related questions
Round 3 - Technical 

(1 Question)

  • Q1. Circuits related practical questions
Round 4 - HR 

(1 Question)

  • Q1. General things only
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Profit and loss ,time and work ,speed distance and time

Round 2 - Coding Test 

Java ,ops ,collection frameworks

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

Quantitative Questions
Computer Science core MCQ questions
2 Coding Questions

Round 2 - Technical 

(2 Questions)

  • Q1. Explain Projects mentioned on resume
  • Ans. 

    Developed a web application for tracking inventory and sales data

    • Used React.js for front-end development

    • Implemented RESTful APIs for backend using Node.js

    • Utilized MongoDB for database management

  • Answered by AI
  • Q2. Questions based on Linked List
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed in Jun 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Java theory questions and system questions with 2 DSA question

Round 2 - Assignment 

System design question with api designs

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Basic C questions and microcontrollers

Round 2 - Coding Test 

Leetcode Easy - mediums

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. what will be the new coordinates of a rectangle points if rectangle length and ...read more
  3. How many points are required to draw a rectang...read more

Tell us how to improve this page.

Synopsys Software Engineer Interview Process

based on 4 interviews

Interview experience

4.5
  
Good
View more
Synopsys Software Engineer Salary
based on 56 salaries
₹5.7 L/yr - ₹23.8 L/yr
64% more than the average Software Engineer Salary in India
View more details

Synopsys Software Engineer Reviews and Ratings

based on 5 reviews

4.2/5

Rating in categories

3.5

Skill development

4.6

Work-life balance

3.7

Salary

4.5

Job security

4.4

Company culture

4.2

Promotions

3.9

Work satisfaction

Explore 5 Reviews and Ratings
Software Engineering, Staff Engineer

Hyderabad / Secunderabad,

Bangalore / Bengaluru

3-7 Yrs

Not Disclosed

Explore more jobs
R&D Engineer
147 salaries
unlock blur

₹7.2 L/yr - ₹30 L/yr

Senior R&D Engineer
100 salaries
unlock blur

₹15 L/yr - ₹41.8 L/yr

Staff Engineer
86 salaries
unlock blur

₹22 L/yr - ₹46 L/yr

Security Consultant
60 salaries
unlock blur

₹5.8 L/yr - ₹21 L/yr

Applications Engineer
58 salaries
unlock blur

₹11 L/yr - ₹25.6 L/yr

Explore more salaries
Compare Synopsys with

Cadence Design Systems

4.1
Compare

Mentor Graphics

4.0
Compare

Ansys Software Private Limited

3.9
Compare

Infineon Technologies

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