Premium Employer

i

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

Bentley Systems Verified Tick Work with us arrow

Compare button icon Compare button icon Compare

Filter interviews by

Bentley Systems Senior Software Quality Analyst Interview Questions and Answers

Updated 9 Sep 2020

Bentley Systems Senior Software Quality Analyst Interview Experiences

1 interview found

I applied via Referral and was interviewed in Mar 2020. There were 6 interview rounds.

Interview Questionnaire 

8 Questions

  • Q1. Your role and responsibility.
  • Ans. 

    As a Senior Software Quality Analyst, my role is to ensure the quality of software products by designing and implementing test strategies, conducting test cases, and identifying and reporting defects.

    • Design and implement test strategies to ensure software quality

    • Conduct test cases to identify defects and ensure functionality

    • Collaborate with development teams to address and resolve issues

    • Report defects and track resolut...

  • Answered by AI
  • Q2. How Agile works in your previous organization?
  • Q3. Manual and Automation Question
  • Q4. When you will say to stop testing?
  • Ans. 

    Testing can be stopped when certain conditions are met.

    • Stop testing when all test cases have been executed and passed successfully.

    • Stop testing when the project deadline is approaching and the remaining testing effort is not feasible.

    • Stop testing when the cost of finding and fixing defects outweighs the benefits of further testing.

    • Stop testing when the software meets the specified requirements and is deemed fit for rel...

  • Answered by AI
  • Q5. What if last minute testing you find blocker/major bugs?
  • Ans. 

    If last minute testing finds blocker/major bugs, prioritize and communicate the issues to the relevant stakeholders.

    • Prioritize the bugs based on their severity and impact on the system

    • Communicate the issues to the development team and project manager

    • Provide detailed information about the bugs, including steps to reproduce and potential impact

    • Work with the team to determine the best course of action, such as fixing the ...

  • Answered by AI
  • Q6. Explain sprint ceremony?
  • Ans. 

    Sprint ceremony is a set of meetings held during a sprint in Agile software development.

    • Sprint planning: Discussing and prioritizing the user stories for the upcoming sprint.

    • Daily stand-up: A short daily meeting where team members share progress, discuss challenges, and plan for the day.

    • Sprint review: Demonstrating the completed work to stakeholders and gathering feedback.

    • Sprint retrospective: Reflecting on the sprint,...

  • Answered by AI
  • Q7. If there is any bug/defect leakage, how will you tackle that situation and what you make that it won't occur in future.
  • Ans. 

    To tackle bug/defect leakage, I would implement a comprehensive defect management process and focus on preventive measures.

    • Implement a robust defect management process

    • Conduct thorough testing and review processes

    • Use automated testing tools and techniques

    • Establish clear communication channels with the development team

    • Analyze root causes of bug leakage and take corrective actions

    • Implement preventive measures such as code...

  • Answered by AI
  • Q8. What's your goal toward Bentley

Interview Preparation Tips

Interview preparation tips for other job seekers - I faced total 5 round which took almost a month to complete and joining take another 20 days. Joining in Bentley required patience.
Be prepared with real time scenarios, they always ask real time incident.

Skills evaluated in this interview

Top trending discussions

View All
Interview Tips & Stories
4d (edited)
a team lead
Why are women still asked such personal questions in interview?
I recently went for an interview… and honestly, m still trying to process what just happened. Instead of being asked about my skills, experience, or how I could add value to the company… the questions took a totally unexpected turn. The interviewer started asking things like When are you getting married? Are you engaged? And m sure, if I had said I was married, the next question would’ve been How long have you been married? What does my personal life have to do with the job m applying for? This is where I felt the gender discrimination hit hard. These types of questions are so casually thrown at women during interviews but are they ever asked to men? No one asks male candidates if they’re planning a wedding or how old their kids are. So why is it okay to ask women? Can we please stop normalising this kind of behaviour in interviews? Our careers shouldn’t be judged by our relationship status. Period.
Got a question about Bentley Systems?
Ask anonymously on communities.

Interview questions from similar companies

Interview Questionnaire 

23 Questions

  • Q1. In exception handling how many ways can we throw exception
  • Q2. Reverse string Program
  • Ans. 

    Reverse a given string using array of characters.

    • Create an empty array to store the reversed string.

    • Loop through the original string from end to start.

    • Push each character into the empty array.

    • Join the array to form the reversed string.

  • Answered by AI
  • Q3. Difference between copy constructor and assignment operator
  • Ans. 

    Copy constructor creates a new object by copying an existing object, while assignment operator assigns the value of an existing object to another object.

    • Copy constructor is used to initialize a new object with the values of an existing object.

    • Assignment operator is used to assign the value of an existing object to another object.

    • Copy constructor is called when a new object is created from an existing object.

    • Assignment ...

  • Answered by AI
  • Q4. Implement a simple copy constructor. why to we implement our own
  • Ans. 

    A copy constructor is used to create a new object with the same values as an existing object. We implement our own to ensure proper copying of data members.

    • A copy constructor is needed when we want to create a new object with the same values as an existing object.

    • If we don't implement our own copy constructor, the default copy constructor provided by the compiler may not copy data members properly.

    • We can implement our ...

  • Answered by AI
  • Q5. Why we use QT framework?
  • Ans. 

    QT framework is used for developing cross-platform applications with a single codebase.

    • QT provides a wide range of libraries and tools for developing GUI applications.

    • QT supports multiple platforms including Windows, Linux, macOS, Android, and iOS.

    • QT has a large community and extensive documentation.

    • QT is written in C++ and supports other programming languages like Python and Java.

    • QT is used by companies like Autodesk,...

  • Answered by AI
  • Q6. What is RTTI?
  • Ans. 

    RTTI stands for Run-Time Type Identification.

    • RTTI is a feature in C++ that allows the type of an object to be determined at runtime.

    • It is used to implement dynamic_cast, typeid, and exception handling.

    • RTTI can be used to check if an object is of a certain type before casting it.

    • It can also be used to determine the type of an object in order to perform specific operations on it.

  • Answered by AI
  • Q7. Some questions on STL?
  • Q8. Which design patterns you used and why explain?
  • Ans. 

    I have used the Singleton and Factory design patterns in my previous projects.

    • Singleton pattern was used to ensure only one instance of a class is created and provide a global point of access to it.

    • Factory pattern was used to create objects without exposing the instantiation logic to the client and provide a way to create objects of a family without specifying their concrete classes.

  • Answered by AI
  • Q9. What are all the Os QT supports ? do i need to compile again for every Operating system?
  • Ans. 

    QT supports multiple operating systems and cross-compilation is possible.

    • QT supports Windows, macOS, Linux, Android, iOS, and many other operating systems.

    • Cross-compilation is possible, meaning you can compile for different operating systems on a single machine.

    • QT also supports embedded systems like Raspberry Pi and BeagleBone.

    • QT provides pre-built binaries for some operating systems, but for others, you may need to co...

  • Answered by AI
  • Q10. What is Qpointer?
  • Ans. 

    QPointer is a deprecated Qt class used for storing and managing pointers.

    • QPointer is used to avoid dangling pointers in Qt applications.

    • It is a template class that can be used with any QObject-derived class.

    • QPointer is now deprecated and replaced by QWeakPointer.

    • QPointer can be used to check if a QObject is still valid before accessing it.

  • Answered by AI
  • Q11. What is dpointer?
  • Ans. 

    dpointer is a Qt framework concept used for efficient memory management.

    • dpointer is a private implementation pointer.

    • It is used to hide implementation details from the public API.

    • dpointer allows for copy-on-write semantics.

    • It reduces memory usage and improves performance.

    • Example: QString uses dpointer to store its data.

    • Example: QSharedDataPointer is used to share data between objects.

  • Answered by AI
  • Q12. Which version of Qt you used?
  • Ans. 

    I have used Qt version 5.12.3 for my previous project.

    • Qt version 5.12.3 was used in my previous project

    • I have experience working with Qt 5.15.2 as well

    • I am familiar with the features and functionalities of Qt 5.12.3

  • Answered by AI
  • Q13. Some more questions on Qt not able to remember now
  • Q14. Some questions on my projects
  • Q15. How to find linkedlist is circualar or not?
  • Ans. 

    To check if a linked list is circular, use two pointers, one moving at twice the speed of the other. If they meet, the list is circular.

    • Use two pointers, one moving at twice the speed of the other

    • If the faster pointer catches up to the slower pointer, the list is circular

    • If the faster pointer reaches the end of the list, the list is not circular

  • Answered by AI
  • Q16. Find the Merge point in 2 linkedlists?
  • Ans. 

    Find the merge point of 2 linked lists.

    • Traverse both lists and find their lengths

    • Move the pointer of the longer list to the same distance as the shorter list

    • Move both pointers until they meet at the merge point

    • If there is no merge point, return null

  • Answered by AI
  • Q17. How to find the string in an array of strings which are arranged in sorted order in the array?
  • Ans. 

    To find a string in a sorted array of strings.

    • Use binary search algorithm to search for the string in the array.

    • Compare the search string with the middle element of the array.

    • If the search string is less than the middle element, search in the left half of the array.

    • If the search string is greater than the middle element, search in the right half of the array.

    • Repeat the process until the string is found or the search sp...

  • Answered by AI
  • Q18. Some questions on singleton design pattern?
  • Q19. Single ton class also? How to create the singleton and how to delete the singleton object?
  • Ans. 

    Singleton class is a design pattern that restricts the instantiation of a class to one object.

    • To create a singleton, we need to make the constructor private and provide a static method to get the instance of the class.

    • To delete the singleton object, we can simply set the instance to null.

    • Singletons are useful when we need to ensure that only one instance of a class exists throughout the application.

    • Example: Logger clas...

  • Answered by AI
  • Q20. )Asked Outputs of some methods void myfunc(int *a) { a = new int; *a=10; } int main() { int *p; myfunc(p); std::cout<<"p value is "<<*p< return 0; }
  • Ans. 

    The code demonstrates pointer behavior and memory allocation in C++, leading to undefined behavior.

    • Pointers in C++ can point to memory locations, but passing them by value does not affect the original pointer.

    • In myfunc, 'a' is a local copy of 'p', so changes to 'a' do not reflect in 'p' in main.

    • Dereferencing 'p' in main leads to undefined behavior since 'p' was never initialized.

  • Answered by AI
  • Q21. About searching techniques? some question?
  • Q22. Which search is best?
  • Ans. 

    The best search method depends on the context, data structure, and requirements of the task at hand.

    • Binary Search: Efficient for sorted arrays, with O(log n) time complexity. Example: Finding an element in a sorted list.

    • Linear Search: Simple and works on unsorted data, with O(n) time complexity. Example: Searching for a name in an unsorted list.

    • Depth-First Search (DFS): Useful for tree/graph traversal. Example: Finding...

  • Answered by AI
  • Q23. How do you do dynamic memory allocation in C,C++? what is the difference?
  • Ans. 

    Dynamic memory allocation in C/C++ is done using malloc(), calloc(), realloc() functions. C++ also has new and delete operators.

    • malloc() allocates memory block of specified size

    • calloc() allocates memory block and initializes it to zero

    • realloc() changes the size of previously allocated memory block

    • new operator in C++ allocates memory and calls constructor

    • delete operator in C++ deallocates memory and calls destructor

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: Aptitude Test : 30-60 Minutes.Quantitative (Maths) + Verbal (English Objective) + Logical Reasoning (LR) + Data Interpretation (DI)Technical Written : 30-60 Minutes

College Name: BITS MESRA

Skills evaluated in this interview

Senior Software Quality Analyst Interview Questions Asked at Other Companies

Q1. If a bug or defect is leaked, how will you address the situation ... read more
Q2. What would you do if you found blocker/major bugs during last-min ... read more
Q3. When do you know when to stop testing?
Q4. What is the difference between a test case and a test strategy?
Q5. Can you explain the sprint ceremony?

I appeared for an interview in Oct 2016.

Interview Preparation Tips

Round: Test
Total Questions: 100

Round: Group Discussion
Duration: 1 hour

College Name: Sri Venkateswara College Of Engineering
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Recruitment Consulltant and was interviewed in Dec 2022. There were 5 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 

2 questions Based on arrays level of medium

Round 3 - Technical 

(1 Question)

  • Q1. 2 questions based on array and linked list
Round 4 - Technical 

(1 Question)

  • Q1. Question based on metrix
Round 5 - HR 

(1 Question)

  • Q1. Behavioural questions

Interview Preparation Tips

Topics to prepare for ServiceNow Associate Software Engineer interview:
  • Data Structures
  • OOPS
Interview preparation tips for other job seekers - Mostly data structures topics are important so you can practicing data structures questions

I applied via Naukri.com and was interviewed in May 2022. There was 1 interview round.

Round 1 - HR 

(1 Question)

  • Q1. Be prepared with your strength and weakness and just be yourself.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be yourself and focus on the basics whatever you have learnt throughout your curriculum.
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed before Apr 2022. There were 4 interview rounds.

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 - Aptitude Test 

1 hr test, simple aptitude questions

Round 3 - Coding Test 

Simple coding questions

Round 4 - Technical 

(3 Questions)

  • Q1. Reverse the string
  • Ans. 

    Reverse a given string

    • Iterate through the string from end to start and append each character to a new string

    • Use built-in functions like reverse() in Python or StringBuilder.reverse() in Java

    • Convert the string to an array, reverse the array, and convert it back to a string

  • Answered by AI
  • Q2. Basic Networking questions
  • Q3. Questions on working of jvm

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
6-8 weeks
Result
Selected Selected

I appeared for an interview before Feb 2024.

Round 1 - Coding Test 

Coding problems, DSA

Round 2 - Aptitude Test 

IQ Testing Problems, English

Round 3 - Technical 

(2 Questions)

  • Q1. Stack and queue
  • Q2. About Testing

Interview Preparation Tips

Interview preparation tips for other job seekers - Be cool and confident. They're open to new learners
Are these interview questions helpful?
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview before Feb 2024.

Round 1 - Coding Test 

Coding of Java and Sql

Round 2 - One-on-one 

(2 Questions)

  • Q1. Basic to moderate questions on data structure and algorithms, git and sql
  • Q2. Situation qns
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview in Jan 2025.

Round 1 - Technical 

(2 Questions)

  • Q1. Basic sql query and some project related questions
  • Q2. What is indexing
  • Ans. 

    Indexing is a technique used to optimize the performance of databases by creating a data structure that allows for quick lookup of data.

    • Indexing involves creating a data structure that maps key values to their corresponding data entries.

    • It helps in speeding up data retrieval operations by reducing the number of disk accesses needed.

    • Examples of indexing include creating indexes on columns in a database table to improve ...

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Some management questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview is easy but work culture is too bad
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Mar 2023. There were 4 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 was a test with 4 questions and 3 to be answered mandatorily, 1 SQL and 2 Programming on our preferred language and a paragraph writing as 5th question.

Round 3 - Technical 

(2 Questions)

  • Q1. Resume based questions, Basic programming and SQL questions, Types of Cloud services, About Temenos and a few scenario based questions.
  • Q2. Simple Answers can google basic questions on programming for freshers
Round 4 - HR 

(1 Question)

  • Q1. HR Explained job roles and responsibilities

Bentley Systems Interview FAQs

How to prepare for Bentley Systems Senior Software Quality Analyst 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 Bentley Systems. The most common topics and skills that interviewers at Bentley Systems expect are Javascript, Selenium Testing, Automation Testing, Communication Skills and Test Complete.
What are the top questions asked in Bentley Systems Senior Software Quality Analyst interview?

Some of the top questions asked at the Bentley Systems Senior Software Quality Analyst interview -

  1. If there is any bug/defect leakage, how will you tackle that situation and what...read more
  2. What if last minute testing you find blocker/major bu...read more
  3. When you will say to stop testi...read more

Tell us how to improve this page.

Join Bentley Systems Providing software that advances the world’s infrastructure.

Interview Questions from Similar Companies

Oracle Cerner Interview Questions
3.6
 • 162 Interviews
Thomson Reuters Interview Questions
4.1
 • 125 Interviews
ServiceNow Interview Questions
4.1
 • 124 Interviews
Amadeus Interview Questions
3.8
 • 115 Interviews
UKG Interview Questions
3.1
 • 111 Interviews
Atlassian Interview Questions
3.4
 • 92 Interviews
Temenos Interview Questions
3.1
 • 91 Interviews
Wolters Kluwer Interview Questions
3.9
 • 87 Interviews
Nutanix Interview Questions
3.8
 • 79 Interviews
View all
Bentley Systems Senior Software Quality Analyst Salary
based on 14 salaries
₹12.2 L/yr - ₹23.1 L/yr
60% more than the average Senior Software Quality Analyst Salary in India
View more details

Bentley Systems Senior Software Quality Analyst Reviews and Ratings

based on 1 review

5.0/5

Rating in categories

5.0

Skill development

5.0

Work-life balance

4.0

Salary

5.0

Job security

5.0

Company culture

4.0

Promotions

5.0

Work satisfaction

Explore 1 Review and Rating
Software Engineer Level 1
86 salaries
unlock blur

₹6.2 L/yr - ₹18.5 L/yr

Software Engineer
54 salaries
unlock blur

₹6 L/yr - ₹16.8 L/yr

Technical Support Engineer
53 salaries
unlock blur

₹9.9 L/yr - ₹15.4 L/yr

Software Quality Analyst
48 salaries
unlock blur

₹8.4 L/yr - ₹17.7 L/yr

Associate Software Engineer
41 salaries
unlock blur

₹6 L/yr - ₹14.2 L/yr

Explore more salaries
Compare Bentley Systems with

Thomson Reuters

4.1
Compare

Oracle Cerner

3.6
Compare

Temenos

3.1
Compare

Amadeus

3.8
Compare
write
Share an Interview