Computer Knowledge

Digital Logic and Microprocessors

735 Questions

Digital logic and microprocessors form the core of computer science, covering logic gates, combinational and sequential circuits, and CPU architecture. These topics are crucial for computer knowledge sections in technical exams. Test your digital electronics basics here.

Logic gates and circuitsCombinational vs sequential circuitsMicroprocessor instructionsTruth tables and boolean functions

Digital Logic and Microprocessors Questions

Multiple choice general knowledge science & technology
  1. Rectifier

  2. Flip-Flop

  3. Comparator

  4. Attenuator

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

A flip-flop is a basic memory element in digital electronics that can store one bit of information. It has two stable states and is used in registers, counters, and RAM. Rectifiers convert AC to DC, comparators compare voltages, and attenuators reduce signal strength.

Multiple choice general knowledge science & technology
  1. TTL Logic circuit

  2. Analogue Circuits

  3. Micro controller

  4. Both 1 & 2

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

BEAM robotics emphasizes simple control circuits using minimal components. TTL (Transistor-Transistor Logic) is a digital logic family that can be used to implement the nervous network behaviors characteristic of BEAM robots. While BEAM often uses discrete analog components, TTL logic circuits provide a viable implementation path for these biomimetic systems.

Multiple choice general knowledge
  1. Linear-signal circuits

  2. Mixed-signal circuits

  3. Direct-signal circuits

  4. Indirect-signal circuits

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

Integrated circuits combining both analog and digital functionality are correctly called mixed-signal circuits (option B). These ICs handle both continuous analog signals and discrete digital signals. Options A, C, and D are not standard terminology in electronics.

Multiple choice general knowledge
  1. Electric circuits based on a number of discrete current levels

  2. Electric circuits based on a number of discrete voltage levels

  3. Electric circuits based on a number of discrete charge levels

  4. None

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

Digital circuits operate using discrete voltage levels (option B), typically representing binary 0 and 1. Unlike analog circuits that use continuous voltages, digital circuits work with specific, separated voltage thresholds. Options A and C are incorrect because digital circuits aren't based on current or charge levels.

Multiple choice general knowledge science & technology
  1. multiplexers

  2. Boolean expressions

  3. logic gates

  4. All of these

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

Karnaugh map (K-map) is a graphical method used to simplify Boolean expressions in digital logic design. It provides a systematic way to reduce complex Boolean expressions to their minimal form, which is essential for optimizing digital circuits. While K-maps are used in designing logic gates and multiplexers, their primary purpose is simplifying the underlying Boolean expressions.

Multiple choice general knowledge science & technology
  1. OR gates

  2. OR & AND gate

  3. Flip-flops

  4. All of these

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

A register in digital electronics is a group of flip-flops used to store multiple bits of binary data. Each flip-flop can store one bit, so multiple flip-flops are combined to create registers that store bytes or words. Registers are NOT made of OR gates or combinations of logic gates - those are used for combinational logic, not data storage.

Multiple choice general knowledge science & technology
  1. 1 bit

  2. 2 bit

  3. 8 bit

  4. 16 bit

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

Each flip-flop stores exactly one bit of binary information (0 or 1). This is fundamental to digital electronics - flip-flops are the basic building blocks for memory and registers. Multiple flip-flops can be combined to store multiple bits (8 flip-flops for a byte, 16 for a word, etc.), but each individual flip-flop holds only one bit.

Multiple choice general knowledge science & technology
  1. Accumulator

  2. Stack

  3. Counter

  4. Flags

Reveal answer Fill a bubble to check yourself
D Correct answer
Explanation

The status register in microprocessors is commonly called the 'Flags' register because it contains individual flag bits (zero, carry, overflow, etc.) that indicate the status of arithmetic and logical operations. Accumulator, stack, and counter are different processor components.

Multiple choice general knowledge science & technology
  1. AND, OR and XOR

  2. AND, OR and NAND

  3. AND, OR and NOT

  4. XOR, NOR and NAND

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

The set {AND, OR, NOT} is a functionally complete set of logical operators, meaning any possible Boolean function can be constructed using only these three types of gates. NAND and NOR are also individually complete, but XOR is not.