Answer:
Databases store data in tables that interact; spreadsheets store data in cells that interact.
Explanation:
 
        
                    
             
        
        
        
Answer:
boolean
Explanation:
while loops test to see if something is true or false to know when to continue the loop
 
        
             
        
        
        
The correct answer is B.UPS
A UPS or Uninterruptable Power supply makes
sure that you have backup in case there is a power outage in your area. It
provides ample time for you to save all files before shut down.
 
        
                    
             
        
        
        
<h2>
My Answer:</h2>
FTP: The definition on Wikipedia is; "The File Transfer Protocol (FTP) is a standard network protocol used for the transfer of computer files between a client and server on a computer network."
So, if the question is asking for technology that provides a method for two computers hooked to the internet transfer files back and forth between each other, so if we can sum it up the answer which makes the most sense is <em>FTP</em>.
~TheExpertNerd 
 
        
        
        
Answer:
Check the explanation
Explanation:
#include <iostream>
#include <iomanip>
using namespace std;
int getIQ(); // return the score
void printEvaluation(int);
int main()
{
    int IQ = 0;
    IQ = getIQ();
    
    printEvaluation(IQ);
    return 0;
}
int getIQ()
{
    int score = 0;
    cout << "Please enter your IQ Score to receive your IQ Rating:\n";
    cin >> score;
    
    return score;
}
void printEvaluation(int aScore)
{
    cout << "IQ Score: " << aScore << " IQ Rating: ";
    
    if (aScore <= 100)
    {
        cout << "Below Average\n";
    }
    else if (aScore <= 119)
    {
        cout <<"Average\n";
    }
    else if (aScore <= 160)
    {
        cout << "Superior\n";
    }
    else if (aScore >= 160 )
    {
        cout << "Genius\n";
    }
}