Module 2: Data Definition and Data Type Flashcards

1
Q

Defines a particular data

A

Data definition

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

Definition should define a single concept

A

Atomic

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

Definition should be able to be mapped to some data element

A

Traceable

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

Definition should be unambiguous

A

Accurate

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

Definition should be understandable

A

Clear and Concise

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

Represents an object having a data

A

Data object

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

Data types which has built-in support

A

Built-in Data type

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

Examples of built-in data types

A

Integers, boolean (true, false), floating (decimal numbers), character and strings

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

Data types that can be implemented in many ways

A

List
Array
Stack
Queue

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

What are basic operations that process data in data structures (IDTSMS)

A

Traversing
Searching
Insertion
Deletion
Sorting
Merging

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

Container which can hold a fix number of items and the items should be of the same type

A

Array

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

Items stored in an array

A

Element

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

Each location of an element in an array

A

Index

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

Prints all the array elements one by one

A

Traverse

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

Adds an element at the given index

A

Insertion

17
Q

Deletes an element at the given index

A

Deletion

18
Q

Searches an element using the given index or value

A

Search

19
Q

Updates an element at the given index

A

Update

20
Q
A