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
3.9

based on 340 Reviews

Filter interviews by

Synopsys Senior Software Engineer Interview Questions and Answers

Updated 20 Feb 2024

Synopsys Senior Software Engineer Interview Experiences

Interview questions from similar companies

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. C questions on oops concepts
  • Q2. Python and ml questions
Round 2 - HR 

(1 Question)

  • Q1. Salary discussion
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Add two linked list
  • Ans. 

    To add two linked lists, iterate through both lists simultaneously and add corresponding nodes, considering carry from previous addition.

    • Create a dummy node to hold the result.

    • Initialize current node to dummy node.

    • Iterate through both lists, adding values and carry from previous addition.

    • Move to next nodes in both lists.

    • Handle cases where one list is longer than the other.

    • Handle final carry if present.

  • Answered by AI
  • Q2. Find shortest path in graph
  • Ans. 

    Use Dijkstra's algorithm to find the shortest path in a graph

    • Implement Dijkstra's algorithm to find the shortest path between two nodes in a graph

    • Maintain a priority queue to keep track of the shortest distance to each node

    • Update the shortest distance to each node as you traverse the graph

    • Track the path by storing the previous node for each node visited

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Check tree is BST
  • Ans. 

    Check if a binary tree is a Binary Search Tree (BST)

    • Perform an in-order traversal of the tree and check if the resulting array is sorted

    • Keep track of the previous node value during traversal to compare with the current node value

    • Ensure that each node's value is greater than the previous node's value in the in-order traversal

  • Answered by AI
  • Q2. Check substring palindrome or not
  • Ans. 

    Check if a substring in an array of strings is a palindrome or not.

    • Iterate through each string in the array

    • For each string, check if any of its substrings are palindromes

    • Return true if a palindrome substring is found, false otherwise

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
-

I applied via Referral and was interviewed in Nov 2023. There were 6 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 

Duration: 1Hour 30 Minutes, 2 Coding Questions of Total 175 Marks. 1st Question has 75 marks and 2nd Question has 100 marks.

Round 3 - Technical 

(2 Questions)

  • Q1. 1. Find the smallestMissingNumber in given array using Bitwise OR operation alone 2. Based on Array data Manipulation.
  • Ans. 

    Using Bitwise OR operation to find the smallest missing number in an array.

    • Iterate through the array and perform Bitwise OR operation with each element to set corresponding bit in a bitmask

    • Iterate through the bitmask to find the first unset bit, which represents the smallest missing number

    • Example: Array [0, 1, 3, 4, 6] would have a bitmask of 10101, smallest missing number is 2

  • Answered by AI
  • Q2. Q2: Customized Data Extraction From Given Dynamic Array & Perform Some Math Operations On the Extracted Data
Round 4 - Technical 

(1 Question)

  • Q1. Write a Pseudo code for given scenario?
  • Ans. 

    Pseudo code for a scenario

    • Define variables and data structures needed

    • Write the main logic using conditional statements and loops

    • Handle edge cases and error conditions

    • Test the pseudo code with sample inputs

  • Answered by AI
Round 5 - Technical 

(1 Question)

  • Q1. System Design & Design Pattern based questions
Round 6 - HR 

(1 Question)

  • Q1. Not Applicable (Yet to be scheduled)

Skills evaluated in this interview

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

Major questions were around problem solving, strings

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected
Round 1 - Technical 

(1 Question)

  • Q1. Reserve Binary Search Tree
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Nov 2023. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. Selenium xpath and dynamic loading of elements
  • Ans. 

    Selenium xpath is used to locate elements on a web page, especially useful for dynamic loading scenarios.

    • Use xpath to locate elements based on their attributes or position on the page

    • For dynamic loading, use explicit waits to ensure elements are present before interacting with them

    • Consider using relative xpath expressions to make your tests more robust and maintainable

  • Answered by AI
  • Q2. Java programs on strings
  • Q3. Test Ng architecture explain
  • Ans. 

    TestNG is a testing framework inspired by JUnit and NUnit, with more advanced features for test automation.

    • TestNG uses annotations to define test methods and test configurations.

    • It supports parameterized tests, test dependencies, and test groups.

    • TestNG allows parallel execution of tests, making it faster than other testing frameworks.

    • It provides detailed test reports and supports data-driven testing.

    • TestNG can be integ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well and go for interview

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed in Dec 2023. There were 3 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. Basic questions around testing.
Round 2 - Aptitude Test 

Here they asked lots of logical reasoning questions and checked on how you approached different situations

Round 3 - HR 

(1 Question)

  • Q1. Explained package and other details
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(3 Questions)

  • Q1. Spring boot core java
  • Q2. Different annotations
  • Ans. 

    Annotations are used in Java to provide metadata about a program.

    • Annotations start with the @ symbol

    • Annotations can be used to provide information to the compiler or runtime environment

    • Examples of annotations in Java include @Override, @Deprecated, and @SuppressWarnings

  • Answered by AI
  • Q3. Activate profile

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed in Sep 2023. There were 2 interview rounds.

Round 1 - Coding Test 

1 easy, 1 medium and 1 hard LC

Round 2 - Technical 

(1 Question)

  • Q1. 1. How will access files in a different server? 2. There are several files all containing similar key value pairs. The values differ in all files. How will you identify all the values that are same and ot...
  • Ans. 

    To access files in a different server, use protocols like FTP or SSH. To identify similar key value pairs in multiple files, compare values using a script or tool.

    • Use FTP or SSH protocols to access files in a different server

    • Write a script or use a tool to compare key value pairs in multiple files

    • Identify values that are the same and different across files

    • Example: Use Python script to read files and compare key value p

  • Answered by AI

Synopsys Interview FAQs

How many rounds are there in Synopsys Senior Software Engineer interview?
Synopsys interview process usually has 1 rounds. The most common rounds in the Synopsys interview process are Coding Test.
How to prepare for Synopsys Senior 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 C++, Linux, Python, C and Unix.

Tell us how to improve this page.

Synopsys Senior Software Engineer Interview Process

based on 2 interviews

Interview experience

5
  
Excellent
View more
Synopsys Senior Software Engineer Salary
based on 60 salaries
₹14 L/yr - ₹40 L/yr
90% more than the average Senior Software Engineer Salary in India
View more details

Synopsys Senior Software Engineer Reviews and Ratings

based on 8 reviews

3.7/5

Rating in categories

3.7

Skill development

4.0

Work-life balance

2.9

Salary

3.7

Job security

3.7

Company culture

3.0

Promotions

3.2

Work satisfaction

Explore 8 Reviews and Ratings
R&D Engineer
149 salaries
unlock blur

₹7.5 L/yr - ₹27 L/yr

Senior R&D Engineer
98 salaries
unlock blur

₹15 L/yr - ₹37 L/yr

Staff Engineer
78 salaries
unlock blur

₹20 L/yr - ₹48 L/yr

Security Consultant
64 salaries
unlock blur

₹5.8 L/yr - ₹20.6 L/yr

Applications Engineer
62 salaries
unlock blur

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