All Practice Exams

100+ Free RBSE SS Computer Science Practice Questions

Rajasthan RBSE Senior Secondary (Class 12) Computer Science — Code 003 practice questions are available now; exam metadata is being verified.

✓ No registration✓ No credit card✓ No hidden fees✓ Start practicing immediately
See RBSE subject-wise statistics for the current cycle on statistics2026.htm. Pass Rate
100+ Questions
100% Free

Loading practice questions...

2026 Statistics

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 test your RBSE SS Computer Science exam readiness. 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 Practice Questions

Verified exam format metadata for Rajasthan RBSE Senior Secondary (Class 12) Computer Science — Code 003 is pending. The practice questions above remain available while official exam length, timing, passing score, fee, and administrator details are reviewed.