Answer:
a. Locate
Explanation:
Question options (obtained on the net): 
a. Locate
b. Sort 
c. Filter
d. Replace
Explanation:
The largest value of the weights of the dog breed in row 43 is the maximum weight of the dog breed in the row
The 'MAX' formula or the 'Autosum' tool can be used to give the largest value in a row, or column
To locate the maximum value in MS Excel, the ADDRESS and MATCH and MAX functions are combined and entered into the blank cell on the right, specifying the same range for the MAX and MATCH functions, and a '0' for the MATCH function as well as a '1' for the ADDRESS function as follows;
=ADDRESS(MATCH(MAX(A1:E1), A1:E1, 0), 1) 
Therefore, to navigate to the maximum weight, Emily should use a <em>locate</em>(ing) tool navigate to the information on the spread sheet 
 
        
             
        
        
        
In case the first drive fails, the data will all be backed up onto the second drive, a copy will still be intact.
        
             
        
        
        
Answer:
Please find the complete solution in the attached file.
Explanation:
 
        
             
        
        
        
Answer:
#include <iostream>
using namespace std;
int main()
{
    string str;
    cout<<"Enter the string: ";
    cin>>str;
    for(int i=0;str[i]!='\0';i++){
        if(str[i]=='e'){
            str[i]='x';
        }
    }
    cout<<"the string is: "<<str<<endl;
   return 0;
}
Explanation:
First, include the library iostream for using the input/output instructions.
Create the main function and declare the variables.
Then, use the cout instruction and print the message on the screen.
cin store the string enter by the user into a variable.
After that, take a for loop and if-else statement for checking the condition if the string contains the 'e', then change that alphabet to 'x'.
This process continues until the string not empty.
Finally, print the updated string.
 
        
             
        
        
        
Hello  <span>Tacobell5401</span>
 Answer: A client-server application that requires nothing more than a browser is called  thin-client application
Hope this helps
-Chris