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

Round 1 - Technical 

(2 Questions)

  • Q1. Manual testing questions
  • Q2. Priority severity,project explain,sql

Interview Preparation Tips

Interview preparation tips for other job seekers - Very good company . Work life balance
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement

Round 1 - Aptitude Test 

Question related to operating system and computer network

Round 2 - Technical 

(1 Question)

  • Q1. Traverse all child nodes in tree
  • Ans. 

    Traverse all child nodes in a tree data structure

    • Use depth-first or breadth-first traversal algorithms

    • Recursively visit each child node starting from the root node

    • Consider using a stack or queue data structure for traversal

    • Example: Traverse all nodes in a binary tree

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. Question related to cloud and oops
Round 4 - Technical 

(1 Question)

  • Q1. Question related to my background and how web site work
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
-
Result
Selected Selected
Round 1 - Technical 

(1 Question)

  • Q1. JavaScript , coding questions
Round 2 - Technical 

(1 Question)

  • Q1. Coding problem, JavaScript and nodejs question
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
-

I applied via Referral and was interviewed in Sep 2024. There were 2 interview rounds.

Round 1 - Technical 

(4 Questions)

  • Q1. Find longest palindromic substring in a given string.
  • Ans. 

    Use dynamic programming to find the longest palindromic substring in a given string.

    • Iterate through the string and expand around each character to find palindromes.

    • Store the length of the longest palindrome found so far.

    • Return the substring based on the start and end indices of the longest palindrome.

  • Answered by AI
  • Q2. How to serialize and deserialise a tree
  • Ans. 

    To serialize and deserialize a tree, use a recursive approach to traverse the tree and store the data in a suitable format.

    • Use pre-order traversal to serialize the tree by storing the node values in a list or string.

    • For deserialization, reconstruct the tree by recursively building nodes from the serialized data.

    • Consider using JSON or XML format for serialization to easily store and retrieve tree structure.

  • Answered by AI
  • Q3. Find if a given regex (containing ., * and lower case english chars) matches a given string.
  • Ans. 

    Use regex library to match given regex with string.

    • Use a regex library like re in Python to match the given regex with the string.

    • Check if the regex matches the string using the library functions.

    • Handle cases where the regex contains special characters like . and * appropriately.

  • Answered by AI
  • Q4. Explain about throttling and implement throttle function.
  • Ans. 

    Throttling is a technique used to control the rate of requests sent to a server.

    • Throttling helps prevent server overload by limiting the number of requests processed at a time.

    • Implementing a throttle function involves setting a maximum request rate and delaying excess requests.

    • Example: Implementing a throttle function in a web application to limit the number of API calls made to a third-party service.

    • Example: Throttlin...

  • Answered by AI
Round 2 - Technical 

(4 Questions)

  • Q1. Find squares of elements in a sorted array and return the sorted response.
  • Ans. 

    Sort the squares of elements in a sorted array and return the sorted response.

    • Iterate through the array and square each element.

    • Store the squared values in a new array.

    • Sort the new array and return it.

  • Answered by AI
  • Q2. Write a short promise example and implement your own promise
  • Ans. 

    A promise is a commitment to do something in the future, typically used for asynchronous operations in JavaScript.

    • Promises are used to handle asynchronous operations in JavaScript.

    • They represent a value that may be available now, in the future, or never.

    • Promises have three states: pending, fulfilled, or rejected.

    • Example: new Promise((resolve, reject) => { setTimeout(() => resolve('Done!'), 1000); });

  • Answered by AI
  • Q3. Explain event loop, what are different types of queues in event loop
  • Ans. 

    Event loop is a mechanism that allows for asynchronous execution of code by managing the order of events in a single thread.

    • Event loop continuously checks the call stack for any functions that need to be executed, and processes them in a non-blocking manner.

    • Different types of queues in event loop include microtask queue (Promise callbacks), macrotask queue (setTimeout, setInterval callbacks), and animation frame queue

  • Answered by AI
  • Q4. What is virtual DOM and why its faster
  • Ans. 

    Virtual DOM is a lightweight copy of the actual DOM, used to improve performance by minimizing direct manipulation of the real DOM.

    • Virtual DOM is a concept used in frameworks like React to optimize rendering performance.

    • Changes are first made to the virtual DOM, which is then compared to the real DOM to identify the minimal updates needed.

    • This approach reduces the number of actual DOM manipulations, resulting in faster...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for ServiceNow Senior Software Engineer interview:
  • React.Js
  • Javascript
  • DSA

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
-
Result
-

I applied via Naukri.com and was interviewed in Sep 2024. There was 1 interview round.

Round 1 - Technical 

(5 Questions)

  • Q1. Explain OOPS concept and how you apply it in your implementation
  • Ans. 

    OOPS is a programming paradigm based on the concept of objects, which can contain data in the form of fields and code in the form of procedures.

    • OOPS focuses on the concept of classes and objects

    • Encapsulation: bundling data and methods that operate on the data within a single unit

    • Inheritance: allows a class to inherit properties and behavior from another class

    • Polymorphism: ability to present the same interface for diffe...

  • Answered by AI
  • Q2. Difference between Comparable and Comparator. Difference between Abstract Class and Interface
  • Ans. 

    Comparable is an interface used for natural ordering, Comparator is an interface used for custom ordering. Abstract class can have method implementations, Interface cannot.

    • Comparable interface is used to define the natural ordering of objects. Example: String class implements Comparable interface for natural ordering based on alphabetical order.

    • Comparator interface is used to define custom ordering of objects. Example:...

  • Answered by AI
  • Q3. Given a string. Find the number of occurrences of each character
  • Ans. 

    Count occurrences of each character in a given string

    • Create an array to store the count of each character

    • Iterate through the string and increment the count of each character in the array

    • Return the array with counts for each character

  • Answered by AI
  • Q4. Given an array. Remove the number of duplicates
  • Ans. 

    Remove duplicates from an array of strings

    • Iterate through the array and store each element in a set to keep track of unique values

    • Create a new array with the unique values from the set

  • Answered by AI
  • Q5. Given a student object having name and grade data variables. Sort the object on the basis of highest grade.

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Basic java fundamentals
  • Q2. Spring boot,sql
Round 2 - Technical 

(2 Questions)

  • Q1. Some technical questions from manager
  • Q2. Some challenges or scenario based questions
Round 3 - HR 

(2 Questions)

  • Q1. Salary discussion mostly
  • Q2. Benifts that they offer with TR
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Not Selected
Round 1 - Coding Test 

DSA round leetcode style question

Round 2 - Technical 

(1 Question)

  • Q1. Design + Coding round for rate limiter

Interview Preparation Tips

Interview preparation tips for other job seekers - Final round - System Design
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. React native related questions
  • Q2. Experince in developing mobile apps
  • Ans. 

    I have 3 years of experience developing mobile apps for both iOS and Android platforms.

    • Developed mobile apps using Swift for iOS and Java/Kotlin for Android

    • Experience with mobile app design principles and user interface development

    • Worked on integrating APIs and third-party libraries for enhanced functionality

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Generic interview

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected
Round 1 - Technical 

(2 Questions)

  • Q1. Linkedlist , array, stack
  • Q2. What is big data
  • Ans. 

    Big data refers to large volumes of structured and unstructured data that is too complex for traditional data processing applications.

    • Big data involves processing and analyzing large volumes of data to uncover patterns, trends, and insights.

    • It can come from various sources such as social media, sensors, devices, and business transactions.

    • Examples of big data technologies include Hadoop, Spark, and NoSQL databases.

    • Big d...

  • Answered by AI

Skills evaluated in this interview

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

Globant Interview Questions
3.8
 • 172 Interviews
Dassault Systemes Interview Questions
4.0
 • 160 Interviews
Oracle Cerner Interview Questions
3.7
 • 157 Interviews
ServiceNow Interview Questions
4.1
 • 120 Interviews
Thomson Reuters Interview Questions
4.1
 • 112 Interviews
Amadeus Interview Questions
3.9
 • 107 Interviews
UKG Interview Questions
3.1
 • 99 Interviews
Atlassian Interview Questions
3.6
 • 88 Interviews
Temenos Interview Questions
3.3
 • 82 Interviews
Wolters Kluwer Interview Questions
3.9
 • 80 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
88 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
41 salaries
unlock blur

₹4.8 L/yr - ₹18 L/yr

Software Engineer II
33 salaries
unlock blur

₹7.3 L/yr - ₹21.5 L/yr

Explore more salaries
Compare Bentley Systems with

Autodesk

4.2
Compare

Dassault Systemes

4.0
Compare

Siemens PLM Software

4.2
Compare

Trimble

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