In Microsoft Word you can access the _______ command from the "Mini toolbar". A. insert citation B. save as C. underline D. word count

Answers

Answer 1
Answer: save as is the command that you would use to save anything when using microsoft
Answer 2
Answer: You can access the Save As command on the Mini Toolbar.

Related Questions

You want to read about Web journals. Which keyword(s) would best help you find this information?bookmarkweb NOT journalBlogsWeb OR journal
To review the Army's current information on deploying 802.11 and 802.16, one should review the Army ___________ on Wireless Security Standards.a. STIG b. BBP c. Regulation d. Manual
What coding scheme contains a set of 128 numeric codes that are used to represent characters in the computer's memory?
a school logo requires 5 different colours. how many BITs will be required for each pixel? (please help)
Patient care impact icons indicate the immediacy of risk to the quality of care and patient safety. Which of the following statements about these icons is correct? A. An icon indicates situations that could indirectly impact patients by creating an immediate risk to safety or quality of care, treatment, and services B. An icon identifies issues that, when found out of compliance, indicate a situation exists that could pose a significant threat to patient safety or quality of care C. An icon is used to record patient risk situations at an Accreditation Participation Requirement (APR) if identified by a surveyor, whether on site or after returning to TJC

Which one of the following is the most accurate definition of technology? A Electronic tools that improve functionality B Electronic tools that provide entertainment or practical value C Any type of tool that serves a practical function D Any type of tool that enhances communication

Answers

That would be letter C.

In word you can create electronic image files through the ____ tab in backstage view

Answers

The answer is: XPS & PDF tab.


Given an "out" string length 4, such as "<<>>", and a word, return a new string where the word is in the middle of the out string, e.g. "<>". Note: use str.substring(i, j) to extract the String starting at index i and going up to but not including index j.makeOutWord("<<>>", "Yay") → "<>"
makeOutWord("<<>>", "WooHoo") → "<>"
makeOutWord("[[]]", "word") → "[[word]]"

Answers

Answer:

The following are the answer to this question.

Explanation:

In the given code, a "makeOutWord and word" is already used to hold some value. In this code, we define a string method "makeOutWord" that accepts two string variables "out and the word" in its parameter.

Inside the method, a return keyword is used that uses the string variable "out and the word" with the "substring" method, this method is used to returns a new string from an old string value, and it also uses the "word" string variable for the return value.  

please find the attached file for code:

Final answer:

The function makeOutWord combines the 'out' string and the given word by using the substring method to separate the 'out' string into two parts, then inserting the given word in between. An example solution in Java is provided.

Explanation:

The goal of this problem is to create a new string, incorporating the original 'out' string and the given word. This can be achieved by utilizing the substring method in Java which allows us to extract part of a string. Given an 'out' string with length 4, such as '<<>>', and a word, the task is to return a new string where the word is in the middle of the 'out' string.

An example solution in Java would be as follows:

public String makeOutWord(String out, String word) { return out.substring(0, 2) + word + out.substring(2, 4);}

With this function, we take the first two characters from the 'out' string, then append the word, then add the last two characters of the 'out' string. So, makeOutWord("<<>>", "Yay") would yield "<>".

Learn more about String Manipulation here:

brainly.com/question/35897567

#SPJ3

A student is recording a song on her computer. When the recording is finished, she saves a copy on her computer. The student notices that the saved copy is of lower sound quality than the original recording. Which of the following could be a possible explanation for the difference in sound quality?A. The song was saved using fewer bits per second than the original song.
B. The song was saved using more bits per second than the original song.
C. The song was saved using a lossless compression technique.
D. Some information is lost every time a file is saved from one location on a computer to another location.

Answers

Answer:

A. The song was saved using fewer bits per second than the original song.

Explanation:

A song can be recorded on the computer or any device ranging from bit rates 96 kbps to 320 kbps.  

The lesser the bitrates the lesser the quality of the audio and when we increase the bit rates, the quality of the audio recorded gradually increases.

Bitrates of 128 kbps give us a radio like quality whereas when we use bitrates of 320 kbps we get very good or CD-like quality.

According to the scenario, the most appropriate answer is option A.

When the atmosphere has too much carbon dioxide in it, the oceans absorb some of it to achieve a new balance. This is an example of _____.A : the hydrosphere
B : a geochemical cycle
C : sphere interaction
D : the hydrologic cycle

Answers

The answer is B. 
A geochemical cycle. 

I just took the test on this and the answer is C: Sphere Interaction


How do you add binary numbers?

Answers

Set up the problem vertically, and add the digits in the ones place

 Add the digits in the twos place

 Add the digits in the fours place

Keep adding the digits in each place value of the number until you reach your final answer


hope this helps you.




Binary addition is much like your normal everyday addition (decimal addition), except that it carries on a value of 2 instead of a value of 10.

For example: in decimal addition, if you add 8 + 2 you get ten, which you write as 10; in the sum this gives a digit 0 and a carry of 1. Something similar happens in binary addition when you add 1 and 1; the result is two (as always), but since two is written as 10 in binary, we get, after summing 1 + 1 in binary, a digit 0 and a carry of 1.

Therefore in binary:
0 + 0 = 0
0 + 1 = 1
1 + 0 = 1
1 + 1 = 10 (which is 0 carry 1)