Upload Button Icon Add office photos

Mentor Graphics

Compare button icon Compare button icon Compare

Filter interviews by

Mentor Graphics Senior Member of Technical Staff Interview Questions and Answers

Updated 22 May 2021

Mentor Graphics Senior Member of Technical Staff Interview Experiences

2 interviews found

I applied via LinkedIn and was interviewed in Nov 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Protocol-related questions and general SV UVM, with a major focus on Coverage and Constraints.

Interview Preparation Tips

Interview preparation tips for other job seekers - Have a clear understanding of the protocol that you have mentioned in the resume as the questions will be very complicated and application-based.

I applied via Naukri.com and was interviewed before Jan 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. I was asked question on Data Structures and C++ mostly.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare data structures and algorithm well. Use gfg and interview bit for DS. Also use learncpp.com for oops related questions.

Senior Member of Technical Staff Interview Questions Asked at Other Companies

asked in Salesforce
Q1. Design Quora.
Q2. Reverse LL using recursion, Find the path in a btree that sums cl ... read more
asked in Oracle
Q3. Given a matrix with ones and zeros, how would you efficiently mov ... read more
Q4. Deep dive into Kubernetes technology, such as networking and etcd ... read more
asked in Oracle
Q5. Describe the system design of a hotel management system.

Top trending discussions

View All
Office Jokes
2w
an executive
CTC ≠ Confidence Transfer Credit
Ab toh aisa lagta hai, chillar jaise salary ke liye main kaju katli ban ke jaa rahi hoon. Samajh nahi aata, main zyada ready ho ke jaa rahi hoon ya ye mujhe kam pay kar rahe hain? #CorporateLife #OfficeJokes #UnderpaidButWellDressed
FeedCard Image
Got a question about Mentor Graphics?
Ask anonymously on communities.

Interview questions from similar companies

I appeared for an interview before Apr 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Easy

The second round is also written but you need to write programming based on their concept.

  • Q1. 

    Prime Numbers Identification

    Given a positive integer N, your task is to identify all prime numbers less than or equal to N.

    Explanation:

    A prime number is a natural number greater than 1 that has no po...

  • Ans. 

    Identify all prime numbers less than or equal to a given positive integer N.

    • Iterate from 2 to N and check if each number is prime

    • Use the Sieve of Eratosthenes algorithm for better efficiency

    • Optimize by only checking up to the square root of N for divisors

  • Answered by AI
  • Q2. 

    Palindrome String Validation

    Determine if a given string 'S' is a palindrome, considering only alphanumeric characters and ignoring spaces and symbols.

    Note:
    The string 'S' should be evaluated in a case...
  • Ans. 

    Check if a given string is a palindrome after removing special characters, spaces, and converting to lowercase.

    • Remove special characters and spaces from the string

    • Convert the string to lowercase

    • Check if the modified string is a palindrome by comparing characters from start and end

  • Answered by AI
Round 2 - Face to Face 

(6 Questions)

Round duration - 60 minutes
Round difficulty - Easy

Technical round with questions mainly on Java and OOPS concepts.

  • Q1. What is the difference between static methods and instance methods in Java?
  • Ans. 

    Static methods belong to the class itself, while instance methods belong to individual objects of the class.

    • Static methods are called using the class name, while instance methods are called using object references.

    • Static methods cannot access instance variables directly, while instance methods can access both static and instance variables.

    • Static methods are shared among all instances of the class, while instance method...

  • Answered by AI
  • Q2. What is the difference between an abstract class and an interface in Java?
  • Ans. 

    Abstract class can have both abstract and non-abstract methods, while interface can only have abstract methods.

    • Abstract class can have constructors, member variables, and methods with implementation.

    • Interface can only have abstract methods and constants.

    • A class can implement multiple interfaces but can only extend one abstract class.

    • Example: Abstract class - Animal with abstract method 'eat', Interface - Flyable with m...

  • Answered by AI
  • Q3. What is the difference between ClassNotFoundException and NoClassDefFoundError in Java?
  • Ans. 

    ClassNotFoundException occurs when a class is not found during runtime, while NoClassDefFoundError occurs when a class was found during compilation but not during runtime.

    • ClassNotFoundException is a checked exception, while NoClassDefFoundError is an Error.

    • ClassNotFoundException occurs when a class is not found at runtime, usually due to a missing classpath or incorrect class name.

    • NoClassDefFoundError occurs when a cla...

  • Answered by AI
  • Q4. What is the difference between an Error and an Exception in Java?
  • Ans. 

    Error is a serious issue that cannot be handled at runtime, while Exception is a recoverable issue that can be caught and handled.

    • Error is a subclass of Throwable and is usually caused by the environment or system, such as running out of memory or stack overflow.

    • Exception is also a subclass of Throwable but is caused by the application code, such as invalid input or file not found.

    • Errors are unchecked and are not meant...

  • Answered by AI
  • Q5. What is SerialVersionUID in Java?
  • Ans. 

    SerialVersionUID is a unique identifier used by Java to ensure the compatibility of serialized objects.

    • SerialVersionUID is a static final long variable in a class that implements Serializable interface.

    • It is used to ensure that the serialized object can be deserialized correctly even if the class definition has changed.

    • If the SerialVersionUID of the serialized object does not match the one in the class, an InvalidClass...

  • Answered by AI
  • Q6. What are the requirements for creating an immutable class in Java?
  • Ans. 

    Requirements for creating an immutable class in Java

    • Make the class final so it cannot be extended

    • Make all fields private and final

    • Do not provide setter methods, only getter methods

    • Ensure that mutable objects are not returned in getter methods

    • Override equals() and hashCode() methods for proper comparison

    • Consider making defensive copies of mutable fields in constructor or getter methods

  • Answered by AI

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPAYodlee interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, System Design, Aptitude, OOPSTime required to prepare for the interview - 4 monthsInterview preparation tips for other job seekers

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Final outcome of the interviewSelected

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via Referral

Round 1 - Coding Test 

Java internals, coding questions 2sum

Round 2 - Technical 

(2 Questions)

  • Q1. Hld of your previous project
  • Ans. 

    Developed a web-based project management tool for tracking tasks and deadlines.

    • Used React.js for front-end development

    • Implemented RESTful APIs for backend using Node.js and Express

    • Utilized MongoDB for database storage

    • Incorporated authentication and authorization features for user security

  • Answered by AI
  • Q2. Question related to self build projects
Round 3 - HR 

(2 Questions)

  • Q1. Salary negotiation
  • Q2. Location constrain if any
  • Ans. 

    Open to relocation for the right opportunity

    • Willing to relocate for the right job opportunity

    • Flexible with location for the right role

    • Open to considering different locations for the right position

  • Answered by AI
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Copy constructor implementation it was based on
Round 2 - Technical 

(1 Question)

  • Q1. Binary search question on array
  • Ans. 

    Binary search is an efficient algorithm for finding an item from a sorted array by repeatedly dividing the search interval in half.

    • 1. Binary search requires a sorted array to function correctly.

    • 2. It works by comparing the target value to the middle element of the array.

    • 3. If the target value is less than the middle element, search the left half; if greater, search the right half.

    • 4. Repeat the process until the target ...

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Experience and expectations on salary
  • Ans. 

    I am looking for a competitive salary that reflects my skills and experience in software development.

    • Based on my research, the average salary for a software developer in this region is between $80,000 and $100,000.

    • I have over 5 years of experience in full-stack development, which I believe justifies a salary towards the higher end of that range.

    • I am open to discussing the entire compensation package, including benefits...

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Core java, spring boot
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Mar 2023. There were 2 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 - Technical 

(2 Questions)

  • Q1. Reactive forms in angular
  • Ans. 

    Reactive forms in Angular are a way to build forms in a reactive and scalable way.

    • Reactive forms use an underlying data model to manage form data.

    • They allow for dynamic form creation and validation.

    • They can be used with complex form structures and nested forms.

    • They provide a more scalable and maintainable approach to form development.

    • Example: Creating a reactive form with FormBuilder in Angular.

  • Answered by AI
  • Q2. Dependency injection

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep doing practical things

Skills evaluated in this interview

Are these interview questions helpful?

I applied via Recruitment Consultant and was interviewed in Dec 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. First round was coding round : 1. One string rotaion of other 2. Nearest largest and smallest prime value of given input. interview questions:What is difference between reference variable and pointer ?

Interview Preparation Tips

Interview preparation tips for other job seekers - Study on cpp , python basic if specified , data structure , oop.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
-
Round 1 - Coding Test 

Coding test was medium to hard leetcode problems.

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Oct 2022. There were 3 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 

There will be 3 coding questions, Easy, moderate and hard level.

Round 3 - Technical 

(1 Question)

  • Q1. 2nd round will be technical round, they will ask mostly theoretical coding questions(Mostly array, Linked List), puzzles (Geeks Puzzles are enough).

Interview Preparation Tips

Topics to prepare for SOTI Software Developer interview:
  • Array
  • Linked List
  • Data Structures
  • Microsoft Sql

Mentor Graphics Interview FAQs

How to prepare for Mentor Graphics Senior Member of Technical Staff 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 Mentor Graphics. The most common topics and skills that interviewers at Mentor Graphics expect are C, C++, Design Verification, FPGA and TLM.

Tell us how to improve this page.

Interview Questions from Similar Companies

Mobileum Interview Questions
3.3
 • 38 Interviews
SOTI Interview Questions
3.2
 • 24 Interviews
Backbase Interview Questions
3.7
 • 23 Interviews
FinThrive Interview Questions
3.7
 • 21 Interviews
Bentley Systems Interview Questions
4.3
 • 21 Interviews
3Pillar Global Interview Questions
3.2
 • 20 Interviews
Bottomline Interview Questions
3.4
 • 20 Interviews
Yodlee Interview Questions
3.8
 • 17 Interviews
View all
Mentor Graphics Senior Member of Technical Staff Salary
based on 69 salaries
₹12 L/yr - ₹30 L/yr
33% less than the average Senior Member of Technical Staff Salary in India
View more details

Mentor Graphics Senior Member of Technical Staff Reviews and Ratings

based on 7 reviews

3.7/5

Rating in categories

3.4

Skill development

4.1

Work-life balance

4.0

Salary

4.4

Job security

3.5

Company culture

3.4

Promotions

3.2

Work satisfaction

Explore 7 Reviews and Ratings
Senior Member of Technical Staff
69 salaries
unlock blur

₹12 L/yr - ₹30 L/yr

Lead Member Technical Staff
41 salaries
unlock blur

₹19 L/yr - ₹32 L/yr

Member Consulting Staff
31 salaries
unlock blur

₹25.5 L/yr - ₹56 L/yr

Member Technical Staff
29 salaries
unlock blur

₹13.5 L/yr - ₹22.2 L/yr

Software Engineer
15 salaries
unlock blur

₹11 L/yr - ₹23 L/yr

Explore more salaries
Compare Mentor Graphics with

Duck Creek Technologies

4.4
Compare

FinThrive

3.7
Compare

Mobileum

3.3
Compare

OnProcess Technology

3.8
Compare
write
Share an Interview