Upload Button Icon Add office photos

Filter interviews by

Clear (1)

Bayer Software Engineer Interview Questions and Answers

Updated 21 May 2024

Bayer Software Engineer Interview Experiences

3 interviews found

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

I applied via LinkedIn and was interviewed before May 2023. There were 2 interview rounds.

Round 1 - Coding Test 

They had 45 min coding test on coderpad, and a LLD question for next 45 mins. Coding round was easy with basic arrays, and strings questions

Round 2 - Technical 

(1 Question)

  • Q1. Brief discussion on HLD and LLD

Interview Preparation Tips

Topics to prepare for Bayer Software Engineer interview:
  • java
  • Algorithms
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Feb 2023. There was 1 interview round.

Round 1 - Coding Test 

Includes a few hands on question on javascript and few technical

Interview Preparation Tips

Interview preparation tips for other job seekers - 1hr of technical questions

Software Engineer Interview Questions Asked at Other Companies

asked in Qualcomm
Q1. Bridge and torch problem : Four people come to a river in the nig ... read more
asked in Capgemini
Q2. In a dark room,there is a box of 18 white and 5 black gloves. You ... read more
asked in TCS
Q3. Find the Duplicate Number Problem Statement Given an integer arra ... read more
Q4. Tell me something about yourself. Define encapsulation. What is i ... read more
asked in Paytm
Q5. Puzzle : 100 people are standing in a circle .each one is allowed ... read more

I applied via Recruitment Consultant and was interviewed in Aug 2021. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Create stack data structure with push pop and getmin
  • Ans. 

    Implement a stack with push, pop, and getmin operations.

    • Use an array to store the stack elements.

    • Keep track of the minimum element using another stack.

    • Push operation: add element to the top of the stack and update the minimum stack.

    • Pop operation: remove the top element from the stack and update the minimum stack.

    • Getmin operation: return the top element of the minimum stack.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Very interview experience. They interviewed I cleared all rounds and offer was issued. Then they put my offer on hold saying opening has closed. Do not waste your time interviewing for bayer

Skills evaluated in this interview

Interview questions from similar companies

Interview Questionnaire 

1 Question

  • Q1. Oop concepts
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Oct 2022. There were 2 interview rounds.

Round 1 - Aptitude Test 

1 hr test with mcq and coding snippet

Round 2 - One-on-one 

(6 Questions)

  • Q1. What are pointers in c?
  • Ans. 

    Pointers are variables that store memory addresses of other variables in C programming language.

    • Pointers are used to manipulate data structures like arrays, linked lists, and trees.

    • They can be used to pass values by reference to functions.

    • Pointers can also be used to allocate memory dynamically using functions like malloc() and calloc().

  • Answered by AI
  • Q2. Write a linked list program.
  • Ans. 

    A linked list program is a data structure that stores a sequence of elements with pointers to the next element.

    • Create a Node class with a value and a next pointer

    • Create a LinkedList class with a head pointer and methods to add, remove, and traverse nodes

    • Example: LinkedList ll = new LinkedList(); ll.add(5); ll.add(10); ll.remove(5);

  • Answered by AI
  • Q3. Applications of data structures
  • Ans. 

    Data structures are used to organize and manipulate data efficiently in various applications.

    • Data structures are used in databases to store and retrieve data quickly.

    • In computer graphics, data structures are used to represent geometric objects.

    • Data structures are used in algorithms such as sorting and searching.

    • In networking, data structures are used to represent network packets and routing tables.

    • Data structures are u...

  • Answered by AI
  • Q4. Algorithm for merge sort
  • Ans. 

    Merge sort is a divide and conquer algorithm that recursively divides the input array into two halves, sorts them and then merges them.

    • Divide the array into two halves

    • Recursively sort the two halves

    • Merge the sorted halves

    • Repeat until the entire array is sorted

  • Answered by AI
  • Q5. Cloud computing application in real world in project
  • Ans. 

    Cloud computing is widely used in various industries for data storage, processing, and analysis.

    • Cloud computing allows for easy scalability and cost-effectiveness in managing large amounts of data.

    • Real-time collaboration and access to data from anywhere are some of the benefits of cloud computing.

    • Examples of cloud computing applications in real-world projects include Amazon Web Services (AWS), Microsoft Azure, and Goog...

  • Answered by AI
  • Q6. Java and nodejs questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Be precise and confident. Keep learning and solving code on platforms.

Skills evaluated in this interview

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

(2 Questions)

  • Q1. What is array?? Detail in programming
  • Ans. 

    An array is a collection of similar data types stored in contiguous memory locations.

    • Arrays can be one-dimensional or multi-dimensional

    • Elements in an array can be accessed using their index

    • Arrays can be initialized during declaration or later in the code

    • Arrays can be passed as arguments to functions

    • Example: int arr[5] = {1, 2, 3, 4, 5};

    • Example: char str[10] = "Hello";

  • Answered by AI
  • Q2. About programming and Java script

Interview Preparation Tips

Interview preparation tips for other job seekers - Always prepare for interview and need you have to know about jd

Skills evaluated in this interview

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 

C and c++ and data structure

Round 3 - Technical 

(1 Question)

  • Q1. Question front Data structure, c++ and c
Round 4 - HR 

(1 Question)

  • Q1. Ask all those questions that you want

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on body language.
Learn new things.

I applied via Recruitment Consulltant and was interviewed in Nov 2022. There were 2 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 - Technical 

(2 Questions)

  • Q1. How spring boot works internally?
  • Ans. 

    Spring Boot is a framework that simplifies the development of Java applications by providing pre-configured settings and dependencies.

    • Spring Boot uses an embedded Tomcat server to run the application.

    • It provides auto-configuration for commonly used libraries and frameworks.

    • Spring Boot uses Spring Framework's Inversion of Control (IoC) to manage dependencies.

    • It also includes Spring Boot Actuator for monitoring and manag...

  • Answered by AI
  • Q2. What is Streaming api in java8?
  • Ans. 

    Streaming API in Java 8 is a feature that allows processing of large data sets in a functional and efficient manner.

    • Stream API provides a set of functional interfaces and methods to process data in a declarative way

    • It supports parallel processing of data

    • It can be used with collections, arrays, and I/O operations

    • Example: List names = Arrays.asList("John", "Mary", "Bob"); long count = names.stream().filter(name -> name.s...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Syngenta Senior Software Engineer interview:
  • Java
Interview preparation tips for other job seekers - Interviewer was asking questions very rapidly. He is not even wait to listen for answers those questions. In each question he interrupted me, not even listening my answers. Very impatient person.

Skills evaluated in this interview

Interview Questionnaire 

2 Questions

  • Q1. OOPS Concepts
  • Q2. Threads Concepts

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared on basic java

I applied via Recruitment Consultant and was interviewed in May 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. All questions ask on technical field which we have mentioned in our resume

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare resume after lots of thought process
Contribute & help others!
anonymous
You can choose to be anonymous

Bayer Interview FAQs

How many rounds are there in Bayer Software Engineer interview?
Bayer interview process usually has 1-2 rounds. The most common rounds in the Bayer interview process are Coding Test and Technical.
How to prepare for Bayer Software Engineer 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 Bayer. The most common topics and skills that interviewers at Bayer expect are Advertising, Automation, Environment Management, Functional Testing and Integration Testing.
What are the top questions asked in Bayer Software Engineer interview?

Some of the top questions asked at the Bayer Software Engineer interview -

  1. Create stack data structure with push pop and get...read more
  2. Brief discussion on HLD and ...read more

Recently Viewed

INTERVIEWS

Cenduit India Services

No Interviews

INTERVIEWS

Bayer

No Interviews

INTERVIEWS

Bayer

No Interviews

INTERVIEWS

Dimensions Healthcare

No Interviews

JOBS

Cisco

No Jobs

LIST OF COMPANIES

Cisco

Locations

LIST OF COMPANIES

IQVIA

Locations

REVIEWS

Bayer

No Reviews

LIST OF COMPANIES

Bayer

Locations

JOBS

IQVIA

No Jobs

Tell us how to improve this page.

Bayer Software Engineer Interview Process

based on 2 interviews

Interview experience

4.5
  
Good
View more

Interview Questions from Similar Companies

Asian Paints Interview Questions
4.0
 • 642 Interviews
Tata Group Interview Questions
4.2
 • 357 Interviews
Aarti Industries Interview Questions
4.1
 • 282 Interviews
Grasim Industries Interview Questions
4.0
 • 205 Interviews
UPL Interview Questions
4.1
 • 174 Interviews
DS Group Interview Questions
4.1
 • 145 Interviews
Schlumberger Interview Questions
3.9
 • 136 Interviews
Worley Interview Questions
4.1
 • 109 Interviews
PI Industries Interview Questions
4.0
 • 105 Interviews
View all
Bayer Software Engineer Salary
based on 16 salaries
₹8.8 L/yr - ₹22 L/yr
61% more than the average Software Engineer Salary in India
View more details

Bayer Software Engineer Reviews and Ratings

based on 1 review

4.0/5

Rating in categories

3.0

Skill development

5.0

Work-life balance

3.0

Salary

4.0

Job security

5.0

Company culture

1.0

Promotions

5.0

Work satisfaction

Explore 1 Review and Rating
Process Associate
138 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Territory Business Manager
113 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

SME
89 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Field Officer
83 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Process Associate
69 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Bayer with

Syngenta

4.2
Compare

BASF

4.4
Compare

Corteva Agriscience

4.3
Compare

DuPont

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