1.4 data types,data structures and algorithms Flashcards

1
Q

1.4.1 data types

A

uhhhh here we go

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

how to represent negative numbers in binary

A

-sign and magnitude
-2’s constant

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

sign and magnitude

A

the leftmost bit (most significant bit) is used as the sign bit. sign bit of 0 means its a positive number, sign bit of 1 means negative number. Remaining bits represent the value of number.
-first convert number to binary then if negative number put the sign bit as 1

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

sign and magnitude example

A

-binary 173: 10101101
-sign magnitude +173: 010101101
-sign magnitude -173: 110101101

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

two’s compliment

A

-most significant bit is 128 which is represented as -128
-if decimal number, first convert to binary. copy the binary number until the first zero then flip the rest of the bits (make 0 to 1, make 1 to 0)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

two’s compliment example

A

binary 7: 00000111
two’s compliment: 11111001 (represents -7 as it starts with 1)
(-128+64+32+16+8+1 = -7)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

1.4.2 data structures

A

bjkh

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

what is a stack?

A

a last in first out data structure, where items can only be removed from and added to the top of the list

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

where might stacks be used

A

-back button in a web page
-undo buttons

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

operations on stack

A

-Push: Adds an element to the top of the stack.
-Pop: Removes and returns the top element of the stack.
-Peek: Returns the top element of the stack without removing it.
-IsEmpty: Checks if the stack is empty.
-Size: Returns the number of elements in the stack
-isFull: checks if stack is full and returns boolean value

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

what is a queue

A

first in first out (FIFO) data structure; items are added to the end of the queue
and are removed from the front of the queue

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

where are queues used

A

printers, keyboards and simulators

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

operations on queues

A

-Enqueue: Adds an element to the end (rear) of the queue.
-Dequeue: Removes and returns the front element of the queue.
-isEmpty():checks to see if the queue is empty
-isFull(): checks to see if the queue is full

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

stacks and queues differences

A

-In Stack, elements are added and removed from the same end (the top). In Queue, elements are added at the rear and removed from the front
-stacks use a single pointer to manage the top element, while queues use two pointers to manage both the front and the rear elements.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

static data structure
-example

A

those that have a fixed size and structure at compile time
-array

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

dynamic data structure
-example

A

The memory capacity of a dynamic data structure is not fixed
-list