can you edit header or footer? if yes, how​

Answers

Answer 1

Answer:

It depends on the type of document you are trying to edit, but normally you can edit the header/footer.

Explanation:

For docs, you just double click near the top/bottom of the page.


Related Questions

Susan is troubleshooting a problem with a computer's network cabling. At which layer of the Open Systems Interconnection (OSI) Reference Model is she working

Answers

Answer:

Physical layer

Explanation:

The physical layer is responsible for the physical cable or wireless connection.

Susan is troubleshooting a problem with a computer's network cabling. She is working at physical  layer of the Open Systems Interconnection (OSI) Reference Model.

what is Open Systems Interconnection?

The Open Systems Interconnection Model (OSI Model) is a model of the  product, Interconnection effort at the International Organization for Standardization.

The OSI model is a sub-dividing a communications system which is divided into smaller parts called layers, if Similar communication functions are grouped called as  logical layers.

The OSI system has seven layers which provide services to its upper layer where as receiving services from the below layer.

The layer that provides error-free communications across a network are  needed by applications, while the next lower layer  send and receive packets that make up the contents of that path, The physical layer involved for providing physical cable or wireless connection.

Learn more about Open Systems Interconnection, on:

https://brainly.com/question/11037861

#SPJ2

eHermes decides to store the URL of the file server location for the images in the ________.

Answers

One way for EHermes to store the URL of the file server location for the images is in the Metadata.

What is Metadata?

Metadata  can be regarded as a data gives out provides information about other data, but keep save the content such as  message or the image itself.

One of the common types of metadata, is Descriptive metadata .

Learn more about metadata at;

https://brainly.com/question/25605883

PLEASE HELP!!! NO LINKS!! I'LL GIVE BRAINLIEST!!
Administrative professionals often use queries to answer questions using the data in their database. What is a query? What are two possible queries you could use in a database?

Answers

Answer:

Queries.

Explanation:

Queries can perform many different functions in a database. Their most common function is to retrieve specific data from the tables. The data you want to see is usually spread across several tables, and queries allow you to view it in a single datasheet.

A database query is a way of requesting information from the database.

Regardless of the database or query language used, there are two primary types of queries that can be used for different goals:

-Select queries return information from one or more tables. While this is the most basic type of query, select queries can be used to specify how many results are returned, the order in which they appear, the source(s) used, and the parameters for a record to be included.

-Action queries perform a command on the data that has been retrieved, such as delete, alter, create, or update. This query allows a user to modify a large number of records in bulk instead of one at a time.

Make sure you create your own answer with this information or else it will be found as plagiarized!

which of the following statements holds true about the number group on the home tab. a) The number group contains options for changing the appearance of the text.
b)The number group contains option for changing the Orientation and indentation of text.
c)The number group provides various format for specifying how do you want that values in a Cell to be displayed.
d)The number group provides options for applying border around the selected range of data.​

Answers

Answer:

I think the answer is B. I hope that's right but I'm not 100% sure.

Explanation:

What technology would a bank's website use a scramble information as it is transmitted over the Internet

Answers

Answer:

Encryption technology helps provide secure transmission of information along the Internet by encoding the transmitted data

One commonly used technology is the Secure Sockets Layer (SSL) or its successor, Transport Layer Security (TLS).

Given that,

To find a bank's website one can use a scramble of information as it is transmitted over the Internet.

Now, SSL/TLS works by encrypting the data transmitted between a user's web browser and the bank's website.

This encryption prevents unauthorized access and ensures that the information remains confidential.

It uses cryptographic algorithms to scramble the data, making it extremely difficult for any potential attackers to decipher.

Hence, In addition to SSL/TLS, banks often implement other security measures such as firewalls, intrusion detection systems, and regular security audits to further protect sensitive information.

Read more about banks here:

brainly.com/question/25711082

#SPJ6

How to remove a course from your canvas calander feed.

Answers

Answer:

Access Canvas, then click the Calendar link from the navigation menu on the left.Click the Agenda tab.Make sure that all the entries you'd like to remove are displayed. ...Click the entry you'd like to remove then click Delete.Click Delete to confirm

Explanation:

Read Carefully and Take it Step by Step

That's it

Write a function called sum_arrays that takes two lists of the same length and returns a list where each element is the sum of the elements at that index in the original list. The function should return the empty list if the parameters are not the same size.

Answers

The function that calls sum_arrays and takes two lists of the same length and returns a list where each element is the sum of the elements at that index in the original list is as follows:

def  sum_arrays(list1, list2):

    if len(list1)==len(list2):

         return [sum(i) for i in zip(list1, list2)]

    else:

         return []

print(sum_arrays( [1, 3, 4, 6, 0], [4, 5, 6, 2, 10]))

Code Explanation:

The code is written in python.

A function named sum_arrays is declared with its arguments as list1 and list2. We use the if statement to check if the two list are equal in length. If they are equal in length, we add the two list Else we will return an empty listFinally, we call the function with its arguments.  

learn more on function here:https://brainly.com/question/25589100?referrer=searchResults

How many Face book users play games on the site each month?
A 37,500
B 375,000
C 375,000,000
D 37,500,000,000

Answers

C.

C: 375,000,000 people play games on the site each month.

Explain why regular system cleanup is vital to ensuring the operating system runs efficiently. ?

Answers

Answer:

System cleanup removes any junk that could make the system run badly.

Select the incorrect sentence from the options given below. *

A file can contain lots of directories.
Every computer has a built in calendar and Clock. It keeps on working even if the computer is shut down.
Windows Explorer works as a manager for the Windows.

Answers

Answer:

windows explorer works as a manager for the windows.

hope it's help

A(n) _____________ is a program used to create and implement a database. operating system database management system information system database system

Answers

The program used to create and implement a database is called an operating system.

What is an operating system?

An operating system (OS) is a system that helps to manage and allocate computer resources. These computer resources are:

Central processing unit (CPU), Computer memory, File storage, Input/output devices,Network connections.

The most used operating system are;

Apple mac OS, Microsoft Windows, Go-ogle Android OS, Lin-ux Operating System, Apple iOS

Learn more about operating system:

https://brainly.com/question/24032221

What is the importance of big O notation in programming?.

Answers

Its a mathematical notation that describes the limiting behavior of a function when the argument trends towards a particular value or infinity.

Answer:

Big O notation is a way to describe the efficiency of an algorithm in terms of the amount of time it takes to execute

Explanation:

For instance, let's say you have to calculate the amount of time an algorithm takes. There are a couple possible solutions that may come to mind:

- Start a timer when the algorithm starts running, and stopping it once it finishes. While this might seem like a good approach to the problem, it has a few flaws. For once, the time it takes is affected by a couple of different factors, such as: any other processes that the computer is running that may slow it down, or the computer's internal clock and tick speed.

- Another much better solution would be to count the number of steps executed. This is what Big O notation does. Regardless of outside factors, the number of steps an algorithm has stays fixed.

what is pure substance ​

Answers

Answer:

i don't know

Explanation:

I don't understand

In which type of organizational structure is power distributed, and particularly suited for an environment that is dynamic and unstable? Matrix Hierarchical Networked Hybrid Flat

Answers

The type of organizational structure where power is distributed and suited for a dynamic and unstable environment is: network organization structure.

What is the Network Organizational Structure?

The network organization structure can be defined as a virtual network structure arrangement that can either be temporal or permanent, which involves independent associates that form an alliance together to share resources.

Therefore, the type of organizational structure where power is distributed and suited for a dynamic and unstable environment is: network organization structure.

Learn more about network organization structure on:

https://brainly.com/question/353678

What is the bluedot next to pinned discussion canvas.

Answers

Answer:

In discussion replies, a blue dot [1] indicates the reply is new and unread. A white dot [2] indicates a reply is read. When you navigate away from the Discussion or refresh the page, the blue dots will change to white dots indicating the replies are read.

Explanation:

How do you calculate the square root on a calculator?.

Answers

There are many ways - it depends what buttons you have on your calculator.

If you have button “sqrt” - just use it :)
If you have buttons exp and ln tyope the number then ln multiply by 0.5 and then press exp
If you have just basic multiplication - use bisection to get to the results.
For example, you want to calculate sqrt of 10 - try middle point between 0 and 10 - it’s 5, 5*5 = 25 - oops too much, so let’s try middle point between 0 and 5, i.e.
2.5, 2.5*2.5=6.25, not enough, so now try middle between 2.5 and 5, i.e. 3.75:
3.75*3.75 = 14 - too much, so let’s take middle of 2.5 and 3.75, i.e. 3.125
3.125*3.125 = 9.76 - quite close but not enough
and so long until you reach a precision you wish to have, for example:
3.162277660168379 :)
alternatively you can go to the nearest shop and buy a decent calculator or use a computer you used to write this post :)

During the game, the quotes helped by enabling you to use Multiple Choice over-the-top processing. top-down processing. bottom-up processing. in-through-the-out-door processing.

Answers

Answer:

top-down processing.

Explanation:

(in c++):
Output "Valid" if input's length is less than or equal to 7. Otherwise, output "Invalid".

Ex: If input is test123, output:

Valid

Recall string's length() returns the length of the string. Ex: myString.length()

Answers

The program is an illustration of string manipulations

What are string manipulations?

String manipulations include calculating the lengths of strings and also performing several operations on the string

The actual program

The complete program in C++ is as follows:

#include <iostream>

using namespace std;

int main(){

   string passwordStr;

   cin>>passwordStr;

   if(passwordStr.length() <= 7){

       cout<<"Valid";

   }

   else{

       cout<<"Invalid";

   }

  return 0;

}

Read more string manipulation at:

https://brainly.com/question/14284563

As a highly flexible structure, __________ can be quickly configured to adapt as required due to changes.

Answers

As a highly flexible structure, a matrix organization can be quickly configured to adapt as required due to changes.

What is a matrix organizational structure?

A matrix organizational structure can be defined as a type of work structure where reporting relationships between employees and the top executive (employers) are set up as a matrix rather than the conventional hierarchy approach, which makes it highly flexible and adaptable to subsequent changes.

The types of matrix organizational structure.

In business management, there are three types of matrix organizational structure and these include:

Weak matrix structure.Balanced matrix structure.Strong matrix structure.

Read more on matrix organization here: https://brainly.com/question/7437866

What is a output devices?

Answers

any piece of computer hardware equipment which converts information into a human-perceptible form or, historically, into a physical machine-readable form for use with other non-computerized equipment. It can be text, graphics, tactile, audio, or video.

Description
An output device is any piece of computer hardware equipment which converts information into a human-perceptible form or, historically, into a physical machine-readable form for use with other non-computerized equipment. It can be text, graphics, tactile, audio, or video.

Yaaaaaa.........
My friend has now made a new website that's Webtimez

Congratulations .......
#sweetjennifer​

Answers

Answer:

Thank you

Explanation:

Have a blessed day !

May God bless you

Explanation:

wow cool

congratulations

The existence of a(n) ____ relationship indicates that the minimum cardinality is at least 1 for the mandatory entity.

Answers

The relation that indicates the minimum cardinality should be at least 1 for the mandatory entity is referred to as mandatory relationship.

What is a Mandatory Relation?

A mandatory relationship can be described as any instance of a relationship that requires one entity to participate with another entity.

This implies that, the minimum cardinality in a data base should be at least one for the mandatory entity.

Thus, the relation that indicates the minimum cardinality should be at least 1 for the mandatory entity is referred to as mandatory relationship.

Learn more about mandatory relationship on:

https://brainly.com/question/6344749

Order the steps to use a logical argument as a rule type.

ANSWER:
Click the home tab, then click the styles group > Click conditional formatting > Click new rule > Use a formula to determine

Answers

pleaaase I need the points

Explanation:

It is necessary to determine what individual or organization is responsible for a web site in order to determine its _____

Answers

It is necessary to know the person or organization in charge of a website to determine its'; Website Designer

Who is a website Designer?

A website designer is defined as individual or organization that is responsible for the organization and appearance of a Web site.

Now, these website designers create the visual aspects of websites. They do this by meeting with clients, online or in person, in order to get a clear picture of the message that need.

Thereafter, these Web Designers create and build websites and web pages by combining any number of visual design elements including text, photos, graphics, animations and videos.

Finally, a Web Designer could either be responsible for creating a brand new website or simply making updates to the design and layout of existing pages.

Read more about Websites at; https://brainly.com/question/1382377

write 5 ways on how to edit cell in ms excel​

Answers

1. Press Enter. Excel exits edit mode and selects the cell directly below the current cell. 2.Press Tab. 3. Click a different cell. 4. Press F2.

In at least 600 words, write an essay discussing one of the following themes from The Miracle Worker. In your essay, discuss your choice by responding both to (1)how Gibson presents the theme in The Miracle Worker as well as (2) the message Gibson is trying to present through this theme. You will be expected to refer to quotes in The Miracle Worker as evidence of your interpretations of the play. Remember to document your evidence properly, using MLA format (click here to review the MLA Style Guide)

Answers

To create an essay discussing the main themes of "The Miracle Worker", it is necessary to carry out reading and research in reliable sources about the work in order to form a more consistent and reliable argument.

Synopsis for "The Miracle Worker"

William Gibson's play takes place in the 1880s, when young Annie Sullivan manages to teach a young deafblind girl named Helen Keller to communicate through learning sign language.

Based on a true story, the author seeks through his work to present the message of how communication is essential for life in society, and how inclusion and empathy can improve social interaction and the development of individuals.

Find out more about American Sign Language here:

https://brainly.com/question/1350132

Word wrap is the same as __________ return and means you let the ______________ control when it will go to a new line.

Answers

Word wrap is the same as; Soft Return

Word wrap means that you let the; Computer Control when it will go to a new line

What is Text Wrapping?

Text wrapping is simply defined as a process used in MS Word to Wrap a Text around an Image.

Now, the way it is done is by selecting the image you want to wrap text around and then On the Format tab, click the Wrap Text command in the Arrange group, then select the desired text wrapping option to wrap the text.

Finally Word wrap is also same as using soft return and letting the computer control when it goes to the next line.

Read more about text wrapping at; https://brainly.com/question/5625271

2. Name the substance you think is in the cylinder that you cannot see and prevents the plunger from going all the way in even when you push the plunger hard?​

Answers

Plunger is a disc or cylinder that moves in the body of a syringe, a pump or the cylinder of a steam engine, an explosion engine.

The substance in the cylinder

The substance that you think is in the cylinder that you cannot see and that prevents the plunger from going all the way in, even when you push the plunger hard, it may be substance that is too viscous or dense, but it is not possible to determine substance.

With this information, we can conclude that the plunger is a disc or cylinder that moves in the body of a syringe, but the substance to be determined can be viscous or dense.

Learn more about plunger in brainly.com/question/4190018

All of these issues are results of data integrity problems except ________.
A) the system will develop a poor reputation.
B) incorrect results.
C) inconsistent results.
D) users lose confidence in the data.
E) the system will give users too much information.

Answers

If there is an issue with the integrity of data the only one that will not be an issue is; The system will give users too much information.

What is Data Security?

Data Security is defined as a security service that deals with identifying any alteration to the data. This is as a result of the data getting modified by an unauthorized entity either intentionally or accidentally.

Now, data security is also called data integrity is simply the safety of data and from the options given if there is an issue with the integrity of data the only one that will not be an issue is  the system will give users too much information. because it is not a function of breach of data security.

Read more about data security at; https://brainly.com/question/4688296

Raj has three shapes in his document, and he would like to format and move all of the shapes like they are one object. Which of the following tasks should he do?

Question 6 options:

Link the shapes like text boxes


Group the shapes


Save the shapes as an image


Arrange the shapes so they all appear at the front of the document

Answers

The task that Raj should perform, with the three shapes in his document,that needs formatting is to Group the shapes.

What is grouping  in documents?

Grouping can be regarded as the arrangement of files in the documents in order to make the documents easier to work on.

Since, Raj want to  format and move all of the shapes like they are one object, then he would need to group them in order to perform the task.

Learn more about grouping at:https://brainly.com/question/24448358

Other Questions
Which of the following is NOT one of the four assumptions we mustmake for a PPC to be useful?O Technology is fixedO Only two things can be produced (capital and consumer goods)O Resources are flexibleO All resources are fully employed Samek was driving to work when he suddenly felt paralyzed and couldn't resist falling asleep. Samek may have ________. Select one: a. Damage to his K-complex b. Narcolepsy c. REM sleep behavior disorder (RBD) d. A stroke If a bouncing ball has a total energy of 20 J and a kinetic energy of 5 J, the balls potential energy is5101520J.If the kinetic energy of the ball decreases, then the potential energy willdecrease increaseStay the same.. Identify the smallest composite number that you can create by multiplying two different composite numbers why did the hundred year war eneded? A Titan rocket is 80 feet high. For his science project, Joe will build a scale model of the rocket.How tall will his model be if he uses the scale 1 inch = 5 feet? i need help please thanks Please help and Ill give you brainliest. 8ar5 points . Find your heart rate, as well as theheart rate of a friend. Using this information andSo what you know about pattern rules andalgebraic equations, explain why figuring outhow many times your heart beats in 24 hours isnot any more difficult than figuring out howmany times it beats in one hour. Present thisInformation in the format of your choice. 9. (a) Seven chairs are stacked in a corner. How many chair legs are left?(b) Three chairs are taken outside. How many chair legs are left A news report says that 28% of high school students pack their lunch.Your high school has 600 students.How many students in your high school would you expect to pack their lunch?A.17 studentsB.28 studentsC.168 studentsD.210 students In directional selection, what is the beneficial trait?A) traits that maximize an organism's ability to attract matesB) two extreme phenotypic forms of a traitC) one of the extreme phenotypic forms of a traitD) intermediate phenotypic form of a trait Ashley is driving to the mall with a group of friends. They are talking and listening to the radio and even taking pictures to post on social media. Based on research, activity in brain areas that are vital for driving has decreased about ________ percent for Ashley.a. 72.b. 25.c.14.d. 37. Please help me answer this Study Island Question!I'll give brainliest!! Gabriella has 3 bottles of water.Each bottle contains 500 ml of water.Work out the total quantity of water.Give your answer in litres. What is meant by Recommend vaccinations? Which phrase best defines mood and literature Which of the following Statements are true?Statement 1: A cube has 12 edges.ccessStatement 2: A triangular pyramid has 4 faces.Only Statement 1 is True.Only Statement 2 is True.Both Statements are True.Neither Statement is True. can i please get help step by step how does light equality affect plant growth