When typing using the number row, your ___________________ is the proper finger to key the "6" key.

Answers

Answer 1

Answer:

your left pointer finger

Explanation:

Answer 2

Answer:

Your pointer finger, on ur left hand

Explanation:


Related Questions

1. A bank customer invested $24 in a bank with 5 percent simple interest per year, write a program the construct a table showing how much money the bank customer would have at the end of each 20- year period starting in 2021 to 2041.

2. A programmer starts with salary of $65,000 and expect to receive $1500 raise each year. Write a program to compute and print the programmer's salary for each of the first 10 years and total amount of money the programmer would receive over the 10- year period.

Answers

Answer:

1.lettuce is 2021 to 2,000 4136 verse 2. that is 10 years to tell if your 10 years 20 years old point month

pleaseeeeeeee tellllllllllllllllllllll​

Answers

Answer:

visual communication

hope it helps

stay safe healthy and happy.

Answer:

visual communication will be the correct answer

Plzz help will mark brainliest

Answers

Answer:

11. 3 dimensions

12. ( i believe its number 3)

13. 2 option

14. Natural Light

15. Development

Explanation:

state two ways of moving an icon from one location to another​

Answers

Answer:

To arrange icons by name, type, date, or size, right-click a blank area on the desktop, and then click Arrange Icons.

Click the command that indicates how you want to arrange the icons (by Name, by Type, and so on).

If you want the icons to be automatically arranged, click Auto Arrange.

If you want to arrange the icons on your own, click Auto Arrange to remove the check mark.

Explanation:

Which tag appears in the element of an HTML file? A. B. C. D. E.

Answers

element the answer is Explanation:

Answer:

<title>

Explanation:

trust me

What allows you to navigate up down left and right in a spreadsheet?

Answers

Answer:

scrollbar?

Explanation:

____________

How is the drum charged in a xerographic printer?
A.
with a charged rubber plate
B.
with a charged metal plate
C.
with a laser beam scanning the drum
D.
with charged ink applied to the drum

Answers

The drum charged in a xerographic printer is by with a charged rubber plate.

What is Xerography?

Xerography is known to be a kind of a dry photocopying method that is said to be of the origin from what we call  electrophotography which was known to be renamed as  xerography.

It is known to be from the Greek word that means "dry" and "writing" and it is made to tell that unlike reproduction method then in use such as cyanotype, the act or work of xerography is one that does not use liquid chemicals.

Hence, The drum charged in a xerographic printer is by with a charged rubber plate.

Thus Option A is correct.

Learn more about drum  from

https://brainly.com/question/955356

#SPJ1

Answer:  C. :   with a laser beam scanning the drum

Explanation: got it correct in edmentum.

your welcome

InfoTrac is an aggregated database?

True

False

Answers

Answer: true

Explanation:

Write a function nexthour that receives one integer argument, which is an hour of the day, and returns the next hour. This assumes a 12-hour clock; so, for example, the next hour
after 12 would be 1. Here are two examples of calling this function:

>> fprintf('The next hour will be %d.\n',nexthour(3))The next hour will be 4.>> fprintf('The next hour will be %d.\n',nexthour(12))The next hour will be 1.

Answers

Answer:

The function in C is as follows:

int nexthour(int tme){

   tme = tme%12 + 1;

   return tme;

}

Explanation:

This defines the function

int nexthour(int tme){

Ths calculates the next hour using % operator

   tme = tme%12 + 1;

This returns the next hour

   return tme;

}


[tex] \tt{Define \: hardware.}[/tex]

Answers

Answer:

The vital components of a computer system , which can be seen and touched , are called hardware .

examples

keyboard monitormouse

hope it is helpful to you

Answer:

Hardware is the collective term for the internal and external hardware that enables you to carry out key operations including input, output, storage, communication, processing, and more.

___________________

Hope this helps!

pleaseeeeeeee tellllllllllllllllllllll​

Answers

Answer:

digital communications will be the correct answer

Answer:

non verbal communication is the answer

state 4 basic operation performed by a computer​

Answers

Answer:

The processes are input, output, storing,processing, and controlling.

input, processing, output, and storage.

Write a function called PayLevel that returns a level given an Ssn as input. The level are: "Above Average" if the employee makes more than the average for their department "Average" if the employee makes the average for their department "Below Average" if the employee makes less than the average for their department

Answers

Answer:

Explanation:

Since no further information was provided I created the PayLevel function as requested. It takes the Ssn as input and checks it with a premade dictionary of Ssn numbers with their according salaries. Then it checks that salary against the average of all the salaries and prints out whether it is Above, Below, or Average. The output can be seen in the attached picture below.

employeeDict = {162564298: 40000, 131485785: 120000, 161524444: 65000, 333221845: 48000}

average = 68250

def PayLevel(Ssn):

   pay = employeeDict[Ssn]

   print("Employee " + str(Ssn) + " is:", end=" "),

   if pay > average:

       print("Above Average")

   elif pay < average:

       print("Below Average")

   else:

       print("Average")

PayLevel(161524444)

PayLevel(131485785)

If you wouldn't want someone to photograph you doing something, don't photograph someone else in that situation either. True False

Answers

In the United States, it's illegal for a photographer to use someone's likeness ... Model release forms contain conditions on working with people, and in some ... You'll need this release form if you want to publish photos of another person's ... If you don't want to take any legal risks, then use a photo release form to be safe.

it is a group of two or more computer system connect to each other​

Answers

network is a group of two or more computer system connected together

public class Square extends Shape{
/**Like with Shape, we will be making a static instance variable
* to keep track of how many squares we have made. It is very
* similar to the one in shape, and it's uses are similar as well.
* It too is initialized to zero.
*
* We may also need additional instance variables, which you should
* declare as needed. They will not need to be static nor initialized
* here though.
**/
/**You may need additional instance variables. Declare them here.
**/
/**The constructor for Square is a little more involved than the
* Shape constructor, as it takes a single double parameter representing
* the side length. It should also call the super constructor, as
* calling it increments the number of shapes made, which we should
* do (as a Square extends Shape). We also need to increment the
* instance variable representing the number of squares made, and handle
* our parameter appropriately.
**/
public Square(double sideLength){
}
/**Like with our other shapes, this is a simple getter method for our
* static instance variable.
**/ public static int getNumSquaresMade(){
return -1;
}
/**As always, we must override getSize() for our Square. A Square's size
* is simply it's side length squared.
**/
}
public class Shape{
private static int numShapesMade = 0;
public Shape(){
numShapesMade++;
}
public static int getNumShapesMade(){
return numShapesMade;
}
public double getSize(){
return 0;
}
}

Answers

Answer:

I would say A

Explanation:

Enjoy :)

Please answer it’s timed

Answers

Answer:

1st one

Explanation:

or the last, im a bit positive its the first one though

What is the first step you should take when you want to open a savings account? A. Present your photo ID to the bank representative. B. Go to the bank and fill out an application. C. Make your initial deposit. D. Review the different savings account options that your blunk offers.​

Answers

Answer: B

Explanation:

The first step you should take when you want to open a savings account is the photo id

Which of the following are examples of nontoxic materials used in computer equipment?
gold, silver, copper
arsenic, copper, gold
dioxin, silver, gold
copper, silver, lead

Answers

Answer: Gold, Silver, Copper

Explanation:

Gold is very useful in computers as it can be used for connectors, connecting wires and even memory chips. It is a nonreactive metal and so is not toxic unless it is consumed (and in large quantities).

Silver is another nontoxic metal used in computers to make circuit boards, cellphones and even keyboard components. Finally there is the very important copper which is a useful electronic component for more than just computers. This non-toxic metal has contributed significantly to the development of many things electrical including, as already mentioned, computers.

pleaseeeeeeee tellllllllllllllllllllll​

Answers

Answer:

true is the correct answer

i need the solution to this task please anyone

Answers

Answer:

.

Explanation:

what functions can you perform with project management software?

Answers

Answer:

Planning and scheduling. ...

Collaboration. ...

Documentation. ...

Reporting. ...

Resource management. ...

Managing the project budget.

Explanation:

list eight applications software​

Answers

Answer:

Eight applications software are:

Word processing softwareSpreadsheet software Graphics software Database software Web browser softwareAnimation softwareInternet browser softwares like: fire fox, chrome etcPresentation software

Line 9 and 10
To calculate your taxable income, subtract the sum of lines 8
and 9 from line 7, and then enter that number here.

Answers

Answer:

22,332

Explanation:

The taxable income :

Line 8 = Standard deduction or itemized deduction

Line 9 = Qualified business income deduction

Line 7 = Adjusted gross income

Taxable income = Adjusted gross income - (Qualified business income deduction + standard deduction)

Taxable income = 34732 - (12400 + 0)

Taxable income = 34732 - 12400

Taxable income = 22,332

Code a Python program that uses a graphical user interface (GUI) to address a real-world problem. Within reason, you may choose to address any real-world problem that you would like; however, please only choose a real-world problem that is both safe and legal.

Answers

Answer:

Explanation:

The following is a simple GUI Python program that solves for the different variables in a Pythagorean theorem equation, which is a real-world problem that many students have to face on a daily basis. The output can be seen in the attached picture below. Due to technical difficulties, I have added the code as a txt file attachment.

In this lab, you use what you have learned about searching an array to find an exact match to complete a partially prewritten C program. The program uses an array that contains valid names for 10 cities in Michigan. You ask the user to enter a city name; your program then searches the array for that city name. If it is not found, the program should print a message that informs the user the city name is not found in the list of valid cities in Michigan. The file provided for this lab includes the input statements and the necessary variable declarations. You need to use a loop to examine all the items in the array and test for a match. You also need to set a flag if there is a match and then test the flag variable to determine if you should print the the Not a city in Michigan. message. Comments in the code tell you where to write your statements. You can use the previous Mail Order program as a guide. Instructions Ensure the provided code file named MichiganCities.cpp is open. Study the prewritten code to make sure you understand it. Write a loop statement that examines the names of cities stored in the array. Write code that tests for a match. Write code that, when appropriate, prints the message Not a city in Michigan.. Execute the program by clicking the Run button at the bottom of the screen. Use the following as input: Chicago Brooklyn Watervliet Acme

Answers

Answer:

Complete the program as follows:

for(int i = 0; i<10; i++){

     if(inCity == citiesInMichigan[i]){

         foundIt = true;

         break;       }    }

   if(foundIt){         cout<<"It is a city";     }

   else{         cout<<"Not a city";     }

Explanation:

Required

Complete the pre-written code in C++ (as indicated by the file name)

The pre-written code; though missing in this question, can be found online.

The explanation of the added lines of code is as follows:

This iterates through the array

for(int i = 0; i<10; i++){

This checks if the city exists in the array

     if(inCity == citiesInMichigan[i]){

If yes, foundIt is updated to true

         foundIt = true;

And the loop is exited

         break;       }    } -- The loop ends here

If foundIt is true, print it is a city

   if(foundIt){         cout<<"It is a city";     }

Print not a city, if otherwise

   else{         cout<<"Not a city";     }

// MichiganCities.cpp - This program prints a message for invalid cities in Michigan.// Input: Interactive// Output: Error message or nothing#include <iostream>#include <string>using namespace std;int main(){ // Declare variables string inCity; // name of city to look up in array const int NUM_CITIES = 10; // Initialized array of cities string citiesInMichigan[] = {"Acme", "Albion", "Detroit", "Watervliet", "Coloma", "Saginaw", "Richland", "Glenn", "Midland", "Brooklyn"}; bool foundIt = false; // Flag variable int x; // Loop control variable // Get user input cout << "Enter name of city: "; cin >> inCity; // Write your loop here for (x = 0; x < NUM_CITIES; x++) { // Write your test statement here to see if there is // a match. Set the flag to true if city is found. if (inCity == citiesInMichigan[x]) { foundIt = true; cout << "City found." << endl; break; } else { foundIt = false; } } // Test to see if city was not found to determine if // "Not a city in Michigan" message should be printed. if (!foundIt) { cout << "Not a city in Michigan." << endl; } return 0; } // End of main()

PLZ ANSWER WORTH 20 POINTS!! URGENT!

To use Office 365 and
OneDrive, you need ____.

A. to pay for online storage space

B. the latest version of Microsoft Office on your device

C. a registered Microsoft account

D. be logged on a school computer
Spring 2021 Post TLC CA

Answers

Answer:

C. a registered Microsoft Account

Answer:

B:the latest version of Microsoft Office on your device

Explanation:

I got it from the internet.

"To speed up magnetic hard drive performance , ___________ is often used. "

Answers

Answer:

disk caching

Explanation:

Hi,

Magnetic hard drives use disk caching to speed up performance. This method is quite ingenious because what it does is that in a section of memory in your pc, it keeps a copy of information that was previously accessed in the hard disk. So, next time if the same data is requested, the system can refer to cache to get quick access rather than going to the hard disk (which is slower).

primary purpose of ms Excel​

Answers

MS Excel is a spreadsheet programme developed by Microsoft in 1985, with the sole purpose of helping businesses compile all their financial data, yearly credit, and yearly debit sheets. Fast forward to the future after 31 years, it is now the most commonly used program for creating graphs and pivot tables.

A pharmaceutical company is going to issue new ID codes to its employees. Each code will have three letters followed by one digit. The letters and and the digits , , , and will not be used. So, there are letters and digits that will be used. Assume that the letters can be repeated. How many employee ID codes can be generated

Answers

Answer:

82,944 = total possible ID's

Explanation:

In order to find the total number of combinations possible we need to multiply the possible choices of each value in the ID with the possible choices of the other values. Since the ID has 3 letters and 1 digit, and each letter has 24 possible choices while the digit has 6 possible values then we would need to make the following calculation...

24 * 24 * 24 * 6 = total possible ID's

82,944 = total possible ID's

Other Questions
Theres a picture provided Super easy but not for me. Please help Write a five sentence diary entry imagining that you are a north/south soldier preparing to go to war against the other side. What are you fighting for? How do you feel? What are things to look for in an Expository text?They have many rhyming patterns.They have imaginary characters.The story is based on a play.They may have dates, images and a thesis statement that are informative. Must show work, please helppp diferencia entre los tejidos vasculares xilema y floema Please help. What is the answer? Im struggling. How do your write a feaction with a denominator of 20 as a decimal? Select the correct text in the passage.Which lines in this excerpt of Charles Dickens's A Christmas Carol reflect the theme of compassion versus material gain?"But you were always a good man of business, Jacob,"faltered Scrooge, who now began to apply this to himself."Business!" cried the Ghost, wringing its hands again. "Mankind was my business. The common welfare was my business; charity, mercy,forbearance, and benevolence, were, all, my business. The dealings of my trade were but a drop of water in the comprehensive ocean of mybusiness!"It held up its chain at arm's length, as if that were the cause of all its unavailing grief, and flung it heavily upon the ground again."At this time of the rolling year," the spectre said, "I suffer most. Why did I walk through crowds of fellow-beings with my eyes turned down, andnever raise them to that blessed Star which led the Wise Men to a poor abode! Were there no poor homes to which its light would haveconducted me!"Scrooge was very much dismayed to hear the spectre going on at this rate, and began to quake exceedingly."Hear me!" cried the Ghost. "My time is nearly gone.""I will," said Scrooge. "But don't be hard upon me! Don't be flowery, Jacob! Pray!""How it is that I appear before you in a shape that you can see, I may not tell. I have sat invisible beside you many and many a day."It was not an agreeable idea. Scrooge shivered, and wiped the perspiration from his brow."That is no light part of my penance," pursued the Ghost. "I am here to-night to warn you, that you have yet a chance and hope of escaping myfate. A chance and hope of my procuring, Ebenezer."'You were always a good friend to me," said Scrooge. "Thank'ee!"ResetNex at which value of x does the function have a jump discontinuity 50 Points !!!! dang I don't need answer file which microbes is used to extract ethanol from fruit juice and sugar molasses Which word in the choices belowcompletes the analogy?Grapple : Seize :: Sympathetic :A. AustereB. ImpeccableC. AscertainD. Compassionate Would you be more concerned if something you consider precious went through achemical change or a physical change? Why?Can somebody help me please! dau coroana daca il faceti What is the best way to gather information for each of the scenarios? Select Survey, Experiment, or Observational study for each scenario. Survey Experiment Observational study A director wants to know what his singers do before a performance. A director wants to know who his best soprano is. O A director wants to know how verbally disciplining a singer affects the group. A director wants to know what musical is the most popular in the community. Most photosynthesis takes place in the _____.epidermisspongy layerpalisade layercuticle I need help please solve for x and y rectangles !!!!!!!! NEED HELP ASAP ???!?!??!?????! Ill give brainly if youre answer is right How a terrestrial reptile will regulate body temperature if it is placed in a habitat that is extremely dry with the temperature of 55C Why is the modern age called the age of science and technology?