Upload Button Icon Add office photos

Bosch

Compare button icon Compare button icon Compare

Filter interviews by

Clear (1)

Bosch SAP Basis Consultant Interview Questions and Answers

Updated 16 Apr 2024

Bosch SAP Basis Consultant Interview Experiences

1 interview found

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 Mar 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Introduction basic of computer knowledge.

Round 2 - Technical 

(5 Questions)

  • Q1. Experience question sap base question and Prigarming
  • Q2. I'm using sap base marketing department
  • Q3. Contract creation, sale order creation
  • Q4. Using lsp lpp project creation
  • Ans. 

    lsp lpp project creation is a command used in SAP Basis to create a new project

    • lsp lpp is a command used in SAP Basis to manage projects

    • It is used to create a new project in SAP system

    • The project creation process involves defining project parameters and settings

  • Answered by AI
  • Q5. Bq and bid creation

Interview Preparation Tips

Topics to prepare for Bosch SAP Basis Consultant interview:
  • Training
  • Marketing Management
Interview preparation tips for other job seekers - Pls give this Apportunity

Skills evaluated in this interview

Interview questions from similar companies

I was interviewed in Aug 2017.

Interview Questionnaire 

4 Questions

  • Q1. Difference between c and java?
  • Ans. 

    C is a procedural programming language while Java is an object-oriented programming language.

    • C is a low-level language while Java is a high-level language.

    • C requires manual memory management while Java has automatic memory management.

    • C is platform-dependent while Java is platform-independent.

    • C supports pointers while Java does not.

    • C has a simpler syntax compared to Java.

  • Answered by AI
  • Q2. Difference between final, finally and finalize
  • Ans. 

    final, finally, and finalize are keywords in Java with different meanings.

    • final is a keyword used to declare a constant value, a variable that cannot be modified.

    • finally is a block used in exception handling to ensure a piece of code is always executed, whether an exception is thrown or not.

    • finalize is a method in the Object class that is called by the garbage collector before an object is destroyed.

    • final and finally a...

  • Answered by AI
  • Q3. About yourself
  • Q4. Why Johnson
  • Ans. 

    Johnson is a reputable company known for its innovative software solutions and collaborative work environment.

    • Johnson has a strong reputation in the industry for delivering high-quality software solutions.

    • The company values collaboration and teamwork, which aligns with my own work style.

    • I admire Johnson's commitment to innovation and staying ahead of technological advancements.

  • Answered by AI

Interview Preparation Tips

Round: Apptitude Test
Experience: Questions was unpredictable as it was from reasoning,verbal , and from general knowledge also.Technical questions was also there.
Tips: Technical question was not that hard. Just have good basic knowledge of programming and DBMS

Round: Technical Interview
Experience: It was from basic concepts only.

Round: HR Interview
Experience: There were 12 HRs to take my interview but asked mainly from CV only.

Tips: Be calm and confident and learn the basic of subjects

College Name: BPPIMT

Skills evaluated in this interview

I applied via Recruitment Consultant and was interviewed in Nov 2017. There were 8 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. Technical Interview on Power Systems/Switchgear & Control System. Detailed discussion on Switchgear and Protection. Discussion on IEC and IS standards.
  • Q2. HR interview on experience and Pay scale
  • Q3. Detailed discussion on experience and expectations.
  • Q4. Baground & Certificate verification

Interview Preparation Tips

Round: Resume Shortlist
Experience: Engineering Degree & Suitable profile

Round: Group Discussion
Experience: Topic : Switchgear & Control System.

I have actively participated in technical discussion.

Round: Second level of technical round with higher authority
Experience: Details analysis on market segment

Round: Case Study Interview
Experience: Case study on my interest and profile interested in.

General Tips: Prepare and answer correctly to the questions you asked, do not lead interviewer in wrong way. Interviewers will easily guess what we are delivering.

Be 100% interested on your profile & role, Don't attend interview for the shake of job.

Skills: Technical Knowledge(ML, Communication, Body Language, Analytical Skills, Leadership, Presentation Skills, Time Management, Decision Making Skills
Duration: 1-3 Months

Interview Preparation Tips

Round: Resume Shortlist
Experience: General resume shortlisting out of nearly 400 applicants. Shortlisted close to 150 students.

Round: Technical Interview
Experience: Mostly questions from the resume were asked. They just wanted to know the types of projects I had done.
Tips: Make sure you know everything about what you write in your resume.

Round: Technical Interview
Experience: Another round of technical interview. Questions were more focused on the kind of profile they were offering, mostly to judge whether you are right for the job or not.

Skills: Confidence, Core knowledge
College Name: IIT BOMBAY

I applied via Referral and was interviewed in Mar 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Do you know anything about cloud computing?
  • Ans. 

    Yes, cloud computing refers to the delivery of computing services over the internet.

    • Cloud computing allows users to access data and applications from anywhere with an internet connection.

    • It offers scalability, flexibility, and cost-effectiveness compared to traditional on-premises computing.

    • Examples of cloud computing services include Amazon Web Services, Microsoft Azure, and Google Cloud Platform.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Very chill interview on the basis of profile.
Learn about new technology like cloud etc.

Skills evaluated in this interview

Interview Questionnaire 

1 Question

  • Q1. Basic OOPs concepts

Interview Preparation Tips

Interview preparation tips for other job seekers - Be strong in basics.

I applied via Recruitment Consultant and was interviewed in Nov 2019. There were 5 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. Basic C++, and Data structure focus on pointers and virtual function, vptr, vtable
  • Q2. Prepare about ur current project and process followed for entire development process thoroughly
  • Q3. Prepare common tools like. Linux, git, gdb
  • Q4. Prepare basics of data structures, OOPS, design patterns used

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep a steady approach, focus more and more on basics and working principle of concepts

I applied via Naukri.com and was interviewed before Jun 2019. There were 3 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. Implement stack data structure
  • Ans. 

    Implement stack data structure

    • Use an array or linked list to store elements

    • Push operation adds element to top of stack

    • Pop operation removes element from top of stack

    • Peek operation returns top element without removing it

  • Answered by AI
  • Q2. How global variable work , how its shared by all function
  • Ans. 

    Global variables are accessible from any part of the program and can be modified by any function.

    • Global variables are declared outside of any function.

    • They can be accessed and modified by any function in the program.

    • If a function modifies the value of a global variable, the new value is visible to all other functions.

    • Global variables can be useful for sharing data between functions.

    • However, overuse of global variables

  • Answered by AI
  • Q3. Program to transpose the matrix
  • Ans. 

    Program to transpose a matrix

    • Iterate through rows and columns of the matrix

    • Swap the elements at (i,j) and (j,i) positions

    • Return the transposed matrix

  • Answered by AI
  • Q4. Internal implementation of pre and post fix operator
  • Ans. 

    Pre and post fix operators are used to increment or decrement a value before or after it is used in an expression.

    • Pre-fix operator (++x) increments the value of x and returns the new value.

    • Post-fix operator (x++) returns the value of x and then increments it.

    • Both operators can be used with variables of numeric data types.

    • They can also be used with pointers to increment or decrement the memory address they point to.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare some standard problem from geekforgeeks.com

Skills evaluated in this interview

Interview Questionnaire 

1 Question

  • Q1. Prepare python data structures and python basics

I applied via Naukri.com and was interviewed before May 2020. There were 5 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Scenario based to be solved with python

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare the core concepts very well.
Contribute & help others!
anonymous
You can choose to be anonymous

Bosch Interview FAQs

How many rounds are there in Bosch SAP Basis Consultant interview?
Bosch interview process usually has 2 rounds. The most common rounds in the Bosch interview process are Aptitude Test and Technical.
What are the top questions asked in Bosch SAP Basis Consultant interview?

Some of the top questions asked at the Bosch SAP Basis Consultant interview -

  1. Using lsp lpp project creat...read more
  2. Experience question sap base question and Prigarm...read more
  3. I'm using sap base marketing departm...read more

Recently Viewed

SALARIES

Presidio Solutions Pvt Ltd

LIST OF COMPANIES

INDO-MIM

Locations

INTERVIEWS

Bosch

No Interviews

SALARIES

Code and Theory

SALARIES

Axis Bank

INTERVIEWS

Bosch

No Interviews

REVIEWS

Code and Theory

No Reviews

LIST OF COMPANIES

Terex

Locations

SALARIES

INDO-MIM

LIST OF COMPANIES

Thermax Limited

Locations

Tell us how to improve this page.

Bosch SAP Basis Consultant Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

Siemens Interview Questions
4.1
 • 420 Interviews
Johnson Controls Interview Questions
3.6
 • 262 Interviews
ABB Interview Questions
4.1
 • 235 Interviews
Yazaki Interview Questions
3.8
 • 134 Interviews
GE Interview Questions
4.2
 • 102 Interviews
Aptiv Interview Questions
3.5
 • 96 Interviews
Valeo Interview Questions
4.0
 • 88 Interviews
DENSO Interview Questions
4.1
 • 73 Interviews
View all
Bosch SAP Basis Consultant Salary
based on 23 salaries
₹3 L/yr - ₹14 L/yr
At par with the average SAP Basis Consultant Salary in India
View more details

Bosch SAP Basis Consultant Reviews and Ratings

based on 2 reviews

4.7/5

Rating in categories

4.7

Skill development

4.4

Work-life balance

4.7

Salary

4.7

Job security

4.7

Company culture

4.7

Promotions

4.7

Work satisfaction

Explore 2 Reviews and Ratings
Senior Engineer
854 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
794 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Assistant Manager
658 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
512 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Deputy Manager
494 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Bosch with

Siemens

4.1
Compare

ABB

4.1
Compare

Schneider Electric

4.1
Compare

Honeywell Automation

3.8
Compare
Did you find this page helpful?
Yes No
write
Share an Interview
Rate your experience using AmbitionBox
Terrible
Terrible
Poor
Poor
Average
Average
Good
Good
Excellent
Excellent