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";
    }
}
 
        
             
        
        
        
The answer is a. Title Bar
The Title Bar displays the name of the program and the name of the current open file, whether it is just displayed or being edited. It is located at the top of the program window.
        
             
        
        
        
Answer:
I hope this answer is correct 
Explanation:
Internal registers include the instruction register (IR), memory buffer register (MBR), memory data register (MDR), and memory address register (MAR). The instruction register fetches instructions from the program counter (PC) and holds each instruction as it is executed by the processor.