All Practice Exams

Free Practice Questions for RBSE SS Computer Science

Exam-style questions and explanations by OpenExamPrep.

✓ No registration✓ No credit card

Loading practice questions...

Exam Review

Key Facts: RBSE SS Computer Science Exam

003

RBSE subject code for Computer Science

RBSE 2026 subject-wise statistics

Theory 56 + Sessional 14

Typical full marks / assessment pattern

RBSE syllabus examination scheme

3 h 15 m

Typical theory paper duration (where applicable)

RBSE Class 12 / Praveshika schemes

33%

Common minimum pass threshold under RBSE regulations

RBSE examination regulations (confirm circular)

2026

Main examination cycle evidenced in official subject-wise statistics

rajeduboard.rajasthan.gov.in/statistics2026.htm

MCQ study aid

Local bank adapts knowledge to four-option MCQs; official paper is mixed/performance format

OpenExamPrep assessment-format policy

RBSE Senior Secondary (Class 12) Computer Science (code 003): Theory 56 + Sessional 14 = 70 and Practical 30 = 100; 3 hours 15 minutes (theory). Pass about 33% per RBSE rules (confirm circular). Fee as per board notification. Free English MCQ study aid — not a full official-format simulation.

Sample RBSE SS Computer Science Practice Questions

Try these sample questions to review concepts for the RBSE SS Computer Science exam. Each question includes a detailed explanation. Start the interactive quiz above for the full 100+ question experience with AI tutoring.

1In Python, which statement correctly describes a list?
A.It is an unordered collection of unique keys mapped to values
B.It is an ordered, mutable sequence that may contain duplicate elements
C.It is an immutable sequence of characters only
D.It is a fixed-size array that cannot grow after creation
Explanation: Lists are ordered and mutable sequences; elements may repeat and can be of mixed types. Dictionaries map keys to values; strings are immutable character sequences; Python lists grow dynamically.
2What is the output of: print(type((5,)) == type((5))) ?
A.True
B.False
C.TypeError
D.None
Explanation: (5,) is a one-element tuple; (5) is just the integer 5 in parentheses. Their types are tuple and int, so equality of types is False.
3Consider: s = {1, 2, 2, 3} print(len(s)) What is printed?
A.4
B.3
C.2
D.Error
Explanation: Sets store unique elements only, so {1, 2, 2, 3} becomes {1, 2, 3} with length 3.
4Which Python operator performs floor division and returns an integer-like result for ints?
A./
B.%
C.//
D.**
Explanation: The // operator is floor division (e.g., 7 // 2 == 3). / is true division, % is remainder, ** is exponentiation.
5Consider: for i in range(1, 5, 2): print(i, end=' ') What is printed?
A.1 2 3 4
B.1 3
C.1 3 5
D.2 4
Explanation: range(1, 5, 2) yields 1, then 3 (start 1, stop exclusive 5, step 2). Output: '1 3 '.
6What does the expression list('AB') evaluate to?
A.['AB']
B.['A', 'B']
C.('A', 'B')
D.Error
Explanation: list() on a string iterates characters, producing ['A', 'B'].
7Consider: def f(a, b=2): return a * b print(f(3)) What is printed?
A.6
B.3
C.TypeError
D.None
Explanation: b defaults to 2 when omitted, so f(3) returns 3 * 2 = 6.
8In Python, which keyword is used to create an anonymous function?
A.def
B.lambda
C.anon
D.func
Explanation: lambda creates a small anonymous function expression, e.g., lambda x: x+1.
9Consider: t = (10, 20, 30) print(t[1:]) What is printed?
A.(10, 20, 30)
B.(20, 30)
C.[20, 30]
D.20
Explanation: Slicing a tuple from index 1 to the end yields the tuple (20, 30).
10Which built-in function returns the number of items in a list, string, or dictionary?
A.count()
B.size()
C.len()
D.length()
Explanation: len(obj) returns the number of items (or characters for strings). count is a method on some sequences; size/length are not the standard builtins.

About the RBSE SS Computer Science Exam

The Rajasthan RBSE Senior Secondary (Class 12) Computer Science examination (subject code 003) is conducted by the Board of Secondary Education, Rajasthan (RBSE), Ajmer. Official 2026 subject-wise main-examination statistics list this paper among assessed subjects (ARTS/SCIENCE/COMMERCE 2026 stats: 003 COMPUTER SC.; model paper theory 56 marks). Scheme commonly Theory 56 + Sessional 14 = 70 and Practical 30 = 100. Official delivery commonly English/Hindi. The official assessment is mixed written and/or practical/performance format, not pure multiple-choice. The 100 questions on this page are an English-language MCQ study adaptation for concept drills and self-assessment — not an official translation, format simulation, or substitute for writing, practical, project, or performance practice. Aligned to RBSE syllabus materials on rajeduboard.rajasthan.gov.in (Class 12: 12_2026.pdf; Praveshika path materials as applicable).

Exam sponsor: Board of Secondary Education, Rajasthan (RBSE). The requirements and fees below concern the certification or admission exam, separate from our free practice resources.

Assessment

Official RBSE mixed written theory plus separate practical/viva components. Typical full marks pattern Theory 56 + Sessional 14 = 70 and Practical 30 = 100, theory duration 3 hours 15 minutes. Candidates must often pass theory and practical separately. Local bank: English-language four-option MCQ study adaptation — not a practical simulation. Subject code 003. ARTS/SCIENCE/COMMERCE 2026 stats: 003 COMPUTER SC.; model paper theory 56 marks.

Time Limit

3 hours 15 minutes (theory); practical duration as per subject scheme (commonly ~3–4 hours)

Passing Score

Minimum 33% marks in the subject as per RBSE examination regulations (confirm current session circulars). Where theory and practical are separate, candidates must pass each component as required by the subject scheme.

Exam / Certification Fees

As per RBSE annual examination fee notification for school/private candidates (Senior Secondary / Class 12 full board form fee is notified each cycle on rajeduboard.rajasthan.gov.in — confirm the current circular; subject papers are not separately priced on the statistics page)

Exam sponsor website

Reported exam pass rate: See RBSE subject-wise statistics for the current cycle on statistics2026.htm.. This describes exam candidates, not OpenExamPrep users or results from using our resources. Exam sponsor website

Fees, eligibility, and exam policies can change. Confirm them with the exam sponsor before applying or paying.

Our practice resources: topics covered

We aim to reflect publicly available exam outlines and topic information in our study resources. Coverage, format, and difficulty may differ from the actual exam, and we cannot guarantee that every detail is accurate or current. Confirm exam requirements, fees, and policies with the official exam sponsor.

35%

Programming with Python

Functions, file handling, data structures concepts used in Class 12 CS.

20%

Computer Networks

Network types, devices, protocols, and internet services.

20%

Database Concepts

Relational model, SQL basics, and data integrity.

15%

Society, Law & Ethics

Cyber safety, IP, and ethical computing.

10%

Practical Workflow Concepts

Lab workflow, debugging judgment, and project documentation concepts.

Preparing for the RBSE SS Computer Science Exam

What You Need to Know

  • Passing score: Minimum 33% marks in the subject as per RBSE examination regulations (confirm current session circulars). Where theory and practical are separate, candidates must pass each component as required by the subject scheme.
  • Assessment: Official RBSE mixed written theory plus separate practical/viva components. Typical full marks pattern Theory 56 + Sessional 14 = 70 and Practical 30 = 100, theory duration 3 hours 15 minutes. Candidates must often pass theory and practical separately. Local bank: English-language four-option MCQ study adaptation — not a practical simulation. Subject code 003. ARTS/SCIENCE/COMMERCE 2026 stats: 003 COMPUTER SC.; model paper theory 56 marks.
  • Time limit: 3 hours 15 minutes (theory); practical duration as per subject scheme (commonly ~3–4 hours)
  • Exam / certification fees: As per RBSE annual examination fee notification for school/private candidates (Senior Secondary / Class 12 full board form fee is notified each cycle on rajeduboard.rajasthan.gov.in — confirm the current circular; subject papers are not separately priced on the statistics page) Official sources

Using Our Practice Resources

  • Work through all 100 available questions
  • Review every answer and explanation
  • Track weak areas and revisit them
  • Use our AI tutor for tough concepts

RBSE SS Computer Science: Suggested Study Strategy

1Map every practice session to the official RBSE Computer Science unit list, not only popular coaching lists.
2After MCQ drills, write full answers from RBSE-style model papers under timed conditions.
3Verify facts (dates, formulas, definitions) against NCERT/RBSE prescribed books before trusting any third-party summary.
4Track weak categories and re-attempt missed items after 48 hours.
5For languages, literature, music, drawing, typewriting, and shorthand, MCQs support theory—still complete official skill practice.

Frequently Asked Questions

Is the official RBSE Senior Secondary (Class 12) Computer Science exam multiple-choice only?

No. Official RBSE papers mix objective and constructed-response tasks and may include practical/performance components. The 100 questions here are an English-language MCQ study adaptation for concept practice only.

What are full marks and duration for RBSE Computer Science?

Common scheme: Theory 56 + Sessional 14 = 70 and Practical 30 = 100; 3 hours 15 minutes (theory); practical duration as per subject scheme (commonly ~3–4 hours). Confirm the exact scheme for code 003 in the current RBSE syllabus PDF on rajeduboard.rajasthan.gov.in.

What is the passing score?

Minimum 33% marks in the subject as per RBSE examination regulations (confirm current session circulars). Where theory and practical are separate, candidates must pass each component as required by the subject scheme.

How much does the exam cost?

As per RBSE annual examination fee notification for school/private candidates (Senior Secondary / Class 12 full board form fee is notified each cycle on rajeduboard.rajasthan.gov.in — confirm the current circular; subject papers are not separately priced on the statistics page).

Where are official statistics and syllabus?

Subject-wise 2026 result statistics and board materials are published by RBSE at https://rajeduboard.rajasthan.gov.in/statistics2026.htm and syllabus PDFs under anudeshika / books sections of https://rajeduboard.rajasthan.gov.in. Prefer primary board PDFs over third-party summaries.

Is this bank an official RBSE translation?

No. OpenExamPrep publishes one English-language practice bank per exam ID. Target-language terms and texts may appear when they are integral to the skill, but stems, explanations, and SEO copy are English study adaptations — not official translations or language-environment simulations.

How should I use MCQs for a mixed written/practical paper?

Use MCQs for daily concept drills and self-check. Also practise full written answers from RBSE model papers under timed conditions and complete required practicals, projects, or performances.