i
Bentley Systems
Filter interviews by
I applied via Referral and was interviewed in Mar 2020. There were 6 interview rounds.
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...
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...
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 ...
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,...
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...
posted on 14 May 2017
I appeared for an interview in Oct 2016.
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.
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.
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 ...
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 ...
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,...
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.
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.
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...
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.
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.
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
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
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
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
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...
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
posted on 7 Sep 2023
I applied via Campus Placement
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
posted on 17 Jul 2024
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...
posted on 18 Mar 2022
I applied via Campus Placement and was interviewed in Sep 2021. There were 4 interview rounds.
posted on 24 Mar 2022
I applied via Campus Placement and was interviewed in Feb 2022. There were 2 interview rounds.
Basic aptitude and coding test
posted on 11 Jan 2023
I applied via Recruitment Consulltant and was interviewed in Dec 2022. There were 4 interview rounds.
2 questions Based on arrays level of medium
posted on 26 Apr 2024
I applied via Campus Placement and was interviewed before Apr 2023. There were 2 interview rounds.
It is mcq type with technical and aptitude questions
posted on 6 May 2024
I applied via Job Portal and was interviewed before May 2023. There were 3 interview rounds.
Basic to moderate questions of medium difficulty
Medium to hard questions but short ones
based on 1 review
Rating in categories
Software Engineer Level 1
86
salaries
| ₹6 L/yr - ₹17 L/yr |
Software Engineer
51
salaries
| ₹4.8 L/yr - ₹16.8 L/yr |
Associate Software Engineer
44
salaries
| ₹5.1 L/yr - ₹11.5 L/yr |
Technical Support Engineer
43
salaries
| ₹4.8 L/yr - ₹18 L/yr |
Software Engineer II
34
salaries
| ₹7.3 L/yr - ₹25.4 L/yr |
Thomson Reuters
Oracle Cerner
Temenos
UKG