Answers

Answer 1
The home keys are where you place your fingers when you are learning to type. The home keys include F, D, S, and A on the left of the keyboard, and J, K, L, and ; (semicolon) on the right of the keyboard.
Answer 2
The home row keys are the row of keys on the computer keyboard you’re fingers rest on when not typing.

Related Questions

Ellie is conducting formal research for a new design project and wants to find demographic information. What source is considered most credible to use for her research?

Wikipedia articles

competitor websites

government data

magazine opinion pieces

Answers

may be wikipedia i’m sorry if it’s wrong ☹️

Answer:

Its governmental data

Explanation:

C++

Assume the existence of a Window class with integer data members width and height. Overload the << operator for the Window class-- i.e., write a nonmember ostream-returning function that accepts a reference to an ostream object and a constant reference to a Window object and sends the following to the ostream: 'a (width x height) window' (without the quotes and with width and height replaced by the actual width and height of the window. Thus for example, if the window had width=80 and height=20, << would send 'a (80 x 20) window' to the ostream object.) Don't forget to have the function return the proper value as well. Assume the operator has been declared a friend in the Window class.

Answers

Answer:

Following are the code to the given question:

#include <iostream>//header file

using namespace std;

class Window //defining a class Window

{

private:

int width, height;//defining integer variable

public:

friend ostream& operator << (ostream& stm, Window& width)//defining a friend function that takes two parameters

{

return stm<<"a ("<<width.width<<" x "<<width.height<<") window"; //use return keyword that return its values

}  

Window(int width, int height): width(width), height(height)//defining parameterized constructor that inherit width and height in its parameters  

{}

};

int main() //Main method

{

Window w(80,90);//calling class constructor

cout<<w;//print object value

return 0;

}

Output:

a (80 x 90) window

Explanation:

In the above code, a class "Window" is defined that uses a friend function "ostream& operator" is declared that uses the "ostrea&" as a data type to hold two-variable "stm and w" in its parameter, and declared the parameterized constructor to hold value by inheriting width and height in its parameters.

Inside the main method, a class object is created that calls the constructor and uses the print method to print object value.

What is the difference between PowerPoint and Outlook?

PowerPoint is a presentation program; Outlook is a personal information management application.
Outlook is a presentation program; PowerPoint is a personal information management application.
PowerPoint is a program that lets you create, edit, format, and print written documents; Outlook is a computer application that uses a grid system to organize and manipulate data.
Outlook is a program that lets you create, edit, format, and print written documents; PowerPoint is a computer application that uses a grid system to organize and manipulate data.

Answers

Answer:

PowerPoint is a presentation program; Outlook is a personal information management application.

Explanation:

Powerpoint is the program used in presentations where slides designed and then shown to the audience.

Outlook is used to display various types of personal information like calendar appointments and emails.

Hawaii and japan are examples of islands made by? You have to write it.

Answers

Answer:

Volcanic activity

In addition to assessing whether each of your independent variables has an effect on the dependent variable, a factorial ANOVA also allows you to:
A) use multiple dependent measures in a single analysis.
B) control for a third variable that might be related to your dependent measure prior to
investigating the independent variable of interest.
C) determine whether the effects of one factor depend on the other factor.
D) partition out the variability due to individual differences and the variability due to
measurement error.

Answers

Answer:

C) determine whether the effects of one factor depend on the other factor.

Explanation:

ANOVA is analysis of variance which helps to understand whether the population mean are equal or not. It is statistical model which is used by the businessmen to analyze their business performance. ANOVA also determines whether the effect of one factor are related or dependent on other factor.

In order to multitask, a computer must have two or more processors. True or False

Answers

Answer:

False

Explanation:

:) brainliest pls

Answer:

True

Explanation:

Difference between Hollerith and Burroughs machine​

Answers

Explanation:

The tabulating machine was an electromechanical machine designed to assist in summarizing information stored on punched cards. Invented by Herman Hollerith, the machine was developed to help process data for the 1890 U.S. Census. Later models were widely used for business applications such as accounting and inventory control. It spawned a class of machines, known as unit record equipment, and the data processing industry.

Herman Hollerith (February 29, 1860 – November 17, 1929) was an American businessman, inventor, and statistician who developed an electromechanical tabulating machine for punched cards to assist in summarizing information and, later, in accounting. His invention of the punched card tabulating machine, patented in 1884, marks the beginning of the era of mechanized binary code and semiautomatic data processing systems, and his concept dominated that landscape for nearly a century.

Hollerith founded a company that was amalgamated in 1911 with several other companies to form the Computing-Tabulating-Recording Company. In 1924, the company was renamed "International Business Machines" (IBM) and became one of the largest and most successful companies of the 20th century. Hollerith is regarded as one of the seminal figures in the development of data processing.

HURRY GUYS I GOT 3 QUESTIONS LEFT
IM TIMED!!!!!

Which element should be used only when the content simply references the element
a. nav
b. figure
c. hgroup
d. article

Answers

the answer is b i believe

The element that should be used only when the content simply references the element is figure. The correct option is B.

What is element of referencing?

The four components of the author, date, source, and title are all included in reference list entries.

There are four referencing conventions that are frequently used. They go by the names of the Modern Languages Association (MLA), American Psychological Association (APA), Harvard, and Modern Humanities Research Association (MHRA) systems.

In computer programming, a reference is a value that allows a program to access a particular piece of data indirectly, such as the value of a variable or a record, in the computer's memory or in another storage location.

As a result, accessing the data is referred to as dereferencing the reference, and the data is referred to as the reference's referent.

Thus, the correct option is B.

For more details regarding elements of referencing, visit:

https://brainly.com/question/28270502

#SPJ2

What does input allow a computer to do

Answers

In computer science, the general meaning of input is to provide or give something to the computer, in other words, when a computer or device is receiving a command or signal from outer sources, the event is referred to as input to the device.

please help thank u!!!!!

Answers

Answer:

i believe you can change slides with the arrow keys not entirely sure though

Explanation:

Answer:

using the arrows

pressing space

and clicking the mouse

Explanation:

nadine is the systems administrator for a network with a single subnet. The subnet uses 192.168.1.0 with a mask of 255.255.255.0. The network has 10 servers running Windows Server. Srv1 currently provides both DHCP and DNS services. Nadine wants to increase the fault tolerance for her DHCP servers. She installs a new server, Srv11, and configures it for DHCP. She configures a scope on Srv11 to match the scope on Srv1 and then excludes half of the addresses in the scope on Srv1 and the other half of the addresses on the Srv11. Nadine decides to test her solution and shuts down Srv1. As a test, she forces a workstation to release its IP address and request a new one. She finds that the workstation has the IP address 169.254.0.15 with a mask of 255.255.0.0. What should Nadine do to fix the problem?

Answers

Answer:

Authorize Srv11

Explanation:

In order to fix this problem, Nadine should Authorize Srv11. The problem is most likely being caused due to failure of authorization of the server. This would prevent this server from being on the same scope as Srv1 and therefore, it is why the IPaddress being given is different. DHCP is an automatic protocol and would not be able to provide an IP address in the same scope if the server is not Authorized to do so.

Write the purpose of using computer network

Answers

Answer:

sharing resources and data between computer systems. Those shared resources would include that of data storage, printers and other devices.

Explanation:

Answer:

Explanation:Computer networks help you to connect with multiple computers together to send and receive information. Switches work as a controller which connects computers, printers, and other hardware devices. Routers help you to connect with multiple networks. It enables you to share a single internet connection and saves money.

Which of the following refers to the informal rules for how to behave online?​

Answers

Answer:

Question: Where is the following?

Uhhhhhhhhhh picture??

For what purpose is IT used in business?

Answers

Answer:

Technology is used in various ways; businesses can use technology in manufacturing, improving customer care, transportation, human resource management, business communication, use technology to improve their services or products as a way of gaining competitive advantage .

Answer:

Technology is used in various ways; businesses can use technology in manufacturing, improving customer care, transportation, human resource management, business communication, use technology to improve their services or products as a way of gaining competitive advantage .

Explanation:

BRAILIEST PLZ!

Ivan has five workbooks open. he has arranged these files in a specific grouping so he can view them at the same time. In order to save these files i this specific order, ivan must create a----​

Answers

i think the answer is
folder.

what is the name of first electroechanical computer​

Answers

Explanation:

hope it is helpful to you

Explain what Fahd did wrong in the scenario below. Fahd is running ten programs at once on his laptop when it suddenly freezes up. To fix this problem, Fahd buys a new battery for his laptop.

Answers

Answer:

Well first off. if the laptop froze that doesn't mean the battery is dead to the point where a simple rest of the laptop wouldn't work out.

What is an example of a composite key in a database table?

InvoiceID
CustomerID
ProductID
OrderID + ProductID

Answers

Answer:

b

Explanation:

OrderID + ProductID is an example of a composite key in a database table. The correct option is 4.

What is composite key?

A composite key is a key in a database table that consists of two or more columns that uniquely identify each row.

In a database table, a composite key is the combination of OrderID and ProductID in a table that tracks sales transactions.

Because a single order can contain multiple products and multiple orders can contain the same product, neither column can uniquely identify a row by itself.

However, by combining the two columns, each row can be uniquely identified, ensuring that the data is accurate and complete.

Similarly, a combination of CustomerID and ProductID might be used in a sales system to track the products purchased by each customer.

Thus, the correct option is 4.

For more details regarding composite key, visit:

https://brainly.com/question/10167757

#SPJ3

What are some other sites similar to brainly? By similar I mean being able to ask a question and answer them based on categories.

Answers

Answer:

jiskha.com

Explanation:

Answer:

Quora and Yahoo answers are alright

100POINTS!!!!


Which tool would you use to organize the list from fewest calories to most calories?

Which tool would you use to organize the list from most protein to least protein?

Which tool would you use to show only fruits with 4 or more grams of dietary fiber?

Which tool would you use to navigate to C5, the cell containing the grams of sugar for an orange?

Answers

Answer:

Explanation:

Which tool would you use to organize the list from fewest calories to most calories?

✔ sort by calories from smallest to largest

Which tool would you use to organize the list from most protein to least protein?

✔ sort by protein from largest to smallest

Which tool would you use to show only fruits with 4 or more grams of dietary fiber?

✔ filter

Which tool would you use to navigate to C5, the cell containing the grams of sugar for an orange?

✔ Go To

The answer is in the picture

Professional communication must be objective,
, and unemotional.

technical

informal

rational

Answers

it’s between technical and rational

Answer:

rational

Explanation:

Choose the tag required for each stated goal.

To style text as larger than adjacent text:








To style text as bold:








To style text as italicized:








To style text as small:

Answers

capslockbolditalicscapslock

How does a filmmaker decide which events to include in a documentary?

Answers

Answer:

A documentary is a film based on facts in which the maker tries to portray an aspect of reality, such as politics, science, society or history, nature or the personal perception of the documentary maker.

Documentaries are informative in nature. Sometimes documentaries attempt to provide an objective picture of a subject. There is a lot of debate about what is objective, because the documentary maker chooses his images from reality, which is in itself a subjective act. In a creative author's documentary, the emphasis is on the subjective vision of the filmmaker.

Therefore, the documentary maker will select the events to include in the documentary according to the approach he or she wants to give to it, be it objective or subjective.

what is the main reason for adding somebody into the BCC list for an email?​

Answers

Answer:

protecting email address privacy

Explanation:

for securing and privacy reasons and it is for the best

you would use conditional formatting on a cell when you want to _____

Answers

Answer:

to format a cell based on the value in it

Explanation:

you would use conditional formatting on a cell when you want to format a cell based on the value in it.

Reason -

Conditional formatting allows you to format a cell based on the value in it.

For example, if you want to highlight all the cells where the value is less than 30 with a red color, you can do that with conditional formatting.

How would you highlight cells with negative values in it?

You can use conditional formatting.

help Which of the following triangles can be proven similar through AA?
Question 1 options:

A)

image

B)

image

Answers

A as in Ate my food ya know

You have a small network at home that is connected to the internet. On your home network, you have a server with the IP address of 192.168.55.199/16. You have a single public address that is shared by all hosts on your private network. You want to configure the server as a web server and allow internet hosts to contact the server to browse a personal website. What should you use to allow access

Answers

Static NAT is the answer,. :) great question BTW!

You are part of a development team that needs to adopt an integrated development environment tool to increase programmer productivity. The team narrowed the options down to two. One is open-source; the other will require an expensive site license. The tool you choose must be reliable, stable and well maintained. Which of the following could be a disadvantage for you to choose open-source, and thus a compelling enough reason to purchase the licensed software instead of using the open-source solution?
A. Your developers will have ready access to the source code.
B. The open-source solution is in the public domain.
C. The code for the open-source solution can be viewed by a community of open-source developers.
D. Maintenance of an open-source solution relies on developers who volunteer to work on the code.

Answers

Answer:

honestly I think the other one is correct

Explanation:

What is the "thinking work" of the computer? How does it help the computer?

Answers

Answer:

El pensamiento computacional es una forma de pensar que utiliza habilidades propias de las ciencias de la computación, como la descomposición y resolución de problemas, lógica, el reconocimiento de patrones y la abstracción

Explanation:

Un computador sirve para guardar los teléfonos de tus amigos, las tareas del colegio, los trabajos de tu papá y mamá y hasta las cartas que le envías a tu novia.

What is CPU
and it's functions

Answers

Answer:

CPU is considered as the brain of the computer. CPU performs all types of data processing operations. It stores data, intermediate results, and instructions (program). It controls the operation of all parts of the computer

Explanation:

hope it is helpful to you

Other Questions
Types of rocks vocabulary 1 PLEASE SHOW WORK SO I UNDERSTAND THANKS :)-0.3 * -(11)/(30) what is the queran?what is the opeNing line of the queran? The sport from Spain in which players bounce, catch, and throw a ball with a cesta is called (5 points)Group of answer choicesjai alairugbyboccecricket Simplify 3x + 3 + 23x+55x+38 A. 1867B. 1659C. 1980D. 1530HELP PLZ Sandra signed up for the gym during the spring special. Her credit card was charged $220.87. Is this the correct amount? Explain. A sign that says workout jazz spring special. Sign up now and get 12 months for just 16 dollars and 99 cents per month asterisk. The asterisk is given as paid in advance. If mBC = mBD =140 degrees then What is m Question 2: Calculate the surface area of this net (remember to include your unit ofmeasure which is always squared with area)3"3"3"3"3"3"3"Answer Section: How far the penguin can walk in 1 second HELP PLEASE ASAP!!!!! the cell is undergoing a step of meiosis I. what step is the cell in? a. the beginning of prophase Ib. the middle of metaphase Ic. the end of anaphase I d. the middle of telophase I Which is shown below?12 > 11A. An operationB. An inequalityC. An expressionD. An equationSUBMIT hello how are you today When solving a quadratic using factoring, does it matter if the first x solution is on the left or right side? And same for the second x? In the answer 1. Which of the following events is not a source of genetic variation in eukaryotic organisms? J. MutationK. Independent assortmentL. MitosisM. Fertilisation2. Which statement best describes the process of endocytosis? J. A vesicle within a cell fuses with the plasma membrane and releases its contents to the outsideK. Solid particles or liquid are taken up by a cell through invagination of the plasma membraneL. Investment in one cytosis reduces the ability of the parent to assist another cytosisM. One region of an embryo directs the development of neighbouring region of an embryo through movement of cells3. In eukaryotic cells the conversion of ADP and phosphate into ATP occurs (KA1) J. only in the mitochondria, and requires energy. K. only in the cytoplasm, and releases energy. L. in both the mitochondria and the cytoplasm, and requires energy. M. in both the mitochondria and the cytoplasm, and releases energy.4. One consequence of having small regulated steps in an energy pathway is (KA1)J. an increase in the activation energy for the pathway.K. a decrease in the amount of heat lost from the pathway.L. a decrease in the amount of ATP released from the pathway. M. an increase in the total energy released from the pathway. 5. Adult stem cells in bone marrow can differentiate into a variety of cell types e.g brain, skin, lungs, heart, liver and muscle.Stem cells that are transplanted from a healthy donor into a patient (recipient) will divide and differentiate into cells of like form and function to the surrounding cells.The adult stem cells from the bone marrow of the donor would be genetically identical to the cells of the J. recipient, and divide by mitosis. K. donor, and divide by mitosis. L. recipient, and divide by meiosis. M. donor, and divide by meiosis. C cytosine need help with this problem could anybody help me pls Select the correct answer. What do you need to be able to calculate your BMI? A. An accurate measurement of height B. An accurate measurement of weight C. Both A & B D. None of the above The business cycle affects output and employment in capital and durable goods industries more severely than in industries producing non-durable goods because, ______. Multiple choice question. during a boom, business investment in new capital goods and consumer spending on new durable goods decline sharply during a recession, business and consumer spending on nondurable goods decline sharply during a recession, business investment in new capital goods and consumer spending on new durable goods rise sharply during a recession, business investment in new capital goods and consumer spending on new durable goods can be postponed DNA is copied during the S Phase of Interphase. Why do cells copy the DNA?