Answer:
True
Explanation:
A single file can be used to record/ store all the information regarding a transaction because in a transaction there are less complexities. a  simple transaction involves an exchange/communication between a buyer and a seller which involves exchange in finances between the buyer and the seller.  
An employee can be involved in several activities like work activities and multiple transactions while a single inventory part record is different from an employee's record and  any other form of transaction. hence separate files have to be created for each of these activities. 
To have an easy access to this information when needed a master file is created to store all the individual files.
 
        
             
        
        
        
Answer:
see explaination 
Explanation:
void insertion( int e,int *x, int start, int end)
 {
 if (e >= x[end])
 x[end+1] = e;
 else if (start < end)
 {
 x[end+1] = x[end];
 insertion(e, x, start, end-1);
 }
 else
 {
 x[end+1] = x[end];
 x[end] = e;
 }
 }
 
void insertion_recurssion(int *b, int start, int end)
 {
 if(start < end)
 {
 insertion_sort_recur(b, start, end-1);
 insertion(b[end], b, start, end-1);
 }
 }
 void main()
 {
 insertion_recurssion(x,0,5);
 }
 
        
             
        
        
        
Answer:
 a. 118.20.210.254
Explanation:
Here are the few characteristics of Class A:
First bit of the first octet of class A is 0.
This class has 8 bits for network and 24 bits for hosts.
The default sub-net mask for class A IP address is 255.0.0.0 
Lets see if the first bit of first octet of 118.20.210.254 address is 0.
118 in binary (8 bits) can be represented as : 1110110
To complete 8 bits add a 0 to the left. 
01110110
First bit of the first octet of class A is 0 So this is class A address. 
For option b the first octet is : 183 in the form of bits = 10110111 So it is not class A address
For option c the first octet is 215 in the form of bits = 11010111 So it is not class A address
For option d the first octet is 255 in the form of bits = 11111111. The first bit of first octet is not 0 so it is also not class A address.
 
        
             
        
        
        
Answer:
If the keys were silent in the review, it could have been one of two things. The first thing being, the microphone just wasn't picking up the audio as good and the second being, you could have just got scammed. Would you mind telling me the model of your keyboard so I can do some research. Cherry mx switches are loud because they bottom out on the keyboard. The actual switch itself is very quite. All linear means is that they keystroke is consistent and smooth rather than a Tactile switch which has a bum in the middle of its' stroke. In advertisement, they will lightly press they switch and that catches your attention when in reality whatever you are doing gaming or typing you will be slamming your keys down with a considerable amount of force. If you want a quiter keyboard I would pick a low profile keyboard which means that they keystroke is not as long as a mechanical keyboard which also means that the noise from the key hitting the keyboard will be a lot less loud.
Explanation:
Hopefully that kinda answers your questions.