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

Clear (1)

Bentley Systems Intern Interview Questions and Answers

Updated 27 Jun 2021

Bentley Systems Intern Interview Experiences

1 interview found

Intern Interview Questions & Answers

user image Anonymous

posted on 27 Jun 2021

I applied via Recruitment Consultant and was interviewed in Dec 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. First round was coding round : 1. One string rotaion of other 2. Nearest largest and smallest prime value of given input. interview questions:What is difference between reference variable and pointer ?

Interview Preparation Tips

Interview preparation tips for other job seekers - Study on cpp , python basic if specified , data structure , oop.

Interview questions from similar companies

I was interviewed in Feb 2017.

Interview Questionnaire 

4 Questions

  • Q1. Everything related to previous projects.
  • Q2. Normalization of database to BCNF
  • Ans. 

    Normalization to BCNF ensures that every non-trivial functional dependency is satisfied.

    • Identify all functional dependencies

    • Eliminate partial dependencies

    • Eliminate transitive dependencies

    • Ensure every determinant is a candidate key

  • Answered by AI
  • Q3. Difference between 'having' clause and 'where' clause in MySQL
  • Ans. 

    HAVING clause is used with GROUP BY to filter groups, WHERE clause is used to filter rows.

    • HAVING clause is used with GROUP BY clause to filter groups based on aggregate functions.

    • WHERE clause is used to filter rows based on conditions.

    • HAVING clause is used after GROUP BY clause, while WHERE clause is used before GROUP BY clause.

    • HAVING clause can use aggregate functions, while WHERE clause cannot.

    • Example: SELECT categor...

  • Answered by AI
  • Q4. DBMS queries

Interview Preparation Tips

Round: Technical Interview
Experience: It was 1-to-1 interview where I was asked about the previous projects first. They have asked everything about the project, from why we chose the technology we chose and how we implemented it.
Tips: Can't give much tips as I have not faced many interviews myself, but as far as internship interviews go, they require candidates who are willing to learn. You don't need to convince them that you know everything, as the basic understanding of the subject and willingness to learn will do just fine.

Round: Test
Duration: 20 minutes
Total Questions: 25

College Name: PDPM IIITDM, Jabalpur

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Aptitude Test 

Digital electronics, circuits , verilog , asic design flow

Round 2 - Technical 

(2 Questions)

  • Q1. Explain the complete asic design flow process
  • Ans. 

    ASIC design flow process involves steps like specification, design, verification, synthesis, and testing.

    • Specification: Define requirements and constraints for the ASIC design.

    • Design: Create a high-level design based on the specifications.

    • Verification: Verify the design using simulations and tests.

    • Synthesis: Convert the design into a netlist of gates and connections.

    • Testing: Test the fabricated ASIC to ensure functiona...

  • Answered by AI
  • Q2. Power reduction techniques in CMOS
  • Ans. 

    Power reduction techniques in CMOS involve various methods to minimize power consumption in CMOS circuits.

    • Use of power gating to selectively turn off power to unused circuit blocks

    • Implementing clock gating to disable clock signals to unused circuitry

    • Utilizing voltage scaling to reduce power consumption at lower voltages

    • Applying dynamic voltage and frequency scaling to adjust voltage and frequency based on workload

    • Using...

  • Answered by AI
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in Mar 2024. There were 2 interview rounds.

Round 1 - Assignment 

Just focus and data structures and algorithms

Round 2 - HR 

(1 Question)

  • Q1. What are your weaknesses

Interview Preparation Tips

Interview preparation tips for other job seekers - Make sure to know http requests

I applied via Referral and was interviewed before Jul 2021. There was 1 interview round.

Round 1 - One-on-one 

(1 Question)

  • Q1. Give me an example where you solved a problem and the steps you followed
  • Ans. 

    I solved a customer complaint by identifying the root cause and providing a solution

    • Listened to the customer's complaint and empathized with their situation

    • Analyzed the issue and identified the root cause

    • Developed a solution and presented it to the customer

    • Followed up with the customer to ensure their satisfaction

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare for competency-based questions where you elaborate from your experience.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Coding Test 

Coding Round is conducted in HackerRank Test

Round 2 - Technical 

(2 Questions)

  • Q1. What is the difference between MySQL and Postgresql.
  • Ans. 

    MySQL is known for its speed and ease of use, while PostgreSQL is known for its advanced features and extensibility.

    • MySQL is more commonly used in web applications due to its speed and simplicity.

    • PostgreSQL is preferred for complex applications that require advanced features like JSON support, full-text search, and custom data types.

    • MySQL has a larger market share and is owned by Oracle, while PostgreSQL is open-source...

  • Answered by AI
  • Q2. What is the principle of OOPS
  • Ans. 

    OOPS stands for Object-Oriented Programming. It is a programming paradigm based on the concept of objects, which can contain data and code.

    • OOPS focuses on the use of classes and objects to organize code

    • Encapsulation: bundling data and methods that operate on the data into a single unit (class)

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

    • Polymorphism: the ability for objects of differ...

  • Answered by AI
Round 3 - Technical 

(2 Questions)

  • Q1. What is the OOPS
  • Ans. 

    OOPS stands for Object-Oriented Programming. It is a programming paradigm based on the concept of objects, which can contain data and code.

    • OOPS focuses on creating objects that interact with each other to solve problems

    • It involves concepts like classes, objects, inheritance, polymorphism, and encapsulation

    • Example: In a banking system, you can have classes like Account, Customer, and Transaction, each with their own pro

  • Answered by AI
  • Q2. How Will You Include CSS in HTML
  • Ans. 

    CSS can be included in HTML using inline, internal, or external methods.

    • Use inline CSS by adding the style attribute to HTML elements

    • Use internal CSS by placing CSS code within <style> tags in the <head> section of the HTML document

    • Use external CSS by linking an external CSS file to the HTML document using the <link> tag in the <head> section

  • Answered by AI

Skills evaluated in this interview

Intern Interview Questions & Answers

PTC user image Anonymous

posted on 21 Apr 2024

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

I applied via Campus Placement and was interviewed in Mar 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Tell us about your projects
  • Q2. Write function to find factorial of number
  • Ans. 

    Function to find factorial of a number

    • Create a function that takes a number as input

    • Use a loop to multiply the number by decreasing integers until reaching 1

    • Return the final result as the factorial of the input number

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be calm. Express yourselves better.

Skills evaluated in this interview

Intern Interview Questions & Answers

PTC user image Anonymous

posted on 2 May 2024

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

I applied via LinkedIn and was interviewed in Apr 2024. There was 1 interview round.

Round 1 - Aptitude Test 

The duration of the test is total 3 hour and there are total 50 questions camara and mic is always on please dont switch the window durinf the test

Interview Preparation Tips

Interview preparation tips for other job seekers - please reffer a aptitude book

Intern Interview Questions & Answers

PTC user image Anonymous

posted on 20 Jun 2024

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

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

Round 1 - Aptitude Test 

Normal puzzle question

Round 2 - Technical 

(2 Questions)

  • Q1. Factorial Recursion
  • Q2. Database design

Intern Interview Questions & Answers

PTC user image Anonymous

posted on 14 Jul 2024

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

It was oncampus opportunity where in 1st round I was OA where aptitude and technical questions was asked all MCQ on the mttle platform

Round 2 - Technical 

(4 Questions)

  • Q1. Oops concepts was asked and told t9 implement as well
  • Q2. One DSA question easy - medium level
  • Q3. Login page was given and was asked for the possible test cases coming in my mind as it was a QA role
  • Q4. One sql question medium level
Round 3 - Technical 

(4 Questions)

  • Q1. It was manegarial round where some technical as well as behaviourial questions was asked
  • Q2. Google home page was given and was asked for the test cases
  • Q3. 2 DSA questions was asked easy - medium level
  • Q4. Some behaviourial questions like where do you want to see yourself in next 5 years
Round 4 - HR 

(2 Questions)

  • Q1. Expalination of my project
  • Q2. My family background

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on your fundamentals
Contribute & help others!
anonymous
You can choose to be anonymous

Bentley Systems Interview FAQs

How to prepare for Bentley Systems Intern 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 CRM, Project Delivery, Recruitment, Business Analytics and Data Analysis.

Recently Viewed

JOBS

Bentley Systems

No Jobs

INTERVIEWS

Bentley Systems

No Interviews

INTERVIEWS

Manikaran Power Limited

No Interviews

SALARIES

Manikaran Power Limited

INTERVIEWS

HCL Foundation

No Interviews

INTERVIEWS

TO THE NEW

No Interviews

SALARIES

TO THE NEW

SALARIES

Bentley Systems

JOBS

Pitney Bowes

No Jobs

SALARIES

Pitney Bowes

Tell us how to improve this page.

Join Bentley Systems Providing software that advances the world’s infrastructure.

Fast track your campus placements

View all

Bentley Systems Intern Reviews and Ratings

based on 2 reviews

4.2/5

Rating in categories

4.2

Skill development

4.2

Work-life balance

4.2

Salary

4.2

Job security

4.2

Company culture

4.2

Promotions

4.2

Work satisfaction

Explore 2 Reviews and Ratings
Software Engineer Level 1
88 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
51 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Associate Software Engineer
44 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Technical Support Engineer
41 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer II
33 salaries
unlock blur

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