Answer:
The detail answer to this question is given in the explanation section. 
The correct answer is .info
Explanation:
Let look as each statement
p.info.important
this is a specific  because it says
go to important property which is inside info property  which is inside P
.info  is less specific 
because it will go to .info No function is  given whose property is this.
p.info
This is some what specific. As it says select .info property which is inside p
 
        
             
        
        
        
Explanation:
The below code has been written in C language
void rotateright(int list[], int n) 
{ 
   int x = list[n-1]
   int i; 
   for (i = n-1; i > 0; i--) 
      list[i] = list[i-1]; 
   list[0] = x; 
} 
void rotateleft(int list[], int n) 
{ 
   int x = list[0]
   int i; 
   for (i = 1; i < n-1 ; i++) 
      list[i] = list[i+1];
 
   list[n-1] = x; 
} 
int main() 
{ 
    int list[] = {x1, x2, x3, ... x(n-1),xn}
    int i; 
    int n = sizeof(list);
        
    rotateright(list, n); 
  
    rotateleft(list, n);
    
    return 0; 
}
 
        
             
        
        
        
Answer:
Explanation:
Overall an industry with a post merger Herfindahl-Hirschman index value of below 1500 is considered un-concentrated.In an extreme case,if the Herfindahl-Hirschman index in an industry exceeds 2900,it suggest that the industry is highly concentrated.
In that case if a merger is going to occur which is expected to raise the Herfindahl-Hirschman index by 255 points,then the FTC and DOJ might challenge a lawsuit against such merger,some other factor are also scrutinized.
This include economies of scale,economies of scopes and the ease in which there is an entry possible in the industry,The agencies like FTC and DOJ try to block horizontal merger if it expected to create unsuitable economic business environment for other firms in the industry
 
        
             
        
        
        
I believe that the multiple questions attached to this question is 
a) Hello
b) Link groups
c) Path groups
d) Heartbeats
The Answer is B and C
The physical interfaces that are supposed to be monitored are connected into a link group and a firewall failure can be triggered when one or all physical interfaces in the group failPath Monitoring helps monitor the full path to mission critical IP addresses. By default, any one of the IP addresses becoming unreachable will end up causing the firewall to change the HA to tentative state
        
             
        
        
        
Answer:
a variable of type "double" is more suitable for finding average because average could be any number with decimal places. we can't use a variable of type "integer" because it will omit the value after the decimal and will not produce satisfactory results.  
Explanation:
an example of C++ code is given to find the average of two numbers a and b
 #include <iostream>;
using namespace std;
int main() {
 double a = 2.334;
 double b = 34;
 double average =  (a + b) / 2;
 cout << average;
 return 0;
}