Deckly
← Back
Deck
Technology

Computer Fundamentals

A university-level overview of core computer science concepts including hardware, software, data representation, algorithms, and operating systems.

  • hardware
  • software
  • algorithms
  • data representation
  • networking
  • security
11 cards
Public

Flashcards in this deck (11)

#1
Basic

Von Neumann architecture

Answer

A computer design model where a single storage structure (memory) holds both instructions and data, and a central processing unit (CPU) fetches, decodes, and executes instructions sequentially via a shared bus. This model underlies most modern computers and introduces the von Neumann bottleneck due to shared bus for instructions and data.

#2
Cloze

The {{c1::CPU}} performs the fetch-decode-execute cycle to process instructions.

Answer

The CPU (Central Processing Unit) is the primary component that executes program instructions.

#3
Basic

Moore's Law

Answer

The observation that the number of transistors on a microchip doubles approximately every two years, leading to exponential growth in computing power and reduction in cost per transistor. Named after Gordon Moore, co-founder of Intel, this trend has driven the rapid advancement of hardware capabilities.

#4
Cloze

In binary representation, a {{c1::byte}} consists of 8 bits.

Answer

A byte is the basic addressable unit of memory in most computer architectures.

#5
Basic

Instruction Set Architecture (ISA)

Answer

The part of the processor visible to programmers, defining the supported instructions, data types, registers, addressing modes, and memory model. Examples include x86, ARM, and RISC-V. ISA defines the interface between hardware and software.

#6
Cloze

{{c1::RAM}} is volatile memory used for temporary storage, while {{c1::ROM}} is non-volatile memory used for firmware.

Answer

RAM (Random Access Memory) loses its contents when power is removed; ROM (Read-Only Memory) retains data without power.

#7
Basic

Operating system kernel

Answer

The core component of an operating system that manages system resources (CPU, memory, devices) and provides essential services through system calls. The kernel operates in privileged mode and handles process scheduling, memory management, and hardware abstraction.

#8
Basic

Compiler vs interpreter

Answer

A compiler translates entire source code into machine code before execution, producing an executable file; an interpreter reads and executes source code line‑by‑line at runtime. Compiled programs generally run faster, while interpreted languages offer greater portability and easier debugging.

#9
Cloze

Big O notation describes the {{c1::asymptotic upper bound}} of an algorithm's running time or space requirements.

Answer

It provides a high‑level understanding of algorithm efficiency, ignoring constant factors and lower‑order terms.

#10
Basic

TCP/IP model layers

Answer

The TCP/IP model consists of four layers: Link (Network Interface), Internet (IP), Transport (TCP/UDP), and Application (HTTP, FTP, DNS, etc.). This model abstracts network communication and underlies the modern Internet.

#11
Cloze

In {{c1::symmetric encryption}}, the same secret key is used for both encryption and decryption.

Answer

Examples include AES and DES; key distribution is a major challenge.