A _____ is a note that can be added to a document or presentation without making any changes to the text itself.

Answers

Answer 1
Answer: A comment is a note that can be added to a document or presentation without making any changes to the text itself

Related Questions

Information is stored in what type of object in a database?
Kair needs to change the brightness and contrast on a image she has inserted into a word document
Peter automates his email inbox such that his incoming mails are filtered with all junk mails sent directly to the spam folder. This saves him time as he does not have to sort through the mails to find his work-related mails. He also creates a group mailing list for his team that makes it easier for him to send mails to the entire team instead of including their email addresses individually. In this scenario, Peter is using information systems tools to ________.
Only one cell in a table can be selected at once. T F
Theodor is researching computer programming. He thinks that this career has a great employment outlook, so he’d like to learn if it’s a career in which he would excel. What two skills are important for him to have to become a successful computer programmer?

ICS facilitates the ability to communicate by using:a. ICS-specific codes.
b. Acronymds.
c. Common terminology.
d. N,coIMS lexicon.

Answers

ICS facilitates the ability to communicate by using Common Terminology (C). The Incident Command System (ICS) allows agencies to work together using common terminology so they can communicate well during incidents such as high-way incident or car crashes and life and death situations.

You can probably use the 1040EZ form, as long as what is true? A. You own your own business. B. You are paying estimated tax. C. You have at least two dependents. D. You have no dependents.

Answers

D. You have no dependents.

the answer is D. You have no dependents.

hope this helps


What is the MOST important precaution to take when using social networking sites like Facebook? Use discretion Monitor friend requests closely Use privacy settings Have a strong password

Answers

All of the items below are important when you are using a social network. But the MOST important is the use of discretion. When in social media such as facebook, one mus avoid causing offense to other users. It may result in conflict or worst case someone might file a charge against you.

Modern ancestor of the typewriter

Answers

I would think Microsoft Word would be the answer. It does everything a typewriter can.

word processing program

A web page without a bibliography, or sources, is an indicator of an unreliable site. Please select the best answer from the choices provideda. True
b. False

Answers

Answer:

True indeed

Explanation:

Given the int variables x, y, and z, write a fragment of code that assigns the smallest of x, y, and z to another int variable min. Assume that all the variables have already been declared and that x, y, and z have been assigned values.

Answers

Answer:

// here is code in C++.

#include <bits/stdc++.h>

using namespace std;

// main function

int main()

{

   // variables

   int x=5,y=2,z=9;

   int min;

   // find the smallest value and assign to min

   // if x is smallest

   if(x < y && x < z)

   // assign x to min

    min=x;

     // if y is smallest

else if(y < z)

 // assign y to min

    min=y;

// if z is smallest

else

 // assign z to min

    min=z;

// print the smallest

cout<<"smallest value is:"<<min<<endl;

return 0;

}

Explanation:

Declare and initialize variables x=5,y=2 and z=9.Then check if x is less than y and x is less than z, assign value of x to variable "min" .Else if value of y is less than value of z then smallest value is y, assign value of y to "min".Else z will be the smallest value, assign its value to "min".

Output:

smallest value is:2