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

Compare button icon Compare button icon Compare

Filter interviews by

Bentley Systems Senior Software Quality Analyst Interview Questions, Process, and Tips

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

Interview questions from similar companies

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 Questionnaire 

23 Questions

  • Q1. In exception handling how many ways can we throw exception
  • Ans. 

    There are two ways to throw an exception in exception handling.

    • Exceptions can be thrown using the throw keyword.

    • Exceptions can also be thrown implicitly by the runtime system.

    • Examples of explicit throwing include throw new Exception() and throw new IOException().

    • Examples of implicit throwing include division by zero or null pointer dereference.

  • Answered by AI
  • 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; }
  • Q21. About searching techniques? some question?
  • Q22. Which search is best?
  • 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

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

I applied via Campus Placement

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 - Technical 

(2 Questions)

  • Q1. They asked about oops, exception handling
  • Q2. A code on strings in Java
  • Ans. 

    Code on strings in Java

    • Use String class methods like length(), charAt(), substring()

    • Strings are immutable in Java, so use StringBuilder for mutable operations

    • String comparison should be done using equals() method, not == operator

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Explain threads, Collection framework, code to remove duplicates and code on linkedlists
  • Ans. 

    Threads are lightweight processes within a program, Collection framework provides data structures, code to remove duplicates involves using sets, code on linkedlists involves traversal and manipulation.

    • Threads are independent paths of execution within a program.

    • Collection framework provides interfaces and classes for storing and manipulating groups of objects.

    • To remove duplicates from a list, we can use a Set data stru...

  • Answered by AI

I applied via Campus Placement and was interviewed in Sep 2021. 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 
Round 3 - Technical 

(1 Question)

  • Q1. View in SQL , programs related to swaping .
Round 4 - HR 

(4 Questions)

  • Q1. Why should we hire you?
  • Q2. Tell me about yourself.
  • Q3. What are your strengths and weaknesses?
  • Q4. Why are you looking for a change?

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on your basics . They won't test high technical skills.

I applied via Campus Placement and was interviewed in Feb 2022. There were 2 interview rounds.

Round 1 - Aptitude Test 

Basic aptitude and coding test

Round 2 - One-on-one 

(1 Question)

  • Q1. Basic fundamental programming questions,oops concept,aptitude questions and behavioural questions

Interview Preparation Tips

Topics to prepare for Infor Global Solution Associate Software Engineer interview:
  • Python
Interview preparation tips for other job seekers - Strong on fundamentals and good at aptitude
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 4 interview rounds.

Round 1 - Coding Test 

2 questions Based on arrays level of medium

Round 2 - Technical 

(1 Question)

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

(1 Question)

  • Q1. Question based on metrix
Round 4 - 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
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
6-8 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed before Apr 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

It is mcq type with technical and aptitude questions

Round 2 - Technical 

(1 Question)

  • Q1. Basics of oops projects sql queries
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Not Selected

I applied via Job Portal and was interviewed before May 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

Basic to moderate questions of medium difficulty

Round 2 - Coding Test 

Medium to hard questions but short ones

Round 3 - One-on-one 

(2 Questions)

  • Q1. Basic SQL questions
  • Q2. Projects and experience

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, Analytical, Functional Testing, Performance Testing and Agile Coaching.
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.7
 • 158 Interviews
ServiceNow Interview Questions
4.1
 • 121 Interviews
Thomson Reuters Interview Questions
4.1
 • 114 Interviews
Amadeus Interview Questions
3.9
 • 108 Interviews
UKG Interview Questions
3.1
 • 103 Interviews
Atlassian Interview Questions
3.5
 • 89 Interviews
Temenos Interview Questions
3.1
 • 85 Interviews
Wolters Kluwer Interview Questions
3.9
 • 80 Interviews
Nutanix Interview Questions
3.8
 • 76 Interviews
View all

Fast track your campus placements

View all
Bentley Systems Senior Software Quality Analyst Salary
based on 14 salaries
₹12.2 L/yr - ₹23.1 L/yr
70% 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 L/yr - ₹17 L/yr

Software Engineer
51 salaries
unlock blur

₹4.8 L/yr - ₹16.8 L/yr

Associate Software Engineer
44 salaries
unlock blur

₹5.1 L/yr - ₹11.5 L/yr

Technical Support Engineer
43 salaries
unlock blur

₹4.8 L/yr - ₹18 L/yr

Software Engineer II
34 salaries
unlock blur

₹7.3 L/yr - ₹25.4 L/yr

Explore more salaries
Compare Bentley Systems with

Thomson Reuters

4.1
Compare

Oracle Cerner

3.7
Compare

Temenos

3.1
Compare

UKG

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