All Practice Exams

100+ Free Bhutan Civil Service Main Examination (ICT Category) Practice Questions

Prepare for the Bhutan Civil Service Examination – Main Examination: Technical Category (Information & Communications Technology) (BCSE ME ICT) exam with instant access — no signup required.

✓ No registration✓ No credit card✓ No hidden fees✓ Start practicing immediately
100+ Questions
100% Free

Loading practice questions...

Same family resources

Explore More Bhutan Civil Service Examination (BCSE)

Continue into nearby exams from the same family. Each card keeps practice questions, study guides, flashcards, videos, and articles in one place.

2026 Statistics

Key Facts: Bhutan Civil Service Main Examination (ICT Category) Exam

15 / 15 / 40

Paper I, II, and III weightings as a percentage of the Main Examination

BCSR 2023 Section 5.3.4.2

10 / 70 / 20

Main Examination components: Academic Achievement, Written Examination, Viva Voce

BCSR 2023 Section 5.3.2.3

50%

Minimum score in the Main Examination overall required to be eligible for selection

BCSR 2023 Section 5.9.1

6 categories

Main Examination groupings: Administrative, Finance, PGDE, Technical (which contains ICT), Dzongkha and B.Ed

BCSR 2023 Section 5.3.2.2

55%

Preliminary Examination cut-off the RCSC set for BCSE 2026 to qualify for the Main Examination

RCSC PE result declaration, 20 August 2026

3 Days

Duration over which the three written papers of the Main Examination are administered (1-3 October 2026)

RCSC BCSE 2026 announcement

NDI Act 2023

Primary legislation governing Bhutan's self-sovereign National Digital Identity system

National Digital Identity Act of Bhutan, passed by Parliament July 2023

The BCSE Main Examination (ICT Category) is a three-paper written examination plus a compulsory Viva Voce conducted by the RCSC for recruiting ICT Officers into the civil service of Bhutan. The three papers — Language & General Knowledge, General Subject Knowledge, and Subject Specialisation — are weighted 15%, 15%, and 40% of the ME, with final selection based on an aggregate of Academic Achievement (10%), Written Examination (70%), and Viva Voce (20%) requiring at least 50% overall. This bank provides 100 English-language practice MCQs covering the complete technical curriculum as a study aid.

Sample Bhutan Civil Service Main Examination (ICT Category) Practice Questions

Try these sample questions to test your Bhutan Civil Service Main Examination (ICT Category) exam readiness. Each question includes a detailed explanation. Start the interactive quiz above for the full 100+ question experience with AI tutoring.

1What is the primary architectural difference between the Von Neumann architecture and the Harvard architecture in computing systems?
A.Von Neumann architecture shares a single memory and bus for both data and instructions, whereas Harvard architecture separates data and instruction memory and buses.
B.Von Neumann architecture utilizes separate physical memory spaces for instructions and data, whereas Harvard architecture combines them on a unified bus.
C.Von Neumann architecture relies entirely on software-based instruction pipelining, whereas Harvard architecture requires asynchronous multi-core microprocessors.
D.Von Neumann architecture does not support cache memory hierarchies, whereas Harvard architecture requires three levels of dedicated on-chip cache.
Explanation: The fundamental distinction is that Von Neumann architecture uses a shared physical memory space and common system bus for both program instructions and data (leading to the Von Neumann bottleneck), while Harvard architecture features physically separate storage and signal pathways for instructions and data, allowing simultaneous memory access.
2In a classical RISC processor instruction pipeline, which type of pipeline hazard occurs when an instruction depends on the result of a previous instruction that has not yet completed execution?
A.Data hazard
B.Structural hazard
C.Control hazard
D.Instruction-cache miss stall
Explanation: A data hazard occurs when instructions that exhibit data dependence (such as Read-After-Write, RAW) overlap in different pipeline stages, requiring data forwarding/bypassing or pipeline stalls (bubbles) until the needed operand becomes available.
3In an operating system CPU scheduler using the Round Robin (RR) algorithm, what is the consequence of selecting an excessively small time quantum?
A.System overhead increases significantly due to frequent context switching, degrading overall CPU throughput.
B.The scheduling algorithm degenerates into First-Come, First-Served (FCFS) scheduling with high turnaround times.
C.Processes become starved of memory allocations leading to immediate thrashing in swap space.
D.Deadlock conditions arise among active CPU threads due to race conditions during queue rotation.
Explanation: If the time quantum in Round Robin scheduling is set too small, the processor spends a disproportionate amount of time performing context switches (saving and restoring process control blocks and cache state) rather than executing user code, thereby increasing system overhead and reducing effective throughput.
4Consider three processes arriving at time t = 0 with CPU burst times of P1 = 24 ms, P2 = 3 ms, and P3 = 3 ms. Under a non-preemptive Shortest Job First (SJF) scheduling policy, what is the average waiting time across all three processes?
A.3 ms
B.6 ms
C.9 ms
D.17 ms
Explanation: Under SJF, the processes execute in ascending order of burst time: P2 (3 ms), then P3 (3 ms), then P1 (24 ms). Waiting times are: P2 = 0 ms, P3 = 3 ms, and P1 = 3 + 3 = 6 ms. The average waiting time is (0 + 3 + 6) / 3 = 9 / 3 = 3 ms.
5Which cache mapping technique allows a main memory block to be placed into any arbitrary cache line, eliminating conflict misses at the expense of requiring complex associative comparison hardware?
A.Fully associative mapping
B.Direct mapping
C.2-way set-associative mapping
D.Sector mapping
Explanation: In fully associative cache mapping, any memory block can reside in any cache block location. Because there is no fixed line assignment, conflict misses are completely eliminated, but the processor must compare the memory address tag against all cache tags simultaneously using parallel associative comparator circuits.
6A computer system features an L1 cache with an access time of 2 ns and a hit rate of 90%, and main memory with an access time of 50 ns. What is the Average Memory Access Time (AMAT) of this memory hierarchy?
A.7 ns
B.5 ns
C.27 ns
D.52 ns
Explanation: AMAT is calculated as: AMAT = Hit Time + (Miss Rate × Miss Penalty). Here, Hit Time = 2 ns, Miss Rate = 1.0 - 0.90 = 0.10, and Miss Penalty = 50 ns. Therefore, AMAT = 2 ns + (0.10 × 50 ns) = 2 ns + 5 ns = 7 ns.
7What is the primary function of a Translation Lookaside Buffer (TLB) in a modern virtual memory system?
A.To serve as a high-speed hardware cache for recent virtual-to-physical page table translations, avoiding extra memory accesses.
B.To store temporary execution stacks of suspended background processes to reduce disk swap operations.
C.To buffer dirty cache lines before writing them back asynchronously to secondary magnetic storage.
D.To perform dynamic branch prediction and speculative decoding for out-of-order execution pipelines.
Explanation: A Translation Lookaside Buffer (TLB) is a specialized associative hardware cache within the Memory Management Unit (MMU) that stores recent mappings from virtual page numbers to physical frame numbers. A TLB hit enables instantaneous address translation without traversing multi-level page tables in main memory.
8Which page replacement algorithm is susceptible to Belady's Anomaly, wherein allocating additional physical page frames can paradoxically increase the total number of page faults?
A.First-In, First-Out (FIFO)
B.Least Recently Used (LRU)
C.Optimal Page Replacement (OPT)
D.Least Frequently Used (LFU) with aging
Explanation: First-In, First-Out (FIFO) replacement is not a stack algorithm and is susceptible to Belady's Anomaly, where increasing the number of allocated memory frames can result in more page faults for certain reference strings. In contrast, stack algorithms like LRU and Optimal never exhibit this anomaly.
9In operating system memory management, what defines the condition known as 'thrashing'?
A.The operating system spends more time servicing page faults and swapping pages in and out than executing actual process instructions.
B.Multiple threads access shared variables simultaneously without synchronization, causing corrupt register states.
C.The file system buffer cache becomes corrupted due to sudden power interruption during write operations.
D.A rogue process consumes 100% of CPU cycles in an infinite recursion loop without releasing memory.
Explanation: Thrashing occurs when a computer's virtual memory subsystem is in a constant state of paging. When the sum of the working sets of all active processes exceeds the available physical RAM, processes continually fault on pages, causing the CPU utilization to collapse as the disk queue saturates.
10Which of the following describes the atomic operation of the wait() (or P()) primitive on a counting semaphore S?
A.It decrements S; if S becomes negative, the calling process is blocked and added to the semaphore's waiting queue.
B.It increments S; if S is less than or equal to zero, it wakes up a sleeping process from the semaphore's queue.
C.It resets S to its maximum capacity and broadcasts a wakeup signal to all active listener threads.
D.It tests whether S equals zero; if true, it resets S to 1 without blocking the calling thread.
Explanation: The wait() (or P()) primitive atomically decrements the semaphore counter S. If the resulting value is less than zero (or if S was 0 in standard non-negative counting representations), the calling process is suspended and placed into the semaphore's waiting queue until released by a corresponding signal() (or V()) operation.

About the Bhutan Civil Service Main Examination (ICT Category) Exam

The Bhutan Civil Service Examination – Main Examination (ICT Category) is the competitive graduate recruitment examination conducted annually by the Royal Civil Service Commission (RCSC) to select Information and Communications Technology Officers into the Professional and Management Category (PMC) of the civil service of Bhutan; the entry Position Level for each announced post is stated in the RCSC vacancy announcement. Candidates who qualify through the BCSE Preliminary Examination sit three written papers over three days: Paper I (Language & General Knowledge), Paper II (General Subject Knowledge in ICT), and Paper III (Subject Specialisation in ICT), weighted 15%, 15%, and 40% of the Main Examination score. The final merit ranking combines Academic Achievement (10%), Written Examination (70%), and a compulsory Viva Voce interview (20%). Key technical areas evaluated include computer architecture, operating system internals, data structures and algorithms, database design and 3NF normalization, network engineering (CIDR, subnetting, TCP/IP, routing), software development lifecycles (Agile/Scrum, CI/CD, DevOps), cybersecurity principles, and Bhutan's digital governance ecosystem (GovTech Agency, National Digital Identity Act 2023, ICM Act 2018, and BtCIRT incident response). This 100-question practice bank is an English-language MCQ study adaptation designed to reinforce core theoretical and practical competencies, not an official RCSC paper or translation.

Assessment

The BCSE Main Examination (Stage II) is sat over three consecutive days by candidates who cleared the Preliminary Examination (PE) at the cut-off the RCSC sets each year under BCSR 2023 Section 5.3.1.4 (55% for BCSE 2026) or were exempted from the PE under Section 5.3.1.6. BCSR 2023 Section 5.3.2.2 groups ME candidates into six categories — Administrative, Finance, PGDE, Technical, Dzongkha and B.Ed — and ICT is a subject group sat within the Technical Category rather than a separate category of its own. For the Technical (ICT) Category, the written examination consists of three papers: Paper I (Language & General Knowledge, weighted 15%), Paper II (General Subject Knowledge covering fundamental computer science and ICT principles, weighted 15%), and Paper III (Subject Specialisation focusing on advanced networking, software engineering, database systems, cybersecurity, and system architecture, weighted 40%). The overall Main Examination aggregate score combines Academic Achievement (10%), the Written Examination (70%), and a compulsory Viva Voce interview (20%), conducted in both Dzongkha and English. A minimum aggregate of 50% across the ME is required for merit ranking and placement into government ICT Officer positions (P5 level). This 100-question practice bank is an English-language MCQ study adaptation of the tested curriculum, not a simulation of the written or oral examination.

Time Limit

Not published by the RCSC; the three written papers are sat over three consecutive days, followed by a separate Viva Voce interview

Passing Score

At least 50% in the BCSE Main Examination overall (BCSR 2023 Section 5.9.1); the ME score combines Academic Achievement 10%, Written Examination 70% and Viva Voce 20%

Exam Fee

No separate Main Examination fee for candidates who qualified through, or were exempted from, the BCSE Preliminary Examination. BCSR 2023 Section 5.8.2 authorises an administrative appeal fee per paper for result review (recounting only); the RCSC appeal form sets it at Nu. 300 per paper. (Royal Civil Service Commission (RCSC), Royal Government of Bhutan)

Bhutan Civil Service Main Examination (ICT Category) Exam Content Outline

15% of this bank

Computer Architecture and Operating Systems

Processor architecture, cache memory, paging, CPU scheduling algorithms, process synchronization, and deadlock prevention.

15% of this bank

Data Structures and Algorithms

Arrays, linked lists, trees, graphs, sorting and searching algorithms, graph traversal, and Big-O computational complexity.

15% of this bank

Database Systems and Data Management

Relational schema design, SQL querying, database normalization (1NF to BCNF), transaction ACID properties, and indexing.

20% of this bank

Computer Networks and Distributed Systems

OSI/TCP-IP models, IPv4/IPv6 subnetting, CIDR prefix calculations, routing protocols, transport layer flow/congestion control.

20% of this bank

Software Engineering and System Design

SDLC methodologies (Agile, Scrum, Waterfall), DevOps (CI/CD, Git, IaC), microservices, API design, and system reliability.

15% of this bank

Cybersecurity and Bhutan Digital Governance

Information security principles, cryptography, application security, Bhutan GovTech Agency, NDI Act 2023, and BtCIRT incident response.

How to Pass the Bhutan Civil Service Main Examination (ICT Category) Exam

What You Need to Know

  • Passing score: At least 50% in the BCSE Main Examination overall (BCSR 2023 Section 5.9.1); the ME score combines Academic Achievement 10%, Written Examination 70% and Viva Voce 20%
  • Assessment: The BCSE Main Examination (Stage II) is sat over three consecutive days by candidates who cleared the Preliminary Examination (PE) at the cut-off the RCSC sets each year under BCSR 2023 Section 5.3.1.4 (55% for BCSE 2026) or were exempted from the PE under Section 5.3.1.6. BCSR 2023 Section 5.3.2.2 groups ME candidates into six categories — Administrative, Finance, PGDE, Technical, Dzongkha and B.Ed — and ICT is a subject group sat within the Technical Category rather than a separate category of its own. For the Technical (ICT) Category, the written examination consists of three papers: Paper I (Language & General Knowledge, weighted 15%), Paper II (General Subject Knowledge covering fundamental computer science and ICT principles, weighted 15%), and Paper III (Subject Specialisation focusing on advanced networking, software engineering, database systems, cybersecurity, and system architecture, weighted 40%). The overall Main Examination aggregate score combines Academic Achievement (10%), the Written Examination (70%), and a compulsory Viva Voce interview (20%), conducted in both Dzongkha and English. A minimum aggregate of 50% across the ME is required for merit ranking and placement into government ICT Officer positions (P5 level). This 100-question practice bank is an English-language MCQ study adaptation of the tested curriculum, not a simulation of the written or oral examination.
  • Time limit: Not published by the RCSC; the three written papers are sat over three consecutive days, followed by a separate Viva Voce interview
  • Exam fee: No separate Main Examination fee for candidates who qualified through, or were exempted from, the BCSE Preliminary Examination. BCSR 2023 Section 5.8.2 authorises an administrative appeal fee per paper for result review (recounting only); the RCSC appeal form sets it at Nu. 300 per paper.

Keys to Passing

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

Bhutan Civil Service Main Examination (ICT Category) Study Tips from Top Performers

1Practice IPv4 subnetting and CIDR prefix calculations (calculating subnet masks, valid host ranges, and broadcast addresses) until you can solve them swiftly without reference tables.
2Master relational database normalization steps from 1NF through BCNF, focusing on identifying functional dependencies and eliminating update, insertion, and deletion anomalies.
3Review operating system scheduling algorithms (Round Robin, SJF, Priority) and memory management techniques including paging, page fault handling, and TLB lookups.
4Understand software engineering paradigms, comparing Agile/Scrum sprint workflows with traditional Waterfall models, and master Git version control branching and CI/CD automation principles.
5Study modern cybersecurity mechanisms (public key cryptography, RSA, digital signatures, hashing) and vulnerability remediation strategies for web applications (OWASP Top 10).
6Familiarize yourself with Bhutan's digital governance landscape, including the National Digital Identity (NDI) Act 2023, the Information Communications and Media (ICM) Act 2018, and BtCIRT incident reporting procedures.

Frequently Asked Questions

What is the examination format of the BCSE Main Examination for the ICT Category?

ICT is a subject group sat within the Technical Category, which BCSR 2023 Section 5.3.2.2 lists as one of the six ME categories. Under Section 5.3.4.1 the Technical Category written examination is three papers: Paper I (Language and General Knowledge), Paper II (General Subject Knowledge, common to the subject groups and sat as the ICT paper), and Paper III (Subject Specialisation for the specific position). Section 5.3.4.2 weights them at 15%, 15% and 40% of the Main Examination aggregate. Candidates must also complete a compulsory Viva Voce interview (20% of the ME), with the remaining 10% from Academic Achievement.

What educational qualifications are required to appear for the BCSE ICT Category?

BCSR 2023 Section 5.4 sets the statutory bar: Bhutanese citizenship, an age of at least 18 and not more than 35 for pre-service (45 for in-service) candidates on the last date of online registration, and a recognised Bachelor's degree of at least three years. For the Technical Service category, Section 5.4.5 requires only 'a Bachelor's Degree in relevant field' — the RCSC does not fix a list of ICT degree titles in the Rules, so the accepted disciplines for each announced ICT post are those printed in that year's RCSC vacancy announcement. Candidates must also have cleared the Preliminary Examination at the RCSC's cut-off for that year, or hold a PE waiver.

How is the final merit ranking computed for BCSE ICT candidates?

BCSR 2023 Section 5.3.2.3 divides the Main Examination into Academic Achievement (10%), Written Examination (70%) and Viva Voce (20%) for the Technical Category, and Section 5.3.4.2 splits that 70% into Paper I 15%, Paper II 15% and Paper III 40%. Section 5.9.1 requires at least 50% in the ME to be eligible for selection, and Section 5.9.2 then places qualified candidates by merit rank against announced vacancies. Where two candidates tie, Section 5.9.8 breaks the tie on the Written Examination score first and the Viva Voce score second.

What role does the GovTech Agency play in Bhutan's civil service ICT landscape?

The GovTech Agency (formerly the Department of Information Technology and Telecom under the Ministry of Information and Communications) is the overarching government entity responsible for national digital transformation, digital public infrastructure (such as the National Digital Identity / NDI platform), national cybersecurity coordination via BtCIRT, and establishing ICT standards across government agencies.

What technical topics are emphasized in Paper II and Paper III for ICT candidates?

Paper II emphasizes foundational computer science concepts including computer organization, data structures, algorithms, operating systems, and discrete logic. Paper III focuses on advanced specialized competencies including network architecture (CIDR, subnetting, BGP/OSPF), relational database normalization (3NF/BCNF), software engineering lifecycles (Agile/Scrum, DevOps, CI/CD), cybersecurity principles, and enterprise system design.

How should candidates use this English-language practice question bank?

This 100-question multiple-choice bank is an English-language study adaptation designed to test core theoretical principles, calculation skills (such as subnetting and Big-O analysis), architectural concepts, and Bhutan digital governance laws. While the official examination contains descriptive and problem-solving written components, these MCQs provide targeted practice for knowledge mastery and rapid concept review.