Answer:
Type of myDisk.brand is BrandInfo. 
Explanation:
 
        
             
        
        
        
Answer:
Table function
Explanation:
The table function can also be used to compare between items. The items can be arranged in columns and the features tonbe compared can be placed in columns. With this one can make comparison between the items.
 
        
             
        
        
        
Answer:
#include <iostream>
#include <cstring>
using namespace std;
void replacePeriod(char* phrase) {
int i = 0;
while(*(phrase + i) != '\0')
{
if(*(phrase + i) == '.')
*(phrase + i) = '!';
i++;
}
}
int main() {
const int STRING_SIZE = 50;
char sentence[STRING_SIZE];
strcpy(sentence, "Hello. I'm Miley. Nice to meet you.");
replacePeriod(sentence);
cout << "Updated sentence: " << endl;
cout << sentence << endl;
return 0;
}
Explanation:
- Create a function called replacePeriod that takes a pointer of type char as a parameter.
 - Loop through the end of phrase, check if phrase has a period and then replace it with a sign of exclamation.
 - Inside the main function, define the sentence and pass it as an argument to the replacePeriod function.
 - Finally display the updated sentence.
 
 
        
             
        
        
        
Answer:
Option A is the correct option.
Explanation:
The following option is true because when the user or any organization is installing the updates of an operating system and then, some technicians that its failure and they observe that 100% usage of the computer's CPU is done and the user takes the advice of the technicians regarding to the following queries then, they tell them the following problem is that there is an insufficient numbers of the physical processor cores.
 
        
             
        
        
        
The answer is an Entrance Facility. 
The entrance room or entrance facility is the location for the access provider equipment and demarcation points. This is the area of a building where carrier and private network enter the building. Whenever we talk about a WAN connection, we are talking about a geographically distributed private network that interconnects multiple LANs. Therefore, it is safe to say that you should take the technician to the entrance facility since it is the point at which the outdoor plant cable (WAN) connects with the building’s backbone cable (LAN).