Upload Button Icon Add office photos
Engaged Employer

i

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

Cadence Design Systems Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Cadence Design Systems Software Engineer II Interview Questions and Answers

Updated 7 May 2017

6 Interview questions

A Software Engineer II was asked
Q. What is a malloc function, where is it used, and how does it differ from new?
Ans. 

malloc is a function used in C programming to dynamically allocate memory. It is used in low-level programming and is different from new.

  • malloc is used to allocate memory on the heap in C programming.

  • It is used when the size of memory needed is not known at compile time.

  • malloc returns a void pointer to the allocated memory block.

  • Example: int* ptr = (int*) malloc(5 * sizeof(int));

  • new is used in C++ programming to d...

A Software Engineer II was asked
Q. What is the difference between C++ and Objective-C, and where would you use each?
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 primarily 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 sta...

Software Engineer II Interview Questions Asked at Other Companies

Q1. There are fifteen horses and a racing track that can run five hor ... read more
Q2. Given an array arr[] containing N integers. In one step, any elem ... read more
Q3. What are interfaces and what is difference between an interface a ... read more
Q4. Given an array arr[] containing N integers, print the next greate ... read more
asked in MasterCard
Q5. If I give you a coding problem to solve in a language you don’t k ... read more
A Software Engineer II was asked
Q. How do you calculate the width of a tree?
Ans. 

The width of a tree can be calculated by finding the maximum number of nodes at any level.

  • Traverse the tree level by level using breadth-first search

  • Keep track of the maximum number of nodes at any level

  • Return the maximum number of nodes as the width of the tree

🔥 Asked by recruiter 2 times
A Software Engineer II was asked
Q. 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 ar...

🔥 Asked by recruiter 2 times
A Software Engineer II was asked
Q. 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 to...
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.

A Software Engineer II was asked
Q. What is the width of a tree?
Ans. 

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

  • The width of a tree can be determined by traversing the tree level by level and counting the maximum number of nodes at any level.

  • The width of a tree can also be calculated using breadth-first search (BFS) algorithm.

  • The width of a tree is not related to the height or depth of the tree.

Cadence Design Systems Software Engineer II Interview Experiences

1 interview found

I appeared for an interview in Feb 2017.

Interview Questionnaire 

8 Questions

  • Q1. 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
  • 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 primarily 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 standard...

  • Answered by AI
  • Q3. What is a malloc function and where is it used and how is it different from new
  • Ans. 

    malloc is a function used in C programming to dynamically allocate memory. It is used in low-level programming and is different from new.

    • malloc is used to allocate memory on the heap in C programming.

    • It is used when the size of memory needed is not known at compile time.

    • malloc returns a void pointer to the allocated memory block.

    • Example: int* ptr = (int*) malloc(5 * sizeof(int));

    • new is used in C++ programming to dynami...

  • Answered by AI
  • Q4. What is the width of a tree?
  • Ans. 

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

    • The width of a tree can be determined by traversing the tree level by level and counting the maximum number of nodes at any level.

    • The width of a tree can also be calculated using breadth-first search (BFS) algorithm.

    • The width of a tree is not related to the height or depth of the tree.

  • Answered by AI
  • Q5. How will you calculate the width of the tree?
  • Ans. 

    The width of a tree can be calculated by finding the maximum number of nodes at any level.

    • Traverse the tree level by level using breadth-first search

    • Keep track of the maximum number of nodes at any level

    • Return the maximum number of nodes as the width of the tree

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

    Seeking new challenges and growth opportunities in a more innovative environment.

    • Looking for new challenges to continue learning and growing

    • Interested in working in a more innovative and dynamic environment

    • Seeking opportunities for career advancement and skill development

  • Answered by AI
  • Q7. 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 website.

    • Designed and implemented a scalable architecture using microservices to handle large volumes of data.

    • Optimized algorithms for efficient data processing and reduced latency.

    • Resolved issues related to data consistency and synchronization across multiple servers.

    • Collaborated with cross-functional teams to troubleshoot and fine-tune system performance...

  • Answered by AI
  • Q8. 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

Interview Preparation Tips

Round: Technical Interview
Experience: The interviewers asked which areas/technologies I am comfortable with and then asked questions.

Skills: Basic C/C++, Data Structures And Algorithms

Skills evaluated in this interview

Top trending discussions

View All
Interview Tips & Stories
2w
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 Cadence Design Systems?
Ask anonymously on communities.

Interview questions from similar companies

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

I appeared for an interview before Oct 2022.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Coding Test 

There were few coding question related to Java
1. Trace the for loop
2. Pattern Programs
3. TestNG annotations
4. Basic selenium questions
3. Aptitude questions based on clocks and cubes
5. Logical reasoning questions

Round 3 - Fitment Round 

(1 Question)

  • Q1. This round was interview by senior group manager 1. Past experience 2. Tools known and exposure 3. Behavioral questions
Round 4 - HR 

(1 Question)

  • Q1. Salary expectations and company policies explanations

Software Engineer II Interview Questions Asked at Other Companies

Q1. There are fifteen horses and a racing track that can run five hor ... read more
Q2. Given an array arr[] containing N integers. In one step, any elem ... read more
Q3. What are interfaces and what is difference between an interface a ... read more
Q4. Given an array arr[] containing N integers, print the next greate ... read more
asked in MasterCard
Q5. If I give you a coding problem to solve in a language you don’t k ... read more

I applied via Recruitment Consulltant and was interviewed before Oct 2021. 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 

Code pair round, 3 questions
Answer min 2 with test cases getting passed

Round 3 - Technical 

(1 Question)

  • Q1. 1 question regarding dynamic programming Interview gave some hints to optimize
Round 4 - Technical 

(1 Question)

  • Q1. Design round Designed a distributed database application Discussed on distributed programming problems
Round 5 - Behavioral 

(1 Question)

  • Q1. Managerial discussion with hiring manager Not much technical, more of a behavioral and comp discussion Round
Round 6 - HR 

(1 Question)

  • Q1. Hr discussions Behavioral questions Comp discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - Average difficulty
For problem solving Round, revise dp, graph, tree
For design Round, you should have experience in designing big systems
Manager Round also discusses comp so be prepared for that

I applied via Recruitment Consultant and was interviewed before May 2020. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. DS and Algo questions based on DP and backtracking
  • Q2. Clone linked list with random pointers.
  • Ans. 

    Clone a linked list with random pointers.

    • Create a new node for each node in the original list.

    • Store the mapping between the original and cloned nodes in a hash table.

    • Traverse the original list again and set the random pointers in the cloned list using the hash table.

    • Return the head of the cloned list.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Mostly DS and Algo rounds followed by design rounds. Sometimes there can be language specific questions.

Skills evaluated in this interview

I appeared for an interview in Aug 2017.

Interview Preparation Tips

Round: Test
Duration: 1 hour 30 minutes
Total Questions: 60

Round: Technical Interview
Experience: Questions about DS , CN and basic resume

Round: Technical Interview
Experience: Questions about RT OS and memory mapping. And other operating system related questions.
Projects done so far.

I appeared for an interview in Aug 2017.

Interview Questionnaire 

8 Questions

  • Q1. Basics of C
  • Q2. Puzzles on data structures
  • Q3. Asked on project
  • Q4. C basics
  • Q5. 3 basic and simple codes
  • Q6. Family background
  • Q7. How was technical interviews
  • Q8. Why should we not hire you
  • Ans. 

    I lack experience in a specific technology required for the role.

    • I may not have experience with a specific programming language or framework mentioned in the job description.

    • I may not have worked on projects similar to what your company is working on.

    • I may not have experience with certain tools or technologies that are crucial for the role.

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: It was just mcq questions but had negative marking
Duration: 1 hour 30 minutes
Total Questions: 60

Round: Technical Interview
Experience: It was cool and interactive round and was fun

Round: Technical Interview
Experience: It was interesting but I fumbled a little

Round: HR Interview
Experience: It was ok

College Name: Cummins College Of Engineering For Women (CCOEW)

I appeared for an interview before May 2016.

Interview Preparation Tips

Round: written test
Experience: it was elitmus test conducted by the company itself on campus. As per my knowledge only those scoring 90 percentile got selected for round 2.
Tips: Attempt only those ques that are necessary for scoring 90+ in e litmus. Specially in verbal don't attempt more then required questions, though you might be tempted. The aim is not to score max bt to score 90+

Round: Technical Interview
Experience: This was a programming based round. I was asked to write algorithms for various array linked list based problems. There was cross questioning prompting to reduce complexity and to use different data structures for same problems.

Mostly it focused on subjects like c, data structures and ADA.
Tips: Be clear with basic of data structures and algorithms. Pointers, queue, stacks, array linked lists, sorting etc are the keywords.

Round: Technical Interview
Experience: This was a information security specific round since that was my major. In depth cross questioning on my thesis topics, honeypots, network intrusion etc. Security certificates, and on the go problems to provide security solution layer wise in different scenarios. Security concept of torrents was also asked in detail.
Tips: It was more of a security discussion and throwing of ideas about how things in a particular case could work or could not. Don't worry about right or wrong answer just be clear with your reasoning about the solution you are suggesting.

Round: Other Interview
Experience: I don't know what to name this round, but it focused mainly on developing test cases for an object. Say they gave me a stapler and said to develop a test plan listing down test cases for a given object to pass so that it can be confirmed that it is a stapler. Another scenario was with a lift.
Tips: This is one round where your presence of mind and inter personal skills matter. I think the way you present your thoughts was most important here.

Round: Behavioural Interview
Experience: This was was mostly about how would you react in a given professional situation
Like your assigned work could not be completed on time, or if you are doing something wrong with the work assigned.
Tips: This is all about inter personal skills and putting your best foot forward :)

College Name: Indira Gandhi Delhi Technical University For Women, Delhi
Are these interview questions helpful?

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

Interview Questionnaire 

14 Questions

  • Q1. Four people and torch problem?
  • Q2. What is the difference between AC and DC?
  • Ans. 

    AC and DC are two types of electrical current with different characteristics.

    • AC stands for Alternating Current, while DC stands for Direct Current.

    • AC periodically changes direction, while DC flows in one direction.

    • AC is commonly used in household electrical systems, while DC is used in batteries and electronic devices.

    • AC can be easily transformed to different voltage levels using transformers, while DC requires convert...

  • Answered by AI
  • Q3. Fill the cells in the pyramid?
  • Ans. 

    Fill the cells in the pyramid

    • The pyramid is a pattern of numbers or characters arranged in a triangular shape

    • Each row of the pyramid has one more cell than the previous row

    • Start filling the pyramid from the top and move downwards

    • The cells can be filled with any desired numbers or characters

  • Answered by AI
  • Q4. What is alternator and generator?
  • Ans. 

    An alternator and generator are devices that convert mechanical energy into electrical energy.

    • Both alternators and generators are used to generate electricity.

    • They work on the principle of electromagnetic induction.

    • Alternators are commonly used in modern vehicles to charge the battery and power the electrical systems.

    • Generators are often used as backup power sources during power outages.

    • Examples of alternators include ...

  • Answered by AI
  • Q5. What is the complexity of quick sort?
  • Ans. 

    Quick sort has an average and worst-case time complexity of O(n log n).

    • Quick sort is a divide-and-conquer algorithm.

    • It selects a pivot element and partitions the array around the pivot.

    • The average and worst-case time complexity is O(n log n).

    • However, in the worst-case scenario, it can have a time complexity of O(n^2).

  • Answered by AI
  • Q6. What are interesting u did?
  • Ans. 

    I developed a mobile app for tracking daily water intake and hydration levels.

    • Researched best practices for hydration tracking

    • Designed user-friendly interface for inputting water intake

    • Implemented data visualization for tracking hydration levels

    • Tested app with focus groups for feedback

    • Continuously updated app based on user suggestions

  • Answered by AI
  • Q7. Explain SHA Algorithm?
  • Ans. 

    SHA Algorithm is a cryptographic hash function that takes an input and produces a fixed-size output.

    • SHA stands for Secure Hash Algorithm.

    • It is widely used in various security applications and protocols.

    • SHA-1, SHA-256, SHA-384, and SHA-512 are common variants of SHA.

    • It generates a unique hash value for each unique input.

    • The output is a fixed length, regardless of the input size.

    • SHA is used for data integrity, password h...

  • Answered by AI
  • Q8. 5 heads and two tails, separate into two groups such that two groups should have equal number of tails?
  • Q9. Delete a node in linked list?
  • Ans. 

    To delete a node in a linked list, we need to adjust the pointers of the previous node and the next node.

    • Find the node to be deleted

    • Adjust the pointers of the previous node and the next node

    • Free the memory of the deleted node

  • Answered by AI
  • Q10. Tell me about yourself?
  • Ans. 

    I am a passionate software engineer with experience in developing web applications and a strong background in computer science.

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

    • Strong background in computer science with knowledge of data structures and algorithms

    • Proficient in programming languages such as Java, Python, and C++

    • Familiar with Agile development methodologies...

  • Answered by AI
  • Q11. What are the challenges you faced in the interns?
  • Ans. 

    As an intern supervisor, I faced challenges in terms of communication, technical skills, and time management.

    • Communication barriers due to language or cultural differences

    • Lack of technical skills or knowledge required for the job

    • Difficulty in managing time and meeting deadlines

    • Inability to work independently or as part of a team

    • Resistance to feedback or constructive criticism

    • Limited exposure to real-world scenarios and...

  • Answered by AI
  • Q12. Preference of job place?
  • Ans. 

    I prefer a job place that offers a collaborative and innovative work environment.

    • Prefer a workplace that encourages teamwork and communication

    • Value opportunities for learning and growth

    • Seek a company that fosters creativity and innovation

  • Answered by AI
  • Q13. How will you solve the disputes?
  • Ans. 

    I will solve disputes by promoting open communication, active listening, and finding mutually beneficial solutions.

    • Encourage open and honest communication between parties involved

    • Actively listen to each party's concerns and perspectives

    • Identify common goals and interests to find mutually beneficial solutions

    • Mediate discussions and facilitate negotiations if necessary

    • Document agreements and ensure follow-up to prevent f...

  • Answered by AI
  • Q14. What is your view about Qualcomm?
  • Ans. 

    Qualcomm is a leading semiconductor and telecommunications equipment company.

    • Qualcomm is known for its expertise in wireless technologies and mobile chipsets.

    • They have developed popular Snapdragon processors used in smartphones and tablets.

    • Qualcomm has made significant contributions to the advancement of 5G technology.

    • The company has a strong patent portfolio and is involved in licensing its technology to other manufac...

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: Simple aptitude questions and technical questions which includes OOPS, Computer networks
Duration: 1 hour 25 minutes
Total Questions: 50

College Name: IIT Madras

Skills evaluated in this interview

I appeared for an interview in Dec 2016.

Interview Questionnaire 

4 Questions

  • Q1. Simple algorithm coding questions, e.g.- fibonacci, prime number
  • Q2. Some hardware questions
  • Q3. Networking questions and some others
  • Q4. Intro, strength, weakness, why we hire you, etc. common HR questions

Interview Preparation Tips

College Name: IIT Kharagpur

I appeared for an interview in Sep 2016.

Interview Questionnaire 

1 Question

  • Q1. Write a code for scheduling in C
  • Ans. 

    Code for scheduling in C

    • Define a struct for the task with fields like start time, end time, priority, etc.

    • Create an array of tasks and sort them based on priority and start time

    • Implement a scheduling algorithm like Round Robin or Priority Scheduling

    • Use system calls like fork() and exec() to create and execute processes

    • Implement synchronization mechanisms like semaphores or mutexes to avoid race conditions

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: There were 3 sections.Aptitude,C programming,Software / Communication / Hardware
Tips: U should be very fast while solving.Aptitude is normal.C programming qsns mainly consists of simple C like trees,arrays,sorting etc.I chose software for 3rd section as I wanted software profile .It has qsns based on OS(little bit linux),Data structures and Algorithms.
Duration: 2 hours
Total Questions: 60

Round: Technical Interview
Experience: Just asked me qsns related to Data structures
Tips: Solve sums in geeksforgeeks

Round: HR Interview
Experience: Its for fun.HR talks about unrelated things :P .If u got selected for HR,then u are selected for job.

College Name: IIT Kharagpur

Skills evaluated in this interview

Cadence Design Systems Interview FAQs

How to prepare for Cadence Design Systems Software Engineer II 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 Cadence Design Systems. The most common topics and skills that interviewers at Cadence Design Systems expect are C++, System Design, Aerospace, Debugging and Automotive.
What are the top questions asked in Cadence Design Systems Software Engineer II interview?

Some of the top questions asked at the Cadence Design Systems Software Engineer II interview -

  1. There are fifteen horses and a racing track that can run five horses at a time....read more
  2. What is the difference between C++ and Objective C and where will you use ...read more
  3. What is the difference between class container and class compositi...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

Qualcomm Interview Questions
3.8
 • 271 Interviews
Intel Interview Questions
4.2
 • 222 Interviews
Texas Instruments Interview Questions
3.9
 • 126 Interviews
Synopsys Interview Questions
3.9
 • 95 Interviews
Molex Interview Questions
3.9
 • 58 Interviews
Lam Research Interview Questions
3.7
 • 50 Interviews
KLA Interview Questions
3.8
 • 48 Interviews
View all
Cadence Design Systems Software Engineer II Salary
based on 41 salaries
₹17.1 L/yr - ₹27 L/yr
30% more than the average Software Engineer II Salary in India
View more details

Cadence Design Systems Software Engineer II Reviews and Ratings

based on 8 reviews

4.3/5

Rating in categories

4.1

Skill development

3.7

Work-life balance

3.7

Salary

4.9

Job security

3.9

Company culture

3.6

Promotions

4.1

Work satisfaction

Explore 8 Reviews and Ratings
Lead Software Engineer
159 salaries
unlock blur

₹25.2 L/yr - ₹43.4 L/yr

Principal Software Engineer
117 salaries
unlock blur

₹24.9 L/yr - ₹60 L/yr

Software Engineer2
116 salaries
unlock blur

₹16.6 L/yr - ₹29 L/yr

Design Engineer
101 salaries
unlock blur

₹17 L/yr - ₹23.2 L/yr

Software Engineer
92 salaries
unlock blur

₹14.1 L/yr - ₹26 L/yr

Explore more salaries
Compare Cadence Design Systems with

Synopsys

3.9
Compare

Qualcomm

3.8
Compare

Intel

4.2
Compare

Molex

3.9
Compare
write
Share an Interview