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 Associate Software Developer Interview Questions and Answers

Updated 16 Jul 2022

Bentley Systems Associate Software Developer Interview Experiences

1 interview found

I applied via Walk-in and was interviewed in Jan 2022. There were 6 interview rounds.

Round 1 - Coding Test 

Coding test purely on DSA. Platform was Codility. Four programming questions in two hours. Difficulty level was a bit above medium.

Round 2 - Coding Test 

Those who cleared first coding test were called to the Pune office. Again a coding test. Two Questions in 55mins. Same platform.

Round 3 - HR 

(4 Questions)

  • Q1. Tell me about yourself.
  • Ans. 

    I am a passionate software developer with experience in various programming languages and a strong problem-solving skills.

    • Experienced in Java, C++, and Python

    • Proficient in web development using HTML, CSS, and JavaScript

    • Strong understanding of data structures and algorithms

    • Worked on projects involving database management and API integration

    • Excellent communication and teamwork skills

  • Answered by AI
  • Q2. Your entire background.
  • Ans. 

    I have a strong background in software development with experience in various programming languages and technologies.

    • Bachelor's degree in Computer Science

    • 3 years of experience as a software developer

    • Proficient in Java, C++, and Python

    • Familiarity with web development using HTML, CSS, and JavaScript

    • Experience with database management systems like MySQL

    • Knowledge of software development methodologies like Agile

    • Strong probl...

  • Answered by AI
  • Q3. Previous projects and internships.
  • Ans. 

    I have worked on various projects and internships related to software development.

    • Developed a web application using HTML, CSS, and JavaScript.

    • Created a mobile app using React Native.

    • Interned at a software company and contributed to the development of a CRM system.

    • Worked on a team project to build a database management system using SQL.

  • Answered by AI
  • Q4. Role you're interested in.
  • Ans. 

    I am interested in the role of Associate Software Developer.

    • I have a strong background in programming languages such as Java, C++, and Python.

    • I have experience in developing web applications using frameworks like React and Angular.

    • I am familiar with software development methodologies such as Agile and Scrum.

    • I enjoy problem-solving and finding efficient solutions to complex technical challenges.

  • Answered by AI
Round 4 - Technical 

(5 Questions)

  • Q1. Tell me about yourself and your background.
  • Ans. 

    I am a software developer with a strong background in programming and problem-solving.

    • Bachelor's degree in Computer Science

    • Experience in developing web applications using Java and JavaScript

    • Proficient in database management systems like MySQL

    • Strong analytical and problem-solving skills

    • Ability to work well in a team and meet deadlines

  • Answered by AI
  • Q2. Questions on previous projects & internships.
  • Q3. Questions based on the entire resume
  • Q4. Deep dive in the DSA.
  • Ans. 

    DSA stands for Data Structures and Algorithms, which are fundamental concepts in computer science.

    • DSA is used to solve complex problems efficiently.

    • Data Structures are ways of organizing and storing data, such as arrays, linked lists, and trees.

    • Algorithms are step-by-step procedures for solving problems, such as sorting and searching.

    • Understanding DSA is essential for software development and programming interviews.

    • Exa...

  • Answered by AI
  • Q5. Interview took around an hour.
Round 5 - HR 

(1 Question)

  • Q1. It was just an informal HR Discussion. Wasn't actually a round.
Round 6 - One-on-one 

(3 Questions)

  • Q1. This round took a month to happen.
  • Q2. It was a 45min interview revolving around the programming paradigms.
  • Q3. This round was with one of the very Senior Authority in the organization

Interview Preparation Tips

Topics to prepare for Bentley Systems Associate Software Developer interview:
  • C++
  • Algorithms
  • Data Structures
  • Basics of Computer Science
Interview preparation tips for other job seekers - 1. A short and crisp resume.
2. Be thorough with the resume.
3. Keep practicing problem solving questions from HackerRank/LeetCode.
4. Sound bold and confident throughout the process.
5. Believe in yourself

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

I applied via Referral and was interviewed before Feb 2021. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Mcq based on aptitude and code ouputs in sql,java
Round 2 - One-on-one 

(1 Question)

  • Q1. Basci techinal questions on java and oops concepts and sql
Round 3 - Group Discussion 

Group discussion on the given topic

Interview Preparation Tips

Interview preparation tips for other job seekers - Go through the oops concepts and core java questions and some sql questions
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Aptitude Test 

100 questions in 90 min

Round 2 - Technical 

(2 Questions)

  • Q1. OOPS principles
  • Q2. Coding question
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Find the 2nd largest number in list

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

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

Bentley Systems Interview FAQs

How many rounds are there in Bentley Systems Associate Software Developer interview?
Bentley Systems interview process usually has 6 rounds. The most common rounds in the Bentley Systems interview process are Coding Test, HR and Technical.
What are the top questions asked in Bentley Systems Associate Software Developer interview?

Some of the top questions asked at the Bentley Systems Associate Software Developer interview -

  1. Deep dive in the D...read more
  2. It was just an informal HR Discussion. Wasn't actually a rou...read more
  3. This round was with one of the very Senior Authority in the organizat...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
 • 157 Interviews
ServiceNow Interview Questions
4.1
 • 120 Interviews
Thomson Reuters Interview Questions
4.1
 • 114 Interviews
Amadeus Interview Questions
3.9
 • 107 Interviews
UKG Interview Questions
3.1
 • 102 Interviews
Atlassian Interview Questions
3.5
 • 88 Interviews
Temenos Interview Questions
3.2
 • 83 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 Associate Software Developer Salary
based on 4 salaries
₹6 L/yr - ₹10 L/yr
38% more than the average Associate Software Developer Salary in India
View more details
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
33 salaries
unlock blur

₹7.3 L/yr - ₹21.5 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