Mentor Graphics Interview Questions (2026)
4 questions · 2 experiences · GeeksforGeeks (6)
Browse by role
6 entries
Mentor Graphics (Siemen EDA) Interview Experience | 2 Years Experienced
Mentor Graphics (Siemens) Interview Experience (For Experience – 3 yrs) | Sr. MTS
Mentor Graphics Interview Experience | Set 3 (Off-Campus for Software Developer)
Mentor Graphics Interview Experience | Set 2 (For Software Developer Role)
Mentor Graphics Interview Experience | Set 4 (On Campus)
Mentor Graphics On-Campus Interview Experience 2019
Mentor Graphics (Siemen EDA) Interview Experience | 2 Years Experienced
Question Details
For Noida Location F2F Round 1(2hrs): What are virtual functions and virtual destructors? What do mean by static keyword? Difference between pointers and memory reference? When some elements at the beginning of an array are moved to the end, it becomes a rotation of the original array. Please implement a function to get the minimum number in a rotation of an increasing sorted array. For example, the array {3, 4, 5, 1, 2} is a rotation of array {1, 2, 3, 4, 5}, of which the minimum is 1. A tree is represented as a matrix M, in which M(i,j) is 1 if 'i' is the parent of 'j'. Write an algorithm to construct the tree from the matrix. Given a list of n distinct integers and a sequence of n boxes with preset inequality signs inserted between them, design an algorithm that places the numbers into the boxes to satisfy those inequalities. For example, the numbers 2, 5, 1, and 0 can be placed in the four boxes as shown below: ||<||<||>|| |0|<|1|<|5|>|2| Detect cycle in a directed and undirected graph. Find errors and output of the program C++ Class A { int x ; }; void fun ( A obj1 ) { obj1 . x = 20 ; } void fun1 ( const A & obj1 ) { obj1 . x = 30 ; } void fun2 ( A * obj1 ) { obj1 -> x = 40 ; } int main () { A obj ; obj . x = 10 ; fun ( obj ); cout << x << endl ; fun1 ( obj ); cout << x << endl ; fun2 ( obj ) cout << x << endl ;
return 0 ; } Difference between new and malloc. F2F Round 2(2hrs): Difference between map and unordered map. What is a static keyword? How can we use non-static variables in static function? What is BST and what is the time complexity of searching an element in an array? Given a matrix of size m*n. Traverse the matrix in spiral form. convert roman numbers to decimal numbers. What are templates and write a syntax for declaring a generic class? Given 100 balls in which one ball is defective. You also have a balance to tell the minimum number of steps to find the defective ball. Puzzle | Measuring Block (https://www.geeksforgeeks.org/aptitude/puzzle-measuring-block/) Write an algorithm to find a kth minimum element from a BST. What are storage classes?
Topics
More from Mentor Graphics
Related companies
Mentor Graphics Interview Process Overview
The Mentor Graphics interview process typically includes a recruiter screen, one to two technical phone screens, and a 4-6 round on-site or virtual on-site loop. Each round serves a distinct calibration purpose: coding rounds measure correctness, code quality, and complexity reasoning; system design rounds measure architectural judgment at the appropriate level; behavioral rounds measure ownership, leadership scope, and collaboration. Reports tagged on LeakCode from 2024-2026 show Mentor Graphics runs a calibrated process consistent with industry norms for companies of its tier.
Difficulty calibration: Mentor Graphics coding rounds typically run medium difficulty with follow-up depth as the senior discriminator. System design rounds expect production-grade trade-off articulation at L4+ levels. Behavioral rounds expect quantified outcomes ("reduced p99 latency from 800ms to 120ms") rather than vague impact claims. The candidates who advance consistently demonstrate clear thinking out loud rather than perfect final answers.
How To Use Mentor Graphics Question Reports
Real candidate-reported interview questions are a calibration tool, not a memorization target. Mentor Graphics updates its question pool every 2-4 months; memorizing exact problems risks misleading you when the interviewer uses a variant. The high-leverage approach: identify the patterns that appear repeatedly in Mentor Graphics reports, practice those patterns on similar (not identical) problems, and use the reports to understand the interviewer's typical follow-up depth.
Filter the questions above by round type, difficulty, and recency. Focus first on reports from the past 6-12 months; older reports may reference questions that have since rotated out of Mentor Graphics's pool. Reports tagged with quantified difficulty and explicit round type are higher-signal than reports without those tags. The metadata filters help you build a focused study plan in 1-2 hours rather than 8-10 hours of unstructured browsing.
Common Mentor Graphics Interview Mistakes
Reports tagged "no hire" at Mentor Graphics consistently surface a few patterns: jumping into code without clarifying requirements, coding silently for extended periods, missing edge cases (empty input, single element, large input, overflow), producing working code the candidate cannot refactor when probed, and behavioral stories that use "we" instead of "I" diluting individual signal. Strong candidates explicitly avoid these patterns by following a consistent round template.
The single most predictive failure mode in recent reports: not asking clarifying questions. Interviewers are explicitly trained to weight this dimension. Strong candidates ask 3-5 clarifying questions even on problems that look obvious; weak candidates dive into implementation immediately. Strong candidates also verbalize their approach before writing code; weak candidates code in silence and lose the communication dimension of the round's calibration.