Introduction to Computer Science & Basic Programming Lecture Notes

0.0(0)
Studied by 1 person
call kaiCall Kai
Locked
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/6

flashcard set

Earn XP

Description and Tags

Vocabulary flashcards covering course policies, assignments, grading scales, VR/HCI concepts, binary numbers, and computer architecture based on the lecture transcript.

Last updated 5:05 PM on 9/17/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai
Chat

No analytics yet

Send a link to your students to track their progress

7 Terms

1
New cards

Decimal System

A base-10 number system that uses ten unique digits: 0, 1, 2, 3, 4, 5, 6, 7, 8, and 9.

2
New cards

Binary System

A base-2 number system that represents all data and mathematical computations using only two unique digits: 0 and 1.

3
New cards

Unsigned Binary Representation Range

A binary number system without positive or negative signs, capable of representing integers in the range from 00 to 2n−12^n - 1 using nn bits.

4
New cards

Two's Complement

Signed binary numbers represent both positive and negative integers by using the first bit as a plus/minus indicator via Two's Complement, and their valid range of values for an n-bit sequence is calculated using the formula

-2^{n-1} to 2^{n-1} - 1.

5
New cards

Von Neumann Architecture

A computer hardware design framework comprising an Arithmetic Logic Unit (ALU), Input/Output (I/O) interfaces, and storage (the memory) connected together by a system bus .

6
New cards

Transistor

A microscopic hardware switching component that replaced vacuum tubes, allowing hundreds of billions of digital logic elements to fit on a modern CPU.

7
New cards

Logic Gates

microscopic electronic decisions makers inside computer chips that control how electricity flows using inputs of 1 (True) or 0 (False). By combining strict AND gates, flexible OR gates, and opposite-flipping NOT gates, microchips can process complex digital logic and run all modern software.