Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by BMC Software Team. If you also belong to the team, you can get access from here

BMC Software Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Clear (1)

BMC Software Product Developer Interview Questions and Answers

Updated 18 Oct 2024

BMC Software Product Developer Interview Experiences

7 interviews found

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

I applied via Naukri.com and was interviewed in Aug 2024. There were 4 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Mostly questions based on core java, with some programs .
  • Q2. Simple multithreading program and scenario based questions.
Round 2 - One-on-one 

(2 Questions)

  • Q1. Mostly questions was related to core java, singleton pattern
  • Q2. Basic SQL queries.
Round 3 - Technical 

(2 Questions)

  • Q1. It was managerial round with some scenario based questions on creating table structure.
  • Q2. Asked two puzzles.
Round 4 - HR 

(1 Question)

  • Q1. Informed about salary, designation, expectations from this position
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Spring Boot architecture
  • Q2. Collection questions

Product Developer Interview Questions Asked at Other Companies

asked in Info Edge
Q1. What is the difference between GET and POST methods in HTTP?
asked in Info Edge
Q2. What would you like to work on ? Web Technologies or android
asked in Info Edge
Q3. What is the difference between get and post?
Q4. What is type casting Types of type casting
Q5. What do you know about sustainability?
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Javascript basic
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Oct 2023. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. C language assignment
  • Q2. Reverse a given string
  • Ans. 

    Reverse a given string by iterating through the characters and swapping them

    • Iterate through the string from both ends and swap the characters until the middle is reached

    • Use a temporary variable to store the character being swapped

    • Example: Input 'hello' -> Output 'olleh'

  • Answered by AI

Skills evaluated in this interview

BMC Software interview questions for designations

 Staff Product Developer

 (2)

 Senior Product Developer

 (1)

 Associate Product Developer

 (1)

 Staff Specialist Product Developer

 (1)

 Lead Product Developer

 (1)

 Product Engineer

 (1)

 Java Developer

 (2)

 Software Developer

 (1)

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before May 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

Logical reasoning and development

Round 2 - Coding Test 

DS and Java test problems

Round 3 - Technical 

(1 Question)

  • Q1. Questions around Java and projects handled
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before Oct 2022. 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 Resume tips
Round 2 - Coding Test 

Some Technical MCQs and 3 Coding question , everything to be solve in 90 min

Round 3 - Technical 

(1 Question)

  • Q1. General theoretical Java question, some design based question, goes for 60 min
Round 4 - HR 

(1 Question)

  • Q1. General HR questions

I was interviewed before Apr 2021.

Round 1 - Coding Test 
Round 2 - Technical 

(1 Question)

  • Q1. Basics of Java, strings
Round 3 - HR 

(1 Question)

  • Q1. Tell me about yourself.
  • Ans. 

    I am a Product Developer with a strong background in software development and a passion for creating innovative products.

    • Experienced in developing software applications and products

    • Proficient in programming languages such as Java, Python, and JavaScript

    • Skilled in product design and development processes

    • Strong problem-solving and analytical skills

    • Excellent communication and collaboration abilities

    • Track record of success

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep you basics of programming strong

Interview questions from similar companies

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

(1 Question)

  • Q1. Basic python questions
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed before Mar 2022. There were 5 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 Resume tips
Round 2 - Coding Test 

Hackerrank. Combination of coding,MCQ on DSA,aptitude and SQL Query

Round 3 - Technical 

(1 Question)

  • Q1. Questions on JAVA and SQL
Round 4 - Technical 

(1 Question)

  • Q1. Questions on Coding.Live Coding
Round 5 - One-on-one 

(1 Question)

  • Q1. Questions on SQL and Puzzles

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on SQL,Java and prepare DDA regularly. For brain puzzles refer Geeksforgeeks
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
-
Result
Not Selected

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

Round 1 - Technical 

(7 Questions)

  • Q1. What are primitive and non primitive data types
  • Ans. 

    Primitive data types are basic data types provided by the programming language, while non-primitive data types are created by the programmer.

    • Primitive data types include int, float, double, char, boolean, etc.

    • Non-primitive data types include arrays, classes, interfaces, etc.

    • Primitive data types store actual values, while non-primitive data types store references to objects.

  • Answered by AI
  • Q2. What are access modifiers and non access modifiers
  • Ans. 

    Access modifiers control the visibility of classes, methods, and variables. Non-access modifiers provide additional functionality.

    • Access modifiers: public, private, protected, default

    • Non-access modifiers: static, final, abstract, synchronized

    • Example: public class MyClass { private int myVar; }

  • Answered by AI
  • Q3. What are all Java 8 features and explain the one which we have used in our project
  • Ans. 

    Java 8 features include lambda expressions, functional interfaces, streams, and more.

    • Lambda expressions allow concise syntax for defining anonymous functions.

    • Functional interfaces can have only one abstract method and are used for lambda expressions.

    • Streams provide a way to process collections of objects in a functional style.

    • Optional class helps to avoid NullPointerException by wrapping a value that may be null.

  • Answered by AI
  • Q4. CICD tools which we have used explain in high level
  • Ans. 

    CICD tools automate the process of building, testing, and deploying code changes.

    • Popular CICD tools include Jenkins, GitLab CI/CD, CircleCI, and Travis CI

    • These tools help in automating the software development lifecycle

    • They enable continuous integration, continuous delivery, and continuous deployment

    • CICD tools help in improving code quality, reducing manual errors, and increasing development speed

  • Answered by AI
  • Q5. What is containerization
  • Ans. 

    Containerization is a lightweight, portable, and self-sufficient way to package and run applications.

    • Containerization involves encapsulating an application and its dependencies into a container image.

    • Containers are isolated from each other and share the host OS kernel.

    • Popular containerization platforms include Docker and Kubernetes.

    • Containerization allows for easy deployment and scaling of applications.

  • Answered by AI
  • Q6. What is indexing in sql
  • Ans. 

    Indexing in SQL is a technique used to improve the performance of queries by creating a data structure that allows for faster retrieval of data.

    • Indexes are created on columns in a database table to speed up the retrieval of rows that match a certain condition in a query.

    • They work similar to the index in a book, allowing the database to quickly locate the rows that satisfy the query.

    • Indexes can be created using a single...

  • Answered by AI
  • Q7. Programming question on stream like finding the longest string in a given list of string

Skills evaluated in this interview

Contribute & help others!
anonymous
You can choose to be anonymous

BMC Software Interview FAQs

How many rounds are there in BMC Software Product Developer interview?
BMC Software interview process usually has 2-3 rounds. The most common rounds in the BMC Software interview process are Technical, Coding Test and HR.
How to prepare for BMC Software Product Developer 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 BMC Software. The most common topics and skills that interviewers at BMC Software expect are Product Development, Javascript, J2Ee, GIT and Java.
What are the top questions asked in BMC Software Product Developer interview?

Some of the top questions asked at the BMC Software Product Developer interview -

  1. reverse a given str...read more
  2. It was managerial round with some scenario based questions on creating table st...read more
  3. General theoretical Java question, some design based question, goes for 60 ...read more

Recently Viewed

PHOTOS

InsuranceDekho

3 office photos

LIST OF COMPANIES

Credit Bajaar

Overview

INTERVIEWS

BrowserStack

No Interviews

INTERVIEWS

Cult.fit

No Interviews

INTERVIEWS

BrowserStack

No Interviews

INTERVIEWS

GeeksForGeeks

No Interviews

INTERVIEWS

Yamaha Motor

No Interviews

INTERVIEWS

GeeksForGeeks

No Interviews

INTERVIEWS

GeeksForGeeks

No Interviews

INTERVIEWS

BMC Software

No Interviews

Tell us how to improve this page.

BMC Software Product Developer Interview Process

based on 6 interviews

2 Interview rounds

  • Technical Round - 1
  • Technical Round - 2
View more

Interview Questions from Similar Companies

IBM Interview Questions
4.0
 • 2.4k Interviews
Oracle Interview Questions
3.7
 • 905 Interviews
Cisco Interview Questions
4.1
 • 398 Interviews
Dell Interview Questions
4.0
 • 393 Interviews
SAP Interview Questions
4.2
 • 309 Interviews
Salesforce Interview Questions
4.0
 • 272 Interviews
CitiusTech Interview Questions
3.4
 • 269 Interviews
Adobe Interview Questions
3.9
 • 252 Interviews
View all
BMC Software Product Developer Salary
based on 147 salaries
₹7.9 L/yr - ₹21.6 L/yr
67% more than the average Product Developer Salary in India
View more details

BMC Software Product Developer Reviews and Ratings

based on 22 reviews

4.4/5

Rating in categories

3.8

Skill development

4.3

Work-life balance

4.0

Salary

3.8

Job security

4.4

Company culture

3.5

Promotions

3.9

Work satisfaction

Explore 22 Reviews and Ratings
Product Developer
147 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Product Developer
99 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Staff Product Developer
98 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Staff Specialist Product Developer
93 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Technical Support Analyst
83 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare BMC Software with

IBM

4.0
Compare

Oracle

3.7
Compare

SAP

4.2
Compare

Microsoft Corporation

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