Images or graphics have two key qualities which can impact the nature of the overall presentation or document they form part of:
The size of an image or graphics can be in terms of area (measurable in inches or centimeters) or pixels.
In either case, you don't want to have an image so large it takes up all the space on the page with little or no space for text and other items. This can hurt the document.
When documents have images with very large pixels, the overall size (in bytes) of the image becomes very large and sometimes difficult to open, upload, and transfer (subject to the speed or computing power of the computer being used to process it).
One feature of Microsoft Word which helps to optimize images is the Image Compression Tool.
For more about Microsoft Word and images, please see the following link:
Answer:
When images or graphics excessively occupy most of the space on the page.
Explanation:
For example, if you observed the attached image you'll see a bad example in which the image excessively occupies most of the space on the page making the written text difficult to read.
Next, a good example of proper editing is found in the next image, which shows the written text properly aligned with the text.
Answer:
cookie?
Explanation:
where everything is hard saved
b. Spell Check
c. Changes Log
d. Track Changes
memo
null
BLOb
The answer is Autonumber.
AutoNumber data type is commonly used for primary key fields and it automatically generates a unique number for each record. This data type stores an integer that Access increments automatically as you continue adding new records. Primary keys are great but Auto numbers are also important for insuring that records are uniquely identified.
Answer:
Explanation:To create a hyperlink in HTML, you can use the <a> (anchor) element. Here's the correct HTML syntax for creating a hyperlink:
<a href="URL">Link Text</a>
Where:
href is the attribute where you specify the URL or web address to which the hyperlink points.
Link Text is the text that will be displayed on the web page and act as the clickable link.
Here's an example with a real URL:
<a href="https://www.example.com">Visit Example Website</a>
In this example, "Visit Example Website" will appear as a clickable link on the web page, and when users click on it, they will be directed to "https://www.example.com."
You can also create links to local files or other resources using relative or absolute file paths in the href attribute, depending on your specific needs.
The correct HTML for creating a hyperlink is the <a> tag with the href and text attributes. An example is shown using the <a> tag.
The correct HTML for creating a hyperlink is the <a> tag. In its simplest form, an <a> (anchor) tag requires two attributes: href and text. The href attribute specifies the URL to which the link points, and the text is the clickable text that appears on the page.
Here's an example:
Learn more about HTML Hyperlinks here:
#SPJ11