Answer: Data model
Explanation: Data model is the arrangement of the information in the form of table structure to maintain it in the form of database.They help in the keeping the entities in the sequence and can be tracked when required.Example- vendors records,customer record etc.
Other options are incorrect because the data retrieval is the regaining of the data from database, record instance is the parts of the database records and meta data give knowledge about other data.
Answer:
The number of nodes in a full binary tree of height 2 = 7
Explanation:
At each level k, of the full binary tree there are usually
nodes.
So the full binary tree of height 2 has nodes=
+
+
.
which is 7.
Answer:
A) virus signature
Explanation:
Antivirus databases contain what are called signatures, a virus signature is a continuous sequence of bytes that is common for a certain malware sample.
--
Encryption is a way of scrambling data so that only authorized parties can understand the information.
Answer:
#include<stdio.h>
int GetLargest()
{
int a[100],n,largest;
printf("Enter number of elements\n");
scanf("%d",&n);
printf("Enter elements\n");
for(int i=0;i<n;i++)
scanf("%d",&a[i]);
i=0;
largest=a[i];
while(i<n)
{
i++
if(a[i]>largest)
largets=a[i];
}
return largest;
}
void main(){
int largest;
largest=GetLargest();
printf("Largest Number is %d",largest);
}
Explanation:
Here we define one function "GetLargest". This function reads n number of elements and finds the largest number among the n elements. Here we took one array and assumed first element is the largest element. if any element of the array is greater that that element we make that as larger and continues.at the end we are getting largest element in the n numbers and returning that to the main.