Upload Button Icon Add office photos

Mentor Graphics

Compare button icon Compare button icon Compare

Filter interviews by

Mentor Graphics Technical Staff Member Lead Interview Questions and Answers

Updated 3 Jul 2023

Mentor Graphics Technical Staff Member Lead Interview Experiences

1 interview found

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Be truthful in your resume. It is very easy to catch false or lies during the interview by asking basic questions.
View all tips
Round 2 - Telephonic Call 

(1 Question)

  • Q1. General questions to check basic concepts. to confirm if you are ok to be called for F2F interview
Round 3 - Technical 

(1 Question)

  • Q1. In depth F2F interview. Ques depends on which team you are interviewing for. Don't line in your resume. questions are driven from the projects you have mentioned in your resume.
Round 4 - HR 

(1 Question)

  • Q1. HR questions are typical. Why you left prev company, why you want to join this one. Anyway, the HR round here is just a formality. hiring is decided by technical side, unless you roayall screw up the HR ro...

Interview Preparation Tips

Interview preparation tips for other job seekers - Be honest. Be confident. But don't just give up. Doesn't matter if you don't remember something at that moment.

Interview questions from similar companies

I applied via Naukri.com and was interviewed in Feb 2022. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Basic node.js and javascript.
Round 2 - One-on-one 

(1 Question)

  • Q1. More discussion towards the existing project.

Interview Preparation Tips

Interview preparation tips for other job seekers - Company is good. The process was quite clear and transparent.

I applied via Indeed and was interviewed before Jul 2020. There were 5 interview rounds.

Interview Questionnaire 

5 Questions

  • Q1. Different types of Call Flows?
  • Ans. 

    Call flows refer to the sequence of events that occur during a phone call.

    • Inbound call flow

    • Outbound call flow

    • Transfer call flow

    • Conference call flow

    • Voicemail call flow

  • Answered by AI
  • Q2. Roaming Testing pre-requisites?
  • Ans. 

    Roaming testing pre-requisites include network coverage, SIM cards, and test devices.

    • Ensure network coverage in the testing area

    • Have SIM cards from different carriers

    • Prepare test devices with different operating systems

    • Create test scenarios and scripts

    • Have a test plan and schedule

  • Answered by AI
  • Q3. Different interfaces in each technology and their functinality?
  • Ans. 

    Different technologies have different interfaces with unique functionalities.

    • Interfaces in web development include HTML, CSS, and JavaScript.

    • In database management, SQL is a commonly used interface.

    • Programming languages like Java and Python have their own interfaces.

    • Each interface has its own set of functions and methods for performing specific tasks.

    • Interfaces can also be graphical, such as user interfaces in software

  • Answered by AI
  • Q4. Co-ordination with Roaming Operators, IPX, GRX and SCCP Providers?
  • Ans. 

    Co-ordination with Roaming Operators, IPX, GRX and SCCP Providers involves managing relationships and ensuring smooth communication.

    • Establishing and maintaining relationships with roaming operators, IPX, GRX and SCCP providers

    • Negotiating contracts and service level agreements

    • Monitoring service performance and resolving issues

    • Collaborating with internal teams to ensure seamless communication

    • Staying up-to-date with indus

  • Answered by AI
  • Q5. Handling the team internally and externally?

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well and speak with confidence, understand the JD and know all the things in your RESUME.

Skills evaluated in this interview

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

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
3
Average
Difficulty level
-
Process Duration
-
Result
-
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 - Call from Leader 

(1 Question)

  • Q1. General questions related to Process
Round 3 - HR 

(1 Question)

  • Q1. General questions related to package and notice period
Round 4 - One-on-one 

(1 Question)

  • Q1. Basic discussions related to Process and Skills
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
Round 3 - HR 

(1 Question)

  • Q1. Experience and expectations on salary
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
6-8 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Jun 2024. There were 4 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Coding with design fundamentals on BST and DP
Round 2 - Technical 

(2 Questions)

  • Q1. Coding test with BST, DP
  • Q2. LLD, HLD on telecom. SOLID principles, Design patterns, System design
Round 3 - One-on-one 

(1 Question)

  • Q1. One on one round with Architect and Manager. What do we know about SIP, SS7, Diameter.
Round 4 - HR 

(1 Question)

  • Q1. Usual HR questions

Interview Preparation Tips

Topics to prepare for Mobileum Technical Lead interview:
  • Dynamic programing
  • Binary Search Tree
  • Kafka
  • Rabbitmq
  • Java
  • C++
  • JUnit
Interview preparation tips for other job seekers - Prepare yourselves to get the call back after the scheduled interviews after a month or so if you are selected.

If you get the offer letter, please do not join this company.

Not very considerate people, though the policies are there. No WLB, politics, poor product and project management. Architects know the stuff but they don't have the documents about the products, no KT.

Again please seriously take this advice, if you get one offer, please do not join the company.
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Normal coding test on DSA and LLD.

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

I applied via Campus Placement and was interviewed in Apr 2023. 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 

Platform - Mettl
3 Questions of medium level difficulty to do in 2 hours, typically contain concepts like DSA, DP etc.

Round 3 - Technical 

(3 Questions)

  • Q1. What is structure padding?
  • Ans. 

    Structure padding is the insertion of unused bytes between structure members to align them on memory boundaries.

    • Padding is added to ensure that each member of a structure starts at a memory address that is a multiple of its size.

    • Padding is compiler-dependent and can vary between different platforms and architectures.

    • Padding can affect the size of a structure and the performance of the program.

    • Example: struct example { ...

  • Answered by AI
  • Q2. College Project discussion
  • Q3. Form a dictionary from name.
  • Ans. 

    Forming a dictionary from name

    • Create an empty dictionary

    • Iterate through each character in the name

    • Add the character as a key and its frequency as value in the dictionary

  • Answered by AI

Skills evaluated in this interview

Mentor Graphics Interview FAQs

How many rounds are there in Mentor Graphics Technical Staff Member Lead interview?
Mentor Graphics interview process usually has 4 rounds. The most common rounds in the Mentor Graphics interview process are Telephonic Call, Technical and HR.
What are the top questions asked in Mentor Graphics Technical Staff Member Lead interview?

Some of the top questions asked at the Mentor Graphics Technical Staff Member Lead interview -

  1. In depth F2F interview. Ques depends on which team you are interviewing for. Do...read more
  2. General questions to check basic concepts. to confirm if you are ok to be calle...read more

Tell us how to improve this page.

Mentor Graphics Technical Staff Member Lead Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

Mobileum Interview Questions
3.3
 • 38 Interviews
SOTI Interview Questions
3.3
 • 23 Interviews
Backbase Interview Questions
3.7
 • 22 Interviews
FinThrive Interview Questions
3.7
 • 21 Interviews
Bentley Systems Interview Questions
4.3
 • 21 Interviews
3Pillar Global Interview Questions
3.3
 • 19 Interviews
Yodlee Interview Questions
3.8
 • 17 Interviews
View all
Mentor Graphics Technical Staff Member Lead Salary
based on 12 salaries
₹20 L/yr - ₹35 L/yr
46% less than the average Technical Staff Member Lead Salary in India
View more details

Mentor Graphics Technical Staff Member Lead Reviews and Ratings

based on 2 reviews

4.0/5

Rating in categories

3.0

Skill development

4.5

Work-life balance

2.5

Salary

4.0

Job security

3.5

Company culture

3.0

Promotions

3.0

Work satisfaction

Explore 2 Reviews and Ratings
Senior Member of Technical Staff
70 salaries
unlock blur

₹12 L/yr - ₹27 L/yr

Lead Member Technical Staff
41 salaries
unlock blur

₹19 L/yr - ₹32 L/yr

Member Consulting Staff
35 salaries
unlock blur

₹20 L/yr - ₹56 L/yr

Software Engineer
29 salaries
unlock blur

₹11 L/yr - ₹23 L/yr

Member Technical Staff
25 salaries
unlock blur

₹10 L/yr - ₹20.2 L/yr

Explore more salaries
Compare Mentor Graphics with

Duck Creek Technologies

4.4
Compare

FinThrive

3.7
Compare

Mobileum

3.3
Compare

AgreeYa Solutions

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