Answer:
It will be average (B2:C2) 
as it will select all the data between B2 and C2
 
        
                    
             
        
        
        
Answer:
This is what the code should do:
“Lift off in T minus
5
4
3
2
1
Blast-off!”
When I run it, it just keeps printing ''Sum = 5'' forever.
Explanation:
Code:
int main(void) {
int sum = 5;  
int i;      
printf("Lift off in T minus\n");
for (i = 0; i < 5; i=i+i) {
    sum = sum - i;  
    printf("sum = %d\n",sum);  
}  
printf("Blast-off",sum);  
return 0;
 
        
             
        
        
        
Answer:
Call showValue (12)
Explanation:
The function is a block of the statement which performs the special task.
if you define the function, then you have to call that function.
Then, program control moves to the function and start to execute otherwise not execute the function.
the syntax for calling the function:
name(argument_1, argument_2,....);
we can put any number of arguments in the calling.
check the options one by one for finding the answer:
Call showValue( Integer): this is valid calling but it passes the variable, not the 12. this is not correct.
 Call showValue( Integer 12): This is not valid calling, because it passes the data type as well which is incorrect.
Call showValue( Real): this is valid calling but it passes the variable, not the 12. this is not correct.
Call showValue (12): this valid calling and also pass the value 12.
Therefore, the correct answer is option b.
  
        
             
        
        
        
Servers that exist within a data center that is publicly accessible on the internet are referred to as on-premises servers: b. false.
<h3>What is a server?</h3>
A server can be defined as a dedicated computer system that is designed and developed to provide specific services to other computer devices or programs, which are commonly referred to as the clients.
<h3>What is an 
on-premises server?</h3>
An on-premises server can be defined as a type of server that are privately owned by a company or individuals, which must be managed and maintained individually. 
In conclusion, servers that exist within a data center that is not publicly accessible on the internet are generally referred to as on-premises servers.
Read more on servers here: brainly.com/question/27960093
#SPJ1