compuer science

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

1/7

encourage image

There's no tags or description

Looks like no tags are added yet.

Last updated 9:57 AM on 3/20/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai
Chat

No analytics yet

Send a link to your students to track their progress

8 Terms

1
New cards

binary

binary is a system that uses 1’s and 0’s to represent all types of data in computing, including numbers, letters, and symbols.

2
New cards

unsigned integers

A type of integer that can only represent positive whole numbers, with a range starting from 0 and extending to a maximum value based on the number of bits used for storage.

3
New cards

two’s compliment

A method for representing positive or negative numbers in binary, allowing for both positive and negative values. In this system, the most significant bit (the front one 128) signifies the sign of the number, with 0 for positive and 1 for negative.

4
New cards

binary addition

The process of adding binary numbers, following specific rules for carrying over when the sum exceeds the value that can be represented by a single bit.

(0+0 =0 , 1+0=1, 0+1=1 1+1=10, 1+1+1=11)

5
New cards

logical shifts

Logical shifts are binary operations used to shift the bits of a binary number either to the left then fill the rest of the slots with zeros

6
New cards

arithmetic shifts

Arithmetic shifts are binary operations that shift the bits of a binary number to the right then fill the rest of the slots with zeros

7
New cards

overflow

overflow occurs in binary addition where there is an extra digit in the start of the answer and errors might occur

8
New cards

hexadecimal