what do you mean by formatting the document?​

Answers

Answer 1

Answer: See explanation

Explanation:

Document formatting simply refers to how a document is laid out. It involves specifications about the look of a document.

During formatting of a document, some of the things done include alignment, margin, font, color, font size, indentation etc. All three eventually gives the document its look.


Related Questions

1 pts Question 5 Which of the following calculations would evaluate to 12? (36) + 2/2, 3* ((6+2)/2), 3* 6+2/2, (306+ 2)/2​

Answers

Answer:

Could you seperate them if they are different answers? I'm lost, sorry!

Explanation:

What is the purpose of the website directory provided by the website host?

A. to look up user account information
B. to provide help and training for new customers
C. to store all of a website’s content files
D. to archive website usage logs

Answers

Answer:

mabye A

Explana

.

.

.

1) "Information systems are revolutionizing the way businesses function in the 21st century," Do you agree or disagree with this statement? Provide evidence to support your position, (2 points)​

Answers

Answer:

true

Explanation:

everything is computerized. banks, shopping, financial business records, ect

while
norma
mean
cinta
to the user
a.) Define the term microcomputers.​

Answers

Explanation:

Microcomputers are computers designed around a microprocessor, smaller than a minicomputers or a mainframes.

Hope it will help :)❤

mr joel borrowed $126000 from the bank for 5 years and paid $17000 calculate the rate percent per annum that he had to pay the bank.​

Answers

yeah that’s a lot of money. Thanks for point

Here is the API for a robot library.
// moves the robot forward
function moveForward();

// turns the robot to the left
function rotateLeft();

// turns the robot to the right
function rotateRight();

// checks if a robot can move in any direction
// direction {string} - the direction to be checked
// return {Boolean} - true if the robot can move in that direction, otherwise returns false
function canMove(direction);
Which code segment will guarantee that the robot makes it to the gray square without hitting a wall or a barrier (black square)?



A.
B.
C.
D.

Answers

Answer:

hi

Explanation:

In the Business world people are often measured by their???
A- soft skills
B- hobbies
C- iq
D- technical skills

Answers

Answer:

D

Explanation:

You need skills to succeed!!

Answer is D !!!!!!!!

HELP MY TABLET KEEPS ON REBOOTING I TRIED TO FACTORY RESET BUT IT KEEPS ON REBOOTING

Answers

Answer: try to restart It

Explanation:Random reboots can happen because of problems with the firmware, but can also be due to some app you installed that is making the system unstable, or perhaps some bad bit of data that is in the system cache. A corrupt SD card can also cause problems.

Answer: it most likely a thrid party app that is causing this

Explanation: Random restart problems are sometimes caused by a bad third party app. To check if that's the case here, try running your tablet on safe mode and observe. If it works normally and won't restart on safe mode for some time, that can mean that an app is causing the trouble.Mar 6, 2021

Given the following class code: public class RecurseSample { public static void main(String[] args) { System.out.println(recurse(3)); } public static int recurse(int n) { int total = 0; if (n == 0) { return 0; } else { total = 3 + recurse(n - 1); } return total; } } What values will be printed when this code is executed?

Answers

Answer:

The output of the given code is "9".

Explanation:

In this question, a class "RecurseSample" inside the class a "recurse" method is declared that holds that holds an integer variable as the parameter, and inside the method a total variable is declared and uses a conditional statement to check the n variable value that is equal to 0 if it is true it will return 0. In the else block it call the method and add value in the total variable, and returns its value. In the main method, the print method is used that prints the above method values.

Can someone please answer these, I'm tired of wasting points on questions that no one answers.

Describe the respective benefits of participatory design and contextual design, with examples of situations in which each might be preferred.

Outline which activities involve mathematical reasoning skills..

Explain the most appropriate methods to use in designing a product for the user in the following scenario, including aspects of the user interface that might need special attention.
Situation: A researcher approaches a designer with a request for a computer interface that will allow the evaluation of the ways children process spatial relationships and the various changes as they learn and develop. The computer interface will not have to perform any task but to play visual spatial games, recording and analyzing all elements in how children between the ages of 2 and 5 manipulate visual objects on a screen.

Answers

What format do you need it in?

A cell is the intersection of a row and a column, identified by a letter and number.

True or false

Answers

Answer: True

hello how are you

Answer: True hope it helps

Using cell references enter a formula in B6 to calculate monthly payments for the loan described in this worksheet Omit the optional arguement use a negative value for pv

Answers

Answer:

= PMT(B4/B2, B2 * B3, B1)

Explanation:

The syntax to use is:

= PMT(Rate,NPER, PV)

To answer this question, the following assumptions will be made.

B1 = Present Value i.e. PV

B2 = Number of Payment Period i.e n

B3 = Duration (in years)

B4 = Rate

So, the formula to enter in B6 is:

= PMT(B4/B2, B2 * B3, B1)

The above formula will return the monthly payment in cell B6

Give 3 features and uses of
Desktop
laptop
palmtop computer

Answers

Answer:

A Palmtop or hand-held personal computer is small enough to hold in one hand and operate with the other. Also called a handtop, these ultra-small computers may have specialized keyboards or keypads for data entry applications or have small qwerty keyboards.

• Palmtops are also called PDAs, hand-held computers and pocket computers.

• Palmtop or hand-held personal computer, lightweight, small, battery-powered, general-purpose programmable computer. It typically has a miniaturized full-function, typewriter like keyboard for input and a small, full color, liquid-crystal display for output. In addition to an operating system that is compatible with that of a desktop computer, a palmtop will typically contain a word processor, a spreadsheet program, and a calendar and phone book. A variety of other programs can be loaded and executed, and data can usually be transferred to and from a desktop computer. Although some palmtops are like personal digital assistants in that they accept handwritten or touch screen input, they generally differ in that the palmtop has more memory, a keyboard, and a greater variety of available programs.

Explanation:

When you insert a copy of Excel data into a Word document the data is __________ in the Word document

Answers

Answer:

I don't know if I get a chance to get through

The programs that run on a computer are called:

Answers

Software.............

Can someone tell me how to hit on a link on Brainly to see the answer

Answers

no, please do not hit on links. they're viruses i'm pretty sure.
Make sure to report the answer just in case

Each menu title in an application does not need to have a unique access key.

Answers

Answer:

Explanation:

True

I need help please and thank you

Answers

Answer:

Explanation: For "BEST way to handle the situation," try Option 1, because it would possibly help them or make the Technical Support Representative do less work.

For "WORST way to handle the situation," Option 4 would be the best because you're basically just hanging up on the person.

x = 0
while x < 4:
print(x)
x += 1
Make it a for loop

Answers

Answer: Here you go :)

Explanation:

x = 0

for n in range(4):

  print(x)

9. A convex lens of focal length 8 cm forms a real image of the same size as th
object. What will the distance between the object and its image be:
1) 32cm
2) 8cm
3)16cm
4)24cm​

Answers

Answer: 32cm

Explanation:

Since the focal length of the convex lens is 8cm, the distance between the object and its image be 4f which will be:

= 4 × f

= 4 × focal length

= 4 × 8

= 32cm

The distance between the object and its image is 32cm.

Activity in September 2014, the Federal Bureau of Investigation (FBI) announced that is next generation Idenufication system was fully functional The FBI named it the integrated Automated Fingerprint Identification system (IAFIS), Conduct online research on this system and answer the following questions 1. Which elements can be stored in IAFIS? 2. What is the response time of this system? 1. How has this system benefited the FBI​

Answers

Answer:

(Answers may vary.)

In addition to fingerprints, IAFIS stores criminal histories, mug shots, and physical information like scars, tattoos, eye color, hair color, weight, and height. It also stores fingerprints of individuals who are or were employed by the US military and the federal government.

The system’s average response time for criminal fingerprint processing is about 27 minutes. Civil fingerprint processing takes over an hour.

Previously, the tenprint submission and identification was a manual, tedious process. It took the FBI weeks or months to process a single fingerprint submission. IAFIS has automated this process and added advanced identification capabilities. The submission and processing takes just few minutes. This has helped the FBI solve and prevent crime and tighten holds on criminals and terrorists.

Explanation:

Help!!!!!!
please
Who will give the answer I'll mark him/her as brainlist..​

Answers

17, 12.5, 6, and 10. HOPE THIS HELPS

who wants to trade ro^lox accounts

Answers

make me brainlestttt please and thank you and the answer is no

NEED ANSWERS ASAP 50 POINtTS!!!!
Katie wants to use VLOOKUP for a column in a table. Which value of the mode parameter should she use to look for an exact match of the searched data?
Katie should use the __ value of mode parameter for an exact match with the searched data.

Answers

Answer:

The exact match mode is the mode parameter that Katie should use to look for an exact match of the searched data

Further Explanation:

The VLOOKUP function in Excel helps us search for and retrieve information from a particular column in a table and lookups a value in the left-most column of the table. It has two modes of matching.

Exact matching – When you perform a range_lookup, an argument FALSE is defined to mean that there is an exact match of the return value.

To achieve this, select a cell in your Excel worksheet

Type =VLOOKUP in the type bar of the Excel sheet

Select the value to look up and then select the data range

Type the column number that you want to search and then type FALSE

Press enter

Answer:

The exact match mode is the mode parameter that Katie should use to look for an exact match of the searched data

Explanation:

The VLOOKUP function in Excel helps us search for and retrieve information from a particular column in a table and lookups a value in the left-most column of the table. It has two modes of matching.

Exact matching – When you perform a range_lookup, an argument FALSE is defined to mean that there is an exact match of the return value.

To achieve this, select a cell in your Excel worksheet

Type =VLOOKUP in the type bar of the Excel sheet

Select the value to look up and then select the data range

Type the column number that you want to search and then type FALSE

Press enter

A testing lab wishes to test two experimental brans of outdoor pain long each wiil last befor fading . The testing lab makes six gallon s of each paint to test. The resultare Shown to see how

Answers

Answer:

The answer is "[tex]\bold{Brand \ A \ (35, 350, 18.7) \ \ Brand \ B \ (35, 50, 7.07)}[/tex]"

Explanation:

Calculating the mean for brand A:

[tex]\to \bar{X_{A}}=\frac{10+60+50+30+40+20}{6} =\frac{210}{6}=35[/tex]

Calculating the Variance for brand A:

[tex]\sigma_{A}^{2}=\frac{\left ( 10-35 \right )^{2}+\left ( 60-35 \right )^{2}+\left ( 50-35 \right )^{2}+\left ( 30-35 \right )^{2}+\left ( 40-35 \right )^{2}+\left ( 20-35 \right )^{2}}{5} \\\\[/tex]

     [tex]=\frac{\left ( -25 \right )^{2}+\left ( 25 \right )^{2}+\left ( 15\right )^{2}+\left ( -5 \right )^{2}+\left ( 5 \right )^{2}+\left ( 15 \right )^{2}}{5} \\\\ =\frac{625+ 625+225+25+25+225}{5} \\\\ =\frac{1750}{50}\\\\=350[/tex]

Calculating the Standard deviation:

[tex]\sigma _{A}=\sqrt{\sigma _{A}^{2}}=18.7[/tex]

Calculating the Mean for brand B:

[tex]\bar{X_{B}}=\frac{35+45+30+35+40+25}{6}=\frac{210}{6}=35[/tex]

Calculating the Variance for brand B:

[tex]\sigma_{B} ^{2}=\frac{\left ( 35-35 \right )^{2}+\left ( 45-35 \right )^{2}+\left ( 30-35 \right )^{2}+\left ( 35-35 \right )^{2}+\left ( 40-35 \right )^{2}+\left ( 25-35 \right )^{2}}{5}[/tex]

    [tex]=\frac{\left ( 0 \right )^{2}+\left ( 10 \right )^{2}+\left ( -5 \right )^{2}+\left (0 \right )^{2}+\left ( 5 \right )^{2}+\left ( -10 \right )^{2}}{5}\\\\=\frac{0+100+25+0+25+100}{5}\\\\=\frac{100+25+25+100}{5}\\\\=\frac{250}{5}\\\\=50[/tex]

 Calculating the Standard deviation:  

[tex]\sigma _{B}=\sqrt{\sigma _{B}^{2}}=7.07[/tex]

Having sound enhances your App, do you agree with this? Explain.

Answers

Answer:

Yes, it does.

Explanation:

I mean, having some sort of audio feedback is obviously useful for a user.

(If it's a media-content-viewer, of course you need sound)

We should discuss some cases here:

1. In case it's a game, sound enhances the experience of the virtual world, by creating what is called an "ambience", or the acoustical surroundings of the environment since you can perceive stuff without the need to look at it.

2. Other apps: It makes the app seem more friendly and comfortable to use, especially if partnered with an animation

Sharon wants to include her name on each slide in her science presentation. Where in the Header and Footer dialog box would she type her name?

Answers

Answer:

She will type her name in the Footer

Explanation:

To answer this question, I will assume Sharon is using the Microsoft Office PowerPoint package to handle her presentation.

In PowerPoint, the footer helps users to add names or any other details on every slide.

To do this:

Go to INSERT in the menu barThen, go to Text menuSelect Header & Footer to open the boxCheck the Footer optionEnter the text in the provided text box(This is where Sharon will enter her name)Lastly, click Apply to All to effect the changes

An example of software is a

Answers

Answer: false

Explanation:

how can you send and share a message information through a phone​

Answers

Answer:

Through text message

Explanation:

Go to messages and select the text you want to share and save it to your clipboard then go to the person you want to send it to then hit the clipboard button and your text will be there.

Through text messages

Go to messages and select the text you want to share and save it to your clipboard then go to the person you want to send it to then hit the clipboard button and your text will be there!

Brainliest for correct answer :)
a. X = A NOR B
b. X= NOT (A OR B)
c. X = A OR B

Answers

the answer is A, the logic circuit is a NOR
Other Questions
Someone plz give me a right answer now In "bringing Jamie home", how does the historical context relate to Jamie's death HELP I WILL GIVE BRAINLEIST OR WHATEVER 50 POINTS 3x2 equals..WHAT DOES IT EQUAL Can scientists use the same principles they use to study Earths history to study also the history of other planets? Can you tell me if this equation I made for a project is correct?x-13=7x-13+13=7+13x=20Can you help me fix it if it is not correct?THANK YOU 350% of 69 is what number Tim plays a computer game each game is a win or a loss he wins three fifths of his first 40 games he then wins his next 12 games for all 52 games work out the ratio wins:losses A weight - lifter lifts a bell weighing 2 000 N and holds it in the air for 5 seconds. Has he done any work? Explain your answer. As curator at the museum, you are hosting a new collection that showcases different elements and principles of art. A new piece of artarrives that causes you to focus on one specific object in the painting. The object catches your eye immediately and almost makes youforget to look at the rest of the painting. You are responsible for sorting the art and placing each piece into the correct area of the exhibit.Based on your evaluation of this painting, where do you conclude it should BEST be placed?O AmovementOBdominanceO c.unityODbalance pangungusap ng basang sisiw HELP WITH QUESTION 1 PLEASE! Ill give you brilliance HELP ME PLZ !!!!!!!!!!! The measure of an angle is 149.5. What is the measure of its supplementary angle? Novak Corp. Has accounts receivable of $90,300 at March 31, 2022. Credit terms are 2/10, n/30. At March 31, 2022, there is a $2,284 credit balance in Allowance for Doubtful Accounts prior to adjustment. The company uses the percentage-of-receivables basis for estimating uncollectible accounts. The company's estimates of uncollectibles are as shown below. Simplify: 17b + 82c + 90 + e - 18 - 10c - b A right prism has height 8 and triangular bases with sides of length 7, 8, and 9. What is the: Total surface area of the prism? Which would be a good estimate for the tax on $97.95 if the tax is 9.5%?$12$10.50$10$8.50 PLEASE HELP!! ASAPThe question is on the picture Right answers will get brainliest!