Prelim Exam Blueprint & Study Plan
Your prelim exam for Introduction to Computing almost always draws from the first three units of this subject:
- Unit I: Overview of Information and Communications Technology — definitions, elements of a computer system, classifications, capabilities and limitations, history and generations.
- Unit II: Data Representation — number systems, conversions, arithmetic, complements, BCD/UDF/PDF, signed numbers, IEEE floating point, ASCII/EBCDIC, parity.
- Unit III: Hardware — components of the system unit, memory types, secondary storage, Boolean algebra, logic gates, De Morgan's theorems.
Typical Question-Type Breakdown
| Question Type | Usual Share | Where It Comes From |
|---|---|---|
| Multiple choice | 30-40% | All three units — definitions, classifications, "which of the following" |
| Number-system conversions and arithmetic | 25-30% | Unit II — this is where prelims are won or lost |
| Identification / fill-in-the-blank | 15-20% | Inventors, generations, CPU parts, gate names |
| True or false | 10-15% | Capability/limitation statements, memory facts, complement rules |
| Short essay | 0-10% | "Trace the generations", "differentiate data and information" |
The Exact Memorize List
If you memorize nothing else, memorize these cold:
- Number systems — binary (base 2: 0,1), octal (base 8: 0-7), decimal (base 10), hexadecimal (base 16: 0-9, A=10 up to F=15).
- Powers of 2 up to 1024, and the conversion directions: decimal to base-N = divide and read remainders bottom-up; base-N to decimal = multiply by place values.
- Grouping rules — binary to octal in groups of 3, binary to hex in groups of 4, always starting from the right.
- Complement rules — 1's complement: flip every bit; 2's complement: flip and add 1. Carry out = positive (add it back for 1's, discard for 2's); no carry = negative (recomplement).
- ASCII anchors — A=65, a=97, 0=48, space=32. The character 8 is code 56, not the number 8.
- Generations table — vacuum tubes (1946-1959, milliseconds), transistors (1959-1965, microseconds), integrated circuits (1965-1971, nanoseconds), microprocessors (1971-1980), ULSI + AI (1980-present).
- Inventor matches — Babbage (Difference Engine), Hollerith (punch card machine), Napier (Napier's Bones), Oughtred (slide rule), Bush (Differential Analyzer), Eckert and Mauchly (ENIAC), von Neumann (EDVAC, stored program), Noyce and Kilby (integrated circuit).
- Classification bases — by size (super, mainframe, mini, micro), by functionality (server, workstation, information appliance, embedded), by data handling (analog, digital, hybrid), by purpose (general, special).
- CPU internals — control unit (traffic controller), ALU (arithmetic and logic), registers (tiny high-speed storage), system clock (pace-setter). Memory types: RAM (volatile, in-use data), cache (fast holding area), ROM (boot instructions, non-volatile), CMOS (configuration data).
- Storage access — magnetic tape is serial access; magnetic disk is direct access; optical discs use lasers; SSDs have no moving parts.
- Gate behavior — AND: all 1s in, 1 out. OR: any 1 in, 1 out. NAND: 0 only when all inputs are 1. NOR: 1 only when all inputs are 0. XOR: 1 when inputs differ. NAND and NOR are the universal gates.
- Boolean essentials — A + A' = 1, A • A' = 0, and both De Morgan theorems: (X + Y)' = X'Y' and (XY)' = X' + Y'.
- Speed measures — everyday computers in MIPS, supercomputers in FLOPS.
Top Mistakes That Sink Prelim Scores
- Reading remainders top-down in decimal-to-binary conversion. Always read bottom-up (last remainder is the most significant bit).
- Grouping binary from the left when converting to octal or hex. Group from the right, pad the left.
- Converting a whole number to binary when BCD is asked. BCD encodes each decimal digit separately in 4 bits — this mix-up is a classic zero-credit answer.
- Mixing up the carry rules — adding the carry back in 2's complement (you discard it) or discarding it in 1's complement (you add it back).
- Saying information is raw and data is processed. It is the reverse: data = raw facts, information = processed, meaningful data.
- Confusing RAM and ROM — RAM forgets (volatile, working data), ROM remembers (non-volatile, boot instructions).
- Answering classification questions without stating the basis. Say the basis first ("By size, ..."), then the type — answers without the basis earn partial credit only.
Realistic 7-Day Study Plan
| Day | Focus | What To Do |
|---|---|---|
| 1 | Unit I — Overview of ICT | Definitions (data vs. information), elements (hardware/software/peopleware), all four classification bases, capabilities and limitations. Recite the classification bases out loud. |
| 2 | Unit I — History | Early devices table (device + inventor pairs) and the five generations (component + years + speed unit). Write the generations table from memory twice. |
| 3 | Unit II — Number systems and conversions | Do every conversion direction by hand: binary/octal/decimal/hex, both ways, including one fractional conversion. |
| 4 | Unit II — Arithmetic and complements | Binary, octal, and hex addition with carries; subtraction by direct method, 1's complement, and 2's complement. Drill the carry rules until automatic. |
| 5 | Unit II — Data representation | BCD, unpacked and packed decimal, sign-magnitude, the IEEE single-precision layout (1-8-23, bias 127), ASCII anchors, even and odd parity. |
| 6 | Unit III — Hardware and digital logic | CPU parts, memory types, secondary storage. Then gates, truth tables, Boolean identities, De Morgan. Build one truth table from scratch. |
| 7 | Mock exams | Take Prelim Mock Exam A timed. Check with the answer key, re-drill every miss, then take Mock B the same evening or the next morning. |
Free Practice Set — 15 Items with Answer Key
Treat this like the real thing: cover the answer key, time yourself (20 minutes), and write conversion solutions out by hand.
Items
- (MCQ) Which generation of computers introduced transistors as the core electronic component? a) First b) Second c) Third d) Fourth
- (True/False) Data is processed information that has been organized into something meaningful.
- (Identification) Who designed the Difference Engine, intended to calculate and print mathematical tables?
- (MCQ) The speed of supercomputers is measured in: a) MIPS b) FLOPS c) nanoseconds d) gigabytes
- (Conversion) Convert 1101 in binary to decimal.
- (Conversion) Convert 52 in decimal to binary. Show the division steps.
- (Conversion) Convert 2E in hexadecimal to decimal.
- (Conversion) Convert 117 in octal to binary using the grouping method.
- (MCQ) Which memory loses its contents when power is removed? a) ROM b) CMOS c) RAM d) SSD
- (Identification) Which CPU component performs all arithmetic calculations and logical comparisons?
- (MCQ) Which logic gate outputs 1 only when ALL of its inputs are 1? a) OR b) XOR c) NOR d) AND
- (True/False) NAND and NOR are universal gates — any other gate can be built from either one alone.
- (MCQ) The decimal ASCII code for the uppercase letter A is: a) 41 b) 65 c) 97 d) 48
- (Conversion) Find the 2's complement of 0110.
- (MCQ) MICR readers are input devices used primarily for processing: a) barcodes b) exam answer sheets c) bank checks d) photographs
Answer Key
- b) Second — transistors defined the second generation (1959-1965); the first used vacuum tubes.
- False — it is the reverse: data is raw facts; information is data that has been processed into something meaningful.
- Charles Babbage — the Difference Engine; do not confuse him with Hollerith (punch cards).
- b) FLOPS — Floating Point Operations Per Second; MIPS is used for everyday computers.
- 13 — 1x8 + 1x4 + 0x2 + 1x1 = 8 + 4 + 0 + 1 = 13.
- 110100 — 52/2=26 r0, 26/2=13 r0, 13/2=6 r1, 6/2=3 r0, 3/2=1 r1, 1/2=0 r1; read remainders bottom-up: 110100 (check: 32+16+4 = 52).
- 46 — 2x16 + E(14)x1 = 32 + 14 = 46.
- 1001111 — each octal digit becomes 3 bits: 1=001, 1=001, 7=111, giving 001 001 111 = 1001111 (check: both equal 79 in decimal).
- c) RAM — RAM is volatile; ROM and CMOS retain their contents, and SSDs are permanent secondary storage.
- The ALU (Arithmetic and Logic Unit) — the control unit only directs traffic; it does not compute.
- d) AND — OR fires on at least one 1, XOR fires when inputs differ, NOR fires only when all inputs are 0.
- True — that is exactly what makes them universal; manufacturers exploit this to simplify fabrication.
- b) 65 — uppercase A-Z run from 65 to 90; 97 is lowercase a, 48 is the digit 0.
- 1010 — flip every bit of 0110 to get 1001 (the 1's complement), then add 1: 1010.
- c) bank checks — MICR stands for Magnetic Ink Character Recognition.
Scored 12 or better? You are on track — the two full 30-item prelim mocks, two final mocks, complete worked answer keys, and the trap drills below come with the subject unlock.
Prelim Mock Exam A — 30 Items
ProReviewer — locked
Drills, code labs, and full solutions.
Prelim Mock Exam B — 30 Items
ProReviewer — locked
Drills, code labs, and full solutions.
Prelim Mock Exams — Answer Key with Explanations
ProReviewer — locked
Drills, code labs, and full solutions.
Common Prelim Traps & How to Avoid Them
ProReviewer — locked
Drills, code labs, and full solutions.
Final Exam Blueprint & Rapid Review Sheet
ProReviewer — locked
Drills, code labs, and full solutions.
Final Mock Exam A — 30 Items
ProReviewer — locked
Drills, code labs, and full solutions.
Final Mock Exam B — 30 Items
ProReviewer — locked
Drills, code labs, and full solutions.
Final Mock Exams — Answer Key with Explanations
ProReviewer — locked
Drills, code labs, and full solutions.