Microsoft Office Help allows the user to click on a ________ that displays another document, location, or window when they are clicked

Fill in the blank(s) with correct word


hyperlink

Computer Science & Information Technology

You might also like to view...

To cause the content of certain XML tags to be omitted from the transformed HTML, remove the _______ tag from the templates for those tags.

Fill in the blank(s) with the appropriate word(s).

Computer Science & Information Technology

What will happen if the data type of pointsPossible is changed from double to int?

// This program determines the percentage grade on
// an exam, given the number of questions missed,
// how many points each question was worth,
// and the total points possible.

#include 
using namespace std;

int main()
{
int		pointsPerQuestion;
int		numberMissed;
double	percentageGrade;
double	pointsPossible;

cout << "Enter the total points possible on the exam => ";
cin  >> pointsPossible;
cout << endl;
cout << "Enter the number of points per question => ";
cin  >> pointsPerQuestion;
cout << endl 
cout <<"Enter the number of questions missed => ";
cin >> numberMissed;

percentageGrade = pointsPossible - numberMissed * pointsPerQuestion  /   					pointsPossible  *  100;

cout << endl << "The percentage grade is ";
cout << percentageGrade << "%";

return 0;
}

Computer Science & Information Technology

The ________ tool is the tool most often used to create forms.

Fill in the blank(s) with the appropriate word(s).

Computer Science & Information Technology

Which aggregate function is used to compute a total of a value expression?

a. AVG(value expression) b. SUM(value expression) c. MAX(value expression) d. MIN(value expression)

Computer Science & Information Technology