Company Corner

Robert Bosch Placement Papers 2026: Test Pattern and Sample Questions

Bosch campus test: ~60 questions, 60 min, 0.25 negative marking. Syllabus and worked examples in quant, logical, verbal and technical for ECE and CSE freshers.

By FACE Prep Team 6 min read
robert-bosch placement-papers rbei company-corner embedded-systems ece-placement aptitude-test

Robert Bosch’s campus test covers both standard aptitude and a domain-specific technical section, with 0.25 negative marking, in approximately 60 minutes.

RBEI (Robert Bosch Engineering and Business Solutions India) is the principal entity through which Bosch runs campus hiring in India. Its engineering campuses in Bengaluru and Coimbatore, along with offices in Hyderabad, Pune, and Chennai, focus on embedded software, automotive electronics, and connected-mobility technology. The test reflects that focus: the technical section goes noticeably deeper into electronics and systems topics than most IT-services company assessments.

The Bosch Online Test: Structure and Format

The online test covers four sections. Question counts and time allocation vary by hiring cycle, but the approximate structure reported across placement accounts is:

SectionApprox. QuestionsCore Topics
Quantitative Aptitude~25Time and work, profit/loss, percentages, time-speed-distance, number theory
Logical Reasoning~15Coding-decoding, puzzles, blood relations, data interpretation, arrangements
Verbal Ability~5–10Reading comprehension, synonyms/antonyms, sentence correction, fill-in-the-blanks
Technical~20–35Electronics, digital logic, C language, OS, DBMS, data structures

Total: approximately 60–80 questions in 60 minutes, with 0.25 negative marking throughout.

The negative marking changes how you should approach uncertain questions. Skipping a question costs nothing. Answering it wrong deducts a quarter mark. For any question where you cannot eliminate at least two options confidently, skipping is the better call. This is different from tests like the HirePro platform assessments that sometimes run without negative marking.

Confirm the exact question count and time with your campus placement officer before the test. Bosch has run different versions of the test across campuses and years, and the invitation email will have the definitive breakdown.

Quantitative Aptitude: Types and Worked Examples

The quantitative section tests standard placement-level arithmetic. Topics that appear frequently: time and work, profit and loss, percentages, time-speed-distance, simple and compound interest, permutation and combination.

The difficulty is moderate. Most questions have clean setups that can be solved in under two minutes with a clear method. The one thing that separates high scorers here is not speed but avoiding careless arithmetic under pressure.

Time and Work

  • Q: Ramesh and Suresh can complete a piece of work in 20 days and 12 days respectively. Ramesh starts alone and Suresh joins him after 4 days. How many total days does the work take?
  • Step 1: Work done by Ramesh in 4 days alone = 4 × (1/20) = 4/20 = 1/5
  • Step 2: Remaining work = 1 − 1/5 = 4/5
  • Step 3: Combined daily rate = 1/20 + 1/12 = 3/60 + 5/60 = 8/60 = 2/15
  • Step 4: Days for combined work to clear 4/5 = (4/5) ÷ (2/15) = (4/5) × (15/2) = 6 days
  • Answer: Total = 4 + 6 = 10 days

This type of problem, where one worker joins another mid-task, appears in almost every Bosch test cycle. Practicing 10–12 such problems until the two-step method (partial work, then combined rate) is automatic is enough to handle any variant under time pressure.

Logical Reasoning and Analytical Ability

The logical reasoning section tests pattern recognition, relational logic, and data interpretation. Topics include coding-decoding, linear and circular arrangements, blood relations, number series, and statement-assumption questions.

Coding-Decoding

  • Q: In a code language, MITIGATE is written as MJVLKFZL. How is TERMINATE written in the same code?
    • A) TFTPMSZGZ B) TFUQNHTSZ C) TFRSMSGZM D) TFTPMSGAM
  • Key pattern: Each letter is shifted forward by its position index (0-indexed), wrapping around the 26-letter alphabet.
    • M+0 = M, I+1 = J, T+2 = V, I+3 = L, G+4 = K, A+5 = F, T+6 = Z, E+7 = L → MJVLKFZL ✓
  • Applying to TERMINATE:
    • T+0 = T, E+1 = F, R+2 = T, M+3 = P, I+4 = M, N+5 = S, A+6 = G, T+7 = A (wraps: T is 20th letter, 20+7 = 27 → position 1 = A), E+8 = M
  • Answer: D) TFTPMSGAM

For arrangement problems (ranking by height and weight with given constraints), draw a quick table with columns for each parameter and fill it row by row from the most definitive clue (usually the “same rank in both” constraint that anchors the grid).

Verbal Ability Section

The verbal section is the shortest part of the test. Standard topics: reading comprehension passages (typically 200–300 words with 4–5 questions), sentence correction, synonyms and antonyms, fill-in-the-blanks, and tense-based grammar questions.

Reading comprehension is where time gets lost. Students who read the questions before the passage typically finish 30–45 seconds faster per set. For sentence correction, the most common traps are subject-verb agreement and misplaced modifiers, not obscure vocabulary.

Two to three weeks of reading practice at the level of a national business newspaper is sufficient preparation for the verbal section, given the moderate difficulty level.

Technical Section: Electronics, C, and Systems

The technical section is what separates Bosch from typical mass-recruiter tests. ECE and EEE candidates face electronics and digital logic questions; CSE candidates face programming, OS, and database questions; embedded software roles get a mix of both. The topics that appear most consistently: network basics, analog and digital circuits, Boolean algebra, C language, operating systems, and DBMS.

Two representative question types:

C Language

  • Q: What does this code output?
    #include <stdio.h>
    void foo(const int *j) {
        *j = 500;
    }
    int main() {
        const int j = 20;
        printf("%d ", j);
        foo(&j);
        printf("%d", j);
        return 0;
    }
    • A) Compile-time error B) 10 20 C) Undefined value D) 10
  • Answer: A) Compile-time error. The function foo accepts a const int *j — a pointer to a const integer. The statement *j = 500 attempts to modify the value at that address, which violates the const qualification. The compiler catches this before the program ever runs.

Digital Logic

  • Q: The Boolean function Y = AB + XZ is to be implemented using only 2-input NAND gates. What is the minimum number of gates required?
    • A) 2 B) 3 C) 5 D) 6
  • Working:
    • Apply De Morgan: Y = AB + XZ = NOT(NOT(AB) · NOT(XZ)) = NAND(NAND(A,B), NAND(X,Z))
    • Gate 1: NAND(A, B) → produces NOT(AB)
    • Gate 2: NAND(X, Z) → produces NOT(XZ)
    • Gate 3: NAND(output of Gate 1, output of Gate 2) → produces AB + XZ = Y
  • Answer: B) 3 gates

For DBMS, OS, and data structures, expect standard questions: SQL JOIN types, indexing, normalisation for DBMS; scheduling algorithms, memory management, deadlock conditions for OS; time complexity of sorting algorithms and linked list operations for data structures.

Texas Instruments, which similarly recruits for analog and embedded roles, runs a comparably technical test. If you’re preparing for Bosch, the TI placement paper guide covers the same electronics fundamentals from a different company’s angle and is a useful parallel resource.

After the Online Test: Interview Rounds

Candidates who clear the online test typically proceed through three rounds:

  • Technical Round 1: Core subject questions for your branch plus discussion of projects listed on your CV. ECE candidates should expect RC circuits, amplifier basics, and digital logic. CSE candidates should expect data structures, OOP concepts, and OS fundamentals.
  • Technical Round 2 (for some roles): A deeper project or scenario discussion. RBEI’s embedded software roles often go into C/C++ specifics, real-time operating systems, and microcontroller architecture here.
  • HR Round: Communication, motivation, and career-fit assessment. RBEI values long-tenure candidates for engineering roles; being specific about why the automotive-technology domain interests you is worth more than generic answers.

RBEI’s hiring process, unlike IT-services drives that run on a campus every week, tends to move at a slower pace with more deliberate evaluation at each stage. Clearing the online test is a genuine filter, not just a formality.

Manufacturing and industrial companies like Reliance Industries follow a similar multi-round structure after their initial assessments. Studying how these processes differ by sector helps set realistic expectations before interviews.

Clearing the Test Is the Start, Not the Goal

The technical section in the Bosch test covers C language, Boolean algebra, and electronics fundamentals: the same areas RBEI’s engineers work with on the job. The Bengaluru and Coimbatore campuses develop embedded software for automotive control units, IoT sensors, and driver-assistance features. That work extends C and digital-logic knowledge into processing sensor data and running inference on constrained hardware.

If that direction interests you after landing the role, TinkerLLM at ₹299 covers the ML inference fundamentals that connect the electronics and C foundation tested here to the kinds of embedded-AI problems Bosch’s connected-mobility teams solve. It’s a low-cost way to test whether that direction is worth a deeper commitment before applying for specialised roles.

Primary sources

Frequently asked questions

What branches are eligible for the Robert Bosch campus drive?

Bosch's campus drives primarily target ECE, EEE, and CSE branches for technical roles. Mechanical and related engineering branches are considered for manufacturing and industrial technology positions. Eligibility can vary by campus and hiring cycle, so students should confirm the branch filter with their college placement cell before registering.

Does the Robert Bosch online test have sectional cutoffs?

Based on campus placement accounts, the Bosch online test does not publicly announce sectional cutoffs. However, scoring well in the technical section is considered important for roles in embedded software and electronics, since the interview rounds assess the same subject areas in more depth.

How many rounds are there in the Robert Bosch selection process?

The Robert Bosch selection process typically runs three rounds after the online test: a technical interview, a second technical or project-based discussion, and an HR interview. The technical rounds probe core subject knowledge for ECE or CSE depending on the role applied for.

Where does RBEI hire freshers in India — which campuses?

RBEI (Robert Bosch Engineering and Business Solutions India) has its main India presence in Bengaluru, with significant engineering teams in Coimbatore, Hyderabad, Pune, and Chennai. Campus drives reach engineering colleges across all these regions. The Bengaluru and Coimbatore campuses handle the bulk of embedded systems and automotive software hiring.

Is the Robert Bosch test the same for all engineering branches?

The aptitude sections — quantitative, logical, and verbal — are common across branches. The technical section varies by role profile. ECE and EEE students see more electronics and digital logic questions; CSE students see more data structures, OS, and programming questions. Students applying for embedded software roles typically face a mix of both.

What is the difference between Robert Bosch and RBEI in campus recruitment?

RBEI stands for Robert Bosch Engineering and Business Solutions India Limited — it is the principal entity through which Bosch runs its India engineering operations and campus hiring. When a campus drive announcement says 'Robert Bosch', it almost always refers to RBEI roles. The parent company, Robert Bosch GmbH, is the German multinational; RBEI is its India subsidiary that handles R&D, embedded systems, automotive software, and IoT product development.

Build AI projects

A self-paced playground for building with LLMs.

TinkerLLM is FACE Prep's sister property. A guided environment for shipping real LLM applications, the kind of project that earns a paragraph on your resume, not a line.

Try TinkerLLM (₹299 launch)
Free AI Roadmap PDF