Session 01 Flashcards

1
Q

What is Data Structure?

A
  • A way of organizing and storing data in a computer so that it can be accessed and modified efficiently.
  • The collection of elements and all the possible operations which are required for those set of elements.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

2 types/categories of data structure?

A
  1. Primitive DS
  2. Non-primitive DS
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Primitive DS?

A
  • Single values, such as numbers, characters.

Int
Float
Double

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

Non-primitive DS?

A
  • Allow us to store multiple data type values.

Linear DS:
1. Array
2. Linked list
3. Queue
4. Stack

Non-linear DS:
1. Tree
2. Graphs

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

Differences between Primitive and Non-primitive data types?

A

Primitive:

1) Basic data types provided by a programming language.
2) Memory Allocated on the stack.
3) Size is fixed and predefined by the language.
4) Store single values.
5) Limited to basic arithmetic and logical operations.
6) Have default values (such as 0 for int, false for Boolean)
7) Generally, more efficient in terms of memory and performance.
8) It can be access directly through their variable names.
9) Used for representing simple values and performing basic operations.

Non-primitive:

1) Complex data structures that are built using primitive data types.
2) Typically, memory allocated on the heap.
3) Size is dynamic and vary during runtime.
4) Store multiple and complex sets of data.
5) Support a wide range of operations specific to the data structure.
6) Usually, initialize to null or require explicit initialization.
7) It can be less efficient due to additional memory and overhead.
8) It may require special methods or operations to access or manipulate.
9) Used for organizing and managing data in more complex ways.

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

Difference between linear and nonlinear data structure?

A

Linear:

  1. Data elements are arranged in linear order where each elements is attached to its previous and next adjacent.
  2. Single level is involved.
  3. Easy implementation
  4. Data elements can be traversed in a single run only.
  5. Memory is not utilized in an efficient way.

Non-linear:

  1. Data elements are attached in hierarchically manner.
  2. Multiple levels are involved.
  3. Complex implementation
  4. Data elements can’t be traversed in a single run only.
  5. Memory is utilized in an efficient way
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What is Abstract Data Structure (ADT)?

A

A data structure that defines the type of data stored, the operations allowed on it, and the behavior of these operations, without specifying it’s implementation.

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

Abstraction ?

A

the process of providing only the essentials and hiding the details.

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

ADT Operations ?

A
  1. Create
  2. Display
  3. Insertion
  4. Deletion
  5. Modification
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

What is an algorithms?

A

Set of rules or instructions to be followed to perform an operation on different data structures.

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

What is Running time analysis?

A

Process of determining how processing time(running time) increases as the size of the problem(input size) increases.

Rate of Growth

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

Asymptotic notation?

A

Used to describe the growth rate of functions.
Analyze how the performance of an algorithm changes as the size of the input increases.

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

Types of Asymptotic Notation?

A
  1. BIg Oh (O)
  2. Big Omega
  3. Big Theta
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

Big Oh

A

O(f(n))
Upper bound, Worst case time complexity.

If an algorithm has time complexity of O(n^2), it means the running time growth at most quadratically as the input size n increases.

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

Definition of BIg O notation?

A

f(n) = O(g(n))
if f(n) <= c.g(n)
for all values of n where n > n(note) and c and n(note) are constants.

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

Big Omega

A

Lower bound, Best case time complexity

17
Q

Big Omega definition

A

f(n) = Big Omega(g(n))
iff f(n) >= c.g(n) > 0
for some c > 0 and for all n >= n(note)
c and n(note) are constants.

18
Q

Big Theta

A

Upper and Lower bound, Worst case and Best case

19
Q

Big Thete definition

A

f(n) = Theta(g(n))
iff c1.g(n) <= f(n) <= c2.g(n)
for all values of n where n >= n(note) and c1, c2 and n(note) are constants.