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

Updated 14 Nov 2024

Bentley Systems Software Developer Intern Interview Experiences

1 interview found

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

3 question . . . . . . . . . . .

Round 2 - Coding Test 

2 questions . . . . . . . .

Round 3 - Technical 

(2 Questions)

  • Q1. Oops . . . . . .
  • Q2. Projects . . . . . .. .

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via campus placement at Dayananda Sagar College of Engineering, Bangalore and was interviewed in Oct 2024. There were 4 interview rounds.

Round 1 - Coding Test 

3 coding dsa question
Difficulty is On your luck
My friends got easy level
I got medium level
Some got hard questions as well

Round 2 - Aptitude Test 

Ssh round , quant and logical
Tip: bring your calculator

Round 3 - Technical 

(3 Questions)

  • Q1. Two Puzzle : bulb switching and candle
  • Q2. Dsa questions such as string reverse, binary search
  • Q3. Dbms and os core subject questions
Round 4 - HR 

(2 Questions)

  • Q1. How are you better than others
  • Q2. Why should we hire you

Interview Preparation Tips

Interview preparation tips for other job seekers - If you are a girl, the interview rounds will be much easier for you as this company promotes diversity hiring.
The main differing factor is technical round interview which totally depends on the interviewer's mood .
Girls do get priority in this round, they are asked easier questions and will be selected if able to answer 60-70% of the questions.
Note:- it's not like they will hire any girl but a bit easier comparatively
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Hackerrank 3 questions were given of binary search dp and a math coding question

Round 2 - Technical 

(2 Questions)

  • Q1. Heap hard question
  • Q2. Nothing only one question was asked

Interview Preparation Tips

Interview preparation tips for other job seekers - I was not up to the mark
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via campus placement at Kongu Engineering College, Erode and was interviewed in Jan 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Written test coding and with aptitude questions are asked

Round 2 - Technical 

(1 Question)

  • Q1. Asking about OOPS and C++ basics concepts

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

Round 1 - Aptitude Test 
Round 2 - Coding Test 

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare Data structures and algorithms they are the basis for your software engineering career. While developing project understand what you are doing and why you are doing that particular thing, it gives you confidence during interview when interviewer asks you about your project.

I was interviewed in Jan 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Medium

Round 1  was a coding round of 60 min which started around 5:30PM in which 2 problem statements were given. The questions were based on Array and linked list. The platform used for test was coding which was user friendly and which use to display number of test cases passed and some test cases were hidden.

  • Q1. 

    Problem: Deletion in Circular Linked List

    You are provided with a Circular Linked List of integers and a specific integer, referred to as 'key'.

    Your task is to implement a function that locates the spec...

  • Ans. Recursion

    The idea is to use a recursive approach to find the given key and then remove that node. The recursive idea is very clear that we will traverse through the circular linked list, and we will check if the value of the node is equal to the given key. 
     

    We will define a function deleteNodeHelper(root, key, head) to remove the key in which the head is the starting node of the linked list, and we will send ...

  • Answered Anonymously
  • Q2. 

    Rearrange Array: Move Negative Numbers to the Beginning

    Given an array ARR consisting of N integers, rearrange the elements such that all negative numbers are located before all positive numbers. The orde...

  • Ans. Using Sorting

    Approach: A brute force approach could be to just sort the given array in ascending order. This will result in all negative numbers to appear at the beginning and positive number at the end.

    Space Complexity: O(1)Explanation:

    O(1)

     

    Because no extra space is required.

    Time Complexity: O(nlogn)Explanation:

    O(N*logN), where N is the number of elements in the array.

     

    In the worst case, sorting requires O...

  • Answered Anonymously
Round 2 - Video Call 

Round duration - 30-35 minutes
Round difficulty - Medium

This round was of technical interview and they asked me various concepts

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Cummins College Of Engineering For Women, Nagpur. I applied for the job as SDE - Intern in PuneEligibility criteriaAbove 65% in 10th,12th, degreeWolters Kluwer interview preparation:Topics to prepare for the interview - Java, Data Structure, OPPS, SQL, SDLC, Networking, TestingTime required to prepare for the interview - 6 monthsInterview preparation tips for other job seekers

Tip 1 : Read well the job profile, company background and skill requirements and prepare accordingly. 
Tip 2 : Whatever topic you are preparing don't just study to finish the topic but study to understand it because interviewers often deep dive and ask questions, make sure you basics are getting cleared.
Tip 3 : Solve Aptitude questions, coding problems as much as possible.

Application resume tips for other job seekers

Tip 1 : Write optimal yet powerful summary. 
Tip 2 : Highlight your education,internships, projects, certifications.
Tip 3 : Do mention technologies in which you worked on in your internship, projects. 
Tip 4 : If you don't have any internship/project(any one will work fine but both are big plus) done go and get some work done and make your hands dirty and then put it in your resume. 
Tip 6 : Avoid writing long statements.
Tip 7 : Honesty is the best policy.

Final outcome of the interviewSelected

Skills evaluated in this interview

I was interviewed in Oct 2020.

Round 1 - Coding Test 

Round duration - 90 minutes
Round difficulty - Easy

This round was scheduled for 9am in the morning. The test environment was pretty good . I didn't face any issues on the HireVeu platform. The first test was of Aptitude and then in next section it was Technical MCQ's. The level of questions were mid to high level of difficulty.

Round 2 - Coding Test 

(1 Question)

Round duration - 60 minutes
Round difficulty - Medium

The exam was on the same Platform. The first question was about the most difficult Project I've worked on. I have to record a video in that particular platform and then move to the next questions. There was option for a demo video of 1 minute in which you can practice your answers and then can record your answer in the next video of max 5 minutes. The next 2 question were Coding Problems of moderate difficulty and you've to record your approach and then proceed towards solving the code and then record a video stating if you succeed or not and what better could you've done to make it work.

  • Q1. 

    Sum of N-Digit Palindromes

    Determine the sum of all N-digit palindromes for a given integer 'N'. A palindrome is defined as a number that remains the same when its digits are reversed.

    Example:

    Input:
    ...
  • Ans. 

    Run a loop from 10^(n-1) to 10^(n) – 1 and check when the current number is palindrome or not. If it is, adds its value to answer.

  • Answered Anonymously
Round 3 - Face to Face 

Round duration - 45 minutes
Round difficulty - Medium

This round was scheduled for 3pm. The interviewer was quite friendly. He asked about me and told me to relax and then answer. He started with asking questions from my Project and how the ideas behind the Project. My Project was related to Deadlock So he asked whether I can implement my Project on any environment. I answered . Then one of my internship Project was related to Web development so He asked me about the backend of the Project. He gave me a few SQL queries and some general DBMS concepts based on the response about using Mysql in the Project. He asked me a few things about AWS and Cloud Computing which I answered. At last he asked some LINUX commands and corrected me once and was satisfied with my answers.

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Vellore Institute of Technology. I applied for the job as SDE - Intern in BangaloreEligibility criteria8.5 CGPACerner Corporation interview preparation:Topics to prepare for the interview - Data Structures, OOPS , Computer Networking , OS , SQL Queries , Cyber SecurityTime required to prepare for the interview - 8 monthsInterview preparation tips for other job seekers

Tip 1 : Practice at least 5-7 Codes daily from the beginning of preparation.
Tip 2 : Be thoroughly prepared with concepts of Data Structure, Database and Operating System
Tip 3 : Always go through the Company's Job description and About the Company and prepare your answers according to that
Tip 4 : Only mention Projects that you've complete idea about.

Application resume tips for other job seekers

Tip 1 : Have a few Projects on your resume and make sure you know it all about your Projects.
Tip 2 : Only mention the Skills you feel you are confident about. Never lie on your resume.

Final outcome of the interviewSelected

Skills evaluated in this interview

I was interviewed in Aug 2017.

Interview Preparation Tips

Round: Resume Shortlist
Experience: Resumes were shortlisted on the basis of pointer criteria(8.5 +)

Skills: Technical Skill And Speaking Skill, Technical Skill
College Name: Nit bhopal
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Coding Test 

3 coding question in 1:30 hr
2 medium + 1 hard
1- greedy
2- binary search, prefix sum
3- dp (too hard)

Round 2 - One-on-one 

(1 Question)

  • Q1. Low level design type question
Round 3 - One-on-one 

(1 Question)

  • Q1. Hiring manager round. Asked project related questions plus basic hr questions

Interview Preparation Tips

Interview preparation tips for other job seekers - confident, clear concept, project knowledge

I applied via Campus Placement and was interviewed in Dec 2021. There were 3 interview rounds.

Round 1 - Coding Test 

Here , you need to type the code and there won’t be any compiling . So you just need to type what you know

Round 2 - Technical 

(2 Questions)

  • Q1. Oops , programming language ,
  • Q2. SQL, sdlc . These are required
Round 3 - HR 

(1 Question)

  • Q1. Same as anywhere to have

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and say what you know clearly with good communication. Technical round u need to answer better

Bentley Systems Interview FAQs

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

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

  1. projects . . . . . ....read more
  2. oops . . . . ...read more

Tell us how to improve this page.

Bentley Systems Software Developer Intern Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more
Join Bentley Systems Providing software that advances the world’s infrastructure.

Fast track your campus placements

View all
Software Engineer Level 1
87 salaries
unlock blur

₹6 L/yr - ₹17 L/yr

Software Engineer
51 salaries
unlock blur

₹4.8 L/yr - ₹16.8 L/yr

Technical Support Engineer
48 salaries
unlock blur

₹4.8 L/yr - ₹18 L/yr

Associate Software Engineer
44 salaries
unlock blur

₹5.1 L/yr - ₹11.5 L/yr

Softwaretest Engineer
35 salaries
unlock blur

₹3.2 L/yr - ₹6.9 L/yr

Explore more salaries
Compare Bentley Systems with

Autodesk

4.3
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