Answer:
Mask is the process of replacing and changing the sensitive information and data element from the stored data so, the given structure in the data remain the same while the data itself change for protecting the sensitive information or data in the system.
This process is commonly known as data masking. The main purpose of mask is that it protecting the information or data.
Format is the process of specify the bits for using in the digital storage and it is mainly used for encoding the information and data. It basically designed for formatting the document so that it can store in the media with the proper format in the computer system.
Dont drive so ask a friend to drive you home
Answer:
The correct answer to use in filling in the gap is "Command languages interaction".
Explanation:
Command languages interaction occurs when the user enters command which are not always remembered, the computer executes it (with feedback if necessary), then requests next command.
This implies that under command languages interaction, "Command prompts" are employed by users who enter in commands and maybe certain parameters that impact how the command is executed.
Therefore, the correct answer to use in filling in the gap is "Command languages interaction".
Explanation:
Array is collection of similar data types it is a linear data structure.Array stores elements in a contiguous memory location.
We have an array arr[5] of size 5 and it is of integer type.Suppose the starting address of the array is 2000 and each memory location is one byte long.As we know that the size of integer is 2 or 4 bytes we take it 2 bytes.
If the starting address is 2000 that is of index 0 then the address of index 1 is 2000+2=2002.
address of index 2=2004.
address of index 3=2006.
address of index 4=2008.
Since size of int is 2 bytes hence we add two memory location.