Answer:
Hina and Riko; the dialog box is inside the Name Manager group, and it allows the user to manually type in the additional cells or select the cells after clicking the collapse button. 
 
        
             
        
        
        
Answer:
// program in C++.
#include <bits/stdc++.h>
using namespace std;
// main function
int main() 
{
// variable
int inp_month;
cout<<"Enter month:";
// read month
cin>>inp_month;
// if month is february 
if(inp_month==2)
cout<<"Number of days in month:28"<<endl;
// if month is 4 or 6 or 9 or 11
else if(inp_month==4||inp_month==6||inp_month==9||inp_month==11)
cout<<"Number of days in month:30"<<endl;
else
// for others month
cout<<"Number of days in month:31"<<endl;
return 0;
}
Explanation:
Read month from user and assign it to variable "inp_month".If month is 2 then  there is 28 days in the month.If input month is 4 or 6 or 9 or 11 then there is 30 days in the month.For other month there will be 31 days in month.We assume there is no leap year.
Output:
Enter month:4                                                                                                              
Number of days in month:30
 
        
             
        
        
        
Answer:
a. The cell tower forwards the call to the wireless provider's Mobile Telephone Switching Office
Explanation:
When a cell phone user begins to make a call, it is picked up by the cell tower located in the cell in which the cell phone is located and that belongs to the user's wireless provider. The next step in this process is that the cell tower forwards the call to the wireless provider's Mobile Telephone Switching Office. 
 
        
             
        
        
        
Answer:
<em>Continuous Process Production</em>
Explanation:
In a study on the relationship between  industrial structure and performance, conducted by <em>Joan Woodward</em> from 1950 to 1959,  
she classified technology into <em>three groups</em>:  
- <em>Small batch and Unit technology  </em>
 - <em>Large batch and Mass production
</em>
 - <em>Continuous process production
</em>
 
She came to a  conclusion that the <em>continuous process production was the most complex</em> and  unit technology as the least.