Reviewing the document in Backstage view first will ensure that it is print-ready and save you time and paper.
What does it mean when a text or graphic area is clicked to bring up another document?A digital reference to data that a user can follow or be guided by clicking or tapping is known as a hyperlink, or simply a link, in computing. A hyperlink can lead to a specific part of a document or the entire document. Text with hyperlinks is called hypertext.
Which three kinds of document views are there?Normal, print layout, web layout, outline, and full screen are the five views. When typing, editing, formatting, and proofreading, normal view is best. What your text will look like on a webpage is shown in Web Layout view. What your document will look like when printed is shown in the Print Layout view.
To know more about Backstage view visit :-
https://brainly.com/question/11067450
#SPJ4
What is the benefit of time boxing the preparation for the first program increment planning event
The benefit of timeboxing for the preparation for the first program increment planning event is that it seeks to deliver incremental value in the form of working such that the building and validating of a full system.
What is timeboxing?Timeboxing may be defined as a simple process of the time management technique that significantly involves allotting a fixed, maximum unit of time for an activity in advance, and then completing the activity within that time frame.
The technique of timeboxing ensures increments with the corresponding value demonstrations as well as getting prompt feedback. It allocates a fixed and maximum unit of time to an activity, called a timebox, within which planned activity takes place.
Therefore, timeboxing seeks the delivery of incremental value in the form of working such that the building and validating of a full system.
To learn more about Timeboxing, refer to the link:
https://brainly.com/question/29508600
#SPJ9
Imagine you have just learned a new and more effective way to complete a task at home or work. Now, you must teach this technique to a friend or coworker, but that person is resistant to learning a new way of doing things. Explain how you would convince them to practice agility and embrace this new, more effective method.
if a person is resistant to learning a new way of doing things, one can practice agility by
Do Implement the changeMake a dialogue with one's Unconscious. Free you mind to learn.How can a person practice agility?A person can be able to improve in their agility by carrying out some agility tests as well as the act of incorporating any form of specific drills into their workouts.
An example, is the act of cutting drilling, agility ladder drills, and others,
A training that tends to help in the area of agility are any form of exercises such as sideways shuffles, skipping, and others.
Therefore, if a person is resistant to learning a new way of doing things, one can practice agility by
Do Implement the changeMake a dialogue with one's Unconscious. Free you mind to learn.Learn more about agility from
https://brainly.com/question/15762653
#SPJ1
Complete the code to check whether a string is between seven and 10 characters long. # Is the password at least six characters long? lengthPW = len(pw) if lengthPW : message = "Your password is too long." valid = False elif lengthPW : message = "Your password is too short." valid = False
Answer:
lengthPW = len(pw)
if lengthPW > 10:
message = "Your password is too long."
valid = False
elif lengthPW < 7:
message = "Your password is too short."
valid = False
Explanation:
You change the conditions to check if length is greater than 10 or less than 7, if it's greater than ten then it says your password is either too long or short depending on its length, then invalidates it.
Provide an example of formula (with proper syntax) that would check whether cell B5 has a negative number, and return a value of "negative" if it was and "not negative" the value was zero or higher.
Answer:
The formula is:
=IF(B3<0,"negative","not negative")
Explanation:
The formula can be split as follows:
= --> This begins all excel formulas
IF --> This means that we are writing an IF condition formula
B3<0, ---> This is the condition being tested
"negative", ---> This is the result is the condition is true
"not negative" ---> This is the result is the condition is false
Select the correct answer from each drop-down menu.
Define the term parallel circuits.
In parallel circuits, the remains the same, and the output current is the sum of the currents through each component.
Answer:
voltage
equal to
Explanation:
Answer:
Voltage and Equal to
Explanation:
Correct on Edmentum
Which of the following parameters is optional sample(a,b,c,d=7
The optional Parameter is D as it is said to be assigned an integer value of 7.
What are optional parameters?This is known to be a process that is made up of optional choices that one do not need to push or force so as to pass arguments at their set time.
Note that The optional Parameter is D as it is said to be assigned an integer value of: 7 because it implies that one can use the call method without pushing the arguments.
Learn more about Parameter from
https://brainly.com/question/13151723
#SPJ2
state the base of correct addition of 27 + 6 =34
Answer:
9
Explanation:
lets do calculations with ONLY the rightmost digits, ie., 7 + 6 = 4, so we're ignoring the carry.
Then, following must be true as well:
7+5 = 3
7+4 = 2
7+3 = 1
7+2 = 0 <= this reveals our base 9
7+1 = 8
7+0 = 7
#this is 34 lines -- you can do it! # #In web development, it is common to represent a color like #this: # # rgb(red_val, green_val, blue_val) # #where red_val, green_val and blue_val would be substituted #with values from 0-255 telling the computer how much to #light up that portion of the pixel. For example: # # - rgb(255, 0, 0) would make a color red. # - rgb(255, 255, 0) would make yellow, because it is equal # parts red and green. # - rgb(0, 0, 0) would make black, the absence of all color. # - rgb(255, 255, 255) would make white, the presence of all # colors equally. # #Don't let the function-like syntax here confuse you: here, #these are just strings. The string "rgb(0, 255, 0)" #represents the color green. # #Write a function called "find_color" that accepts a single #argument expected to be a string as just described. Your #function should return a simplified version of the color #that is represented according to the following rules: # # If there is more red than any other color, return "red". # If there is more green than any other color, return "green". # If there is more blue than any other color, return "blue". # If there are equal parts red and green, return "yellow". # If there are equal parts red and blue, return "purple". # If there are equal parts green and blue, return "teal". # If there are equal parts red, green, and blue, return "gray". # (even though this might be white or black). #Write your function here!
Answer:
Following are the code to this question:
def find_color(color):#definig a method find_color that accepts color parameter
color = str(color).replace('rgb(', '').replace(')', '')#definig color variable that convert parameter value in string and remove brackets
r, g, b = int(color.split(', ')[0]), int(color.split(', ')[1]), int(color.split(', ')[2])#defining r,g,b variable that splits and convert number value into integer
if r == g == b:#defining if block to check if r, g, b value is equal
return "gray"#return value gray
elif r > g and r > b:#defining elif block that checks value of r is greater then g and b
return "red"#return value red
elif b > g and b > r:#defining elif block that checks value of b is greater then g and r
return "blue"#return value blue
elif g > r and g > b:#defining elif block that checks value of g is greater then r and b
return "green"#return value green
elif r == g:#defining elif block that checks r is equal to g
return "yellow"#return value yellow
elif g == b:#defining elif block that checks g is equal to b
return "teal"#return value teal
elif r == b:#defining elif block that checks r is equal to b
return "purple"#return value purple
print(find_color("rgb(125, 50, 75)"))#using print method to call find_color method that accepts value and print its return value
print(find_color("rgb(125, 17, 125)"))#using print method to call find_color method that accepts value and print its return value
print(find_color("rgb(217, 217, 217)"))#using print method to call find_color method that accepts value and print its return value
Output:
red
purple
gray
Explanation:
In the above method "find_color" is declared that uses the color variable as the parameter, inside the method a color variable is declared that convert method parameter value into the string and remove its brackets, and three variable "r,g, and b" is defined. In this variable first, it splits parameter value and after that, it converts its value into an integer and uses the multiple conditional statements to return its calculated value.
if block checks the r, g, and b value it all value is equal it will return a string value, that is "gray" otherwise it will go to elif block. In this block, it checks the value of r is greater then g, and b if it is true it will return a string value, that is "red" otherwise it will go to another elif block. In this block, it checks the value of b is greater then g, and r if it is true it will return a string value, that is "blue" otherwise it will go to another elif block. In this block, it checks the value of g is greater then r and b if it is true it will return a string value, that is "green" otherwise it will go to another elif block. In the other block, it checks r is equal to g or g is equal to b or r is equal to b, it will return the value, that is "yellow" or "teal" or "purple".in theory a hacker with a small but powerful directional antenna could access a wireless network from more than one mile away. In a real-world situation what is the more likely range involved?
A directional antenna or beam that used as an antenna that radiates or receives additional power from the unwanted source into certain directions that enhances performance and reduces interference.
Receiver satellite TVs commonly employ parabolic antennas.It better pulls signals in one way in which it detects a weaker or more distant signal than an omnidirectional antenna counterpart.The difference is that they do it by reducing their ability to draw signals from other directions.The coverage area is smaller yet extends farther out. This could reach up to 8 miles under optimum conditions.Learn more:
brainly.com/question/23886562
NEEED HELP WILL MARK BRAILY AND 100 POINTS FOR ANSWER!!!!
Marcus needs to add a query for multiple tables in his database. He is using Access 2016. Which tab should he use
to add the query?
Home
External data
Create
Database tools
Answer:
Database tools
Explanation:
He is using Access 2016 Database tools are the tab that should he use for the add a query for multiple tables in his database.
What is In databases?Databases and a desk is hard and fast of records elements (values) the usage of a version of vertical columns (identifiable with the aid of using the name) and horizontal rows, the cell being the unit wherein a row and column intersect.
Tables are database gadgets that incorporate all of the records in a database. In tables, records is logically prepared in a row-and-column layout much like a spreadsheet.
Read more about the database:
https://brainly.com/question/26096799
#SPJ2
Proper numeric keyboarding technique includes all of these techniques except
O keeping your wrist straight
O resting your fingers gently on the home keys
O looking at the keys
O pressing the keys squarely in the center
Answer: Its the 1st choice, 2nd choice, and the final one is the 4th one. (NOT the third answer choice)
Explanation: (I just took the test)... Hopefully this helps and good luck.
What will be the different if the syringes and tube are filled with air instead of water?Explain your answer
Answer:
If the syringes and tubes are filled with air instead of water, the difference would be mainly due to the difference in the properties of air and water. Air is a compressible gas, while water is an incompressible liquid. This would result in a different behavior of the fluid when being pushed through the system.
When the syringe plunger is pushed to force air through the tube, the air molecules will begin to compress, decreasing the distance between them. This will cause an increase in pressure within the tube that can be measured using the pressure gauge. However, this pressure will not remain constant as the air continues to compress, making the measured pressure unreliable.
On the other hand, when the syringe plunger is pushed to force water through the tube, the water molecules will not compress. Therefore, the increase in pressure within the tube will be directly proportional to the force applied to the syringe plunger, resulting in an accurate measurement of pressure.
In summary, if the syringes and tube are filled with air instead of water, the difference would be that the measured pressure would not be reliable due to the compressibility of air.
3.
Which of the following is a feature in Windows 10 that allows
you to display two windows side by side?
O Pin
O Peek
O Snap
One-click
Answer:
Snap
Explanation:
Smart Window, also called Snap, is a feature of Microsoft Windows that lets you automatically position two windows side-by-side without manually resizing them. Smart Window is also useful if you don't want to use Alt + Tab to switch between 2 windows.
10. Where in Fusion 360 do you access, manage,
organize, and share Fusion 360 design data?
O Data Panel
O ViewCube
O Display Settings
O Timeline
In Fusion 360, you access, manage, organize, and share design data through the Data Panel. Option A.
In Fusion 360, the Data Panel is the central location where you can access, manage, organize, and share design data. It serves as a hub for all your design files, components, assemblies, drawings, and related resources within the Fusion 360 environment.
The Data Panel provides a tree-like structure where you can navigate through your projects, folders, and files. It allows you to create new designs, import existing files, and organize them into logical groups. Within the Data Panel, you can perform various actions on your design data, such as renaming, duplicating, moving, or deleting files and folders.
Additionally, the Data Panel offers collaboration and sharing capabilities. You can invite team members or external collaborators to access and collaborate on your design data. It provides options to control access permissions, track changes, and comment on specific design elements.
Furthermore, the Data Panel allows you to manage design revisions and versions. You can create new versions of your designs, compare different versions, and roll back to previous iterations if needed.
Overall, the Data Panel in Fusion 360 is a powerful tool that centralizes the management and organization of design data. It simplifies the workflow by providing easy access to files, collaboration features, and version control capabilities, making it a key component for working with and sharing Fusion 360 design data. So Option A is correct.
For more question on organize visit:
https://brainly.com/question/31612470
#SPJ8
i need help with the stalk holders project
Answer:
A project is successful when it achieves its objectives and meets or exceeds the expectations of the stakeholders. But who are the stakeholders? Stakeholders are individuals who either care about or have a vested interest in your project. They are the people who are actively involved with the work of the project or have something to either gain or lose as a result of the project. When you manage a project to add lanes to a highway, motorists are stakeholders who are positively affected. However, you negatively affect residents who live near the highway during your project (with construction noise) and after your project with far-reaching implications (increased traffic noise and pollution).
Explanation:
David is taking a test. To answer a question, he first covers up the answer choices. Next, he tries to answer the question. Then, he uncovers the answer choices, reads them, and excludes the answer choices that are clearly wrong. Finally, he selects the best answer. The strategy that David is using is best applied to which type of question? true/false short answer / essay matching multiple choice
Answer:
Multiple choice
Explanation:
I got 100 on the assignment
Answer:
D
Explanation:
Adult male heights are normally distributed with a mean of 70 inches and a standard deviation of 3 inches. The average basketball player is 79 inches tall. Approximately what percent of the adult male population is taller than the average basketball player? (2 points)
Answer:
16
Explanation:
Lossy compression means that when you compress the file, you're going to lose some of the detail.
True
False
Question 2
InDesign is the industry standard for editing photos.
True
False
Question 3
Serif fonts are great for print media, while sans serif fonts are best for digital media.
True
False
Question 4
You should avoid using elements of photography such as repetition or symmetry in your photography.
True
False
Lossy compression means that when you compress the file, you're going to lose some of the detail is a true statement.
2. InDesign is the industry standard for editing photos is a true statement.
3. Serif fonts are great for print media, while sans serif fonts are best for digital media is a true statement.
4. You should avoid using elements of photography such as repetition or symmetry in your photography is a false statement.
What lossy compression means?The term lossy compression is known to be done to a data in a file and it is one where the data of the file is removed and is not saved to its original form after it has undergone decompression.
Note that data here tends to be permanently deleted, which is the reason this method is said to be known as an irreversible compression method.
Therefore, Lossy compression means that when you compress the file, you're going to lose some of the detail is a true statement.
Learn more about File compression from
https://brainly.com/question/9158961
#SPJ1
what is the easiest way to migrate data from quickbooks desktop to quickbooks online?
The easiest way to migrate data from Quickbooks desktop to QuickBooks online is to Go to Company, then pick out Export Company File to QuickBooks Online. Select Start your export.
How lengthy does it take to emigrate from QuickBooks laptop to QuickBooks Online?Common Deciding Factors to transform QuickBooks laptop to on-line. If you seek thru QuickBooks boards and on-line communities, you'll discover humans bringing up that it takes the handiest 15-half-hour to transform documents from QuickBooks Desktop to Online. Then, there could be customers bringing up the time taken to be as much as 24 hours.
Go to Company, then pick out Export Company File to QuickBooks Online. Select Start your export. Sign in as an admin for your QuickBooks Online business enterprise. Select Choose on-line business enterprise, and pick the QuickBooks Online business enterprise you need to update together along with your business enterprise file.
Read more about the QuickBooks :
https://brainly.com/question/24441347
#SPJ1
What is one way a lender can collect on a debt when the borrower defaults?
Answer:
When a borrower defaults on a debt, the lender may have several options for collecting on the debt. One way a lender can collect on a debt when the borrower defaults is by suing the borrower in court. If the lender is successful in court, they may be able to obtain a judgment against the borrower, which allows them to garnish the borrower's wages or seize their assets in order to pay off the debt.
Another way a lender can collect on a debt when the borrower defaults is by using a debt collection agency. Debt collection agencies are companies that specialize in recovering unpaid debts on behalf of lenders or creditors. Debt collection agencies may use a variety of tactics to try to collect on a debt, including contacting the borrower by phone, mail, or email, or even suing the borrower in court.
Finally, a lender may also be able to collect on a debt when the borrower defaults by repossessing any collateral that was pledged as security for the debt. For example, if the borrower defaulted on a car loan, the lender may be able to repossess the car and sell it in order to recover the unpaid balance on the loan.
Explanation:
What is an operating system? Explain its major functions?
An operating system is a series of small parts that eventually come together and create a "Operating system".
For example, in the wild, there is a piece of land that contains multiple types of plants, animals and minerals. All of these factors come together a s create an "Ecosystem".
Another example could be a machine or mechanical system. All of the different parts come together to further operate.
Both examples show a type of Operating system that concludes in a functional group of parts that come together as one.
Hope this helps...
I need help please and thanks
Answer:
ok thx for points
Explanation:
How can we use variables to store information in our programs?
State three modules in HansaWorld and briefly describe what each is used for. (6)
2. With an example, explain what settings are used for. (3)
3. What is Personal Desktop and why is it good to use? Mention two ways in which an
entry can be deleted from the personal desktop. (6)
4. Describe how you invalidate a record in HansaWorld (3)
5. Briefly explain what specification, paste special and report windows are used for. (6)
6. How many reports can you have on the screen at once? How many reports does
HansaWorld have? (4)
7. Describe any two views of the Calendar and how you can open them (4)
8. Describe three (3) ways in which records can be attached to Mails. (6)
9. Describe the basic SALES PROCESS where there is no stock involved and how the
same is implemented in HansaWorld. (12)
1. We can see here that the three modules in HansaWorld and their brief descriptions:
AccountingInventoryCRM2. We can deduce that settings are actually used in HansaWorld for used for configuring the system to meet specific business requirements.
What is HansaWorld?It is important for us to understand what HansaWorld is all about. We can see here that HansaWorld is actually known to be an enterprise resource planning (ERP) system that provides integrated software solutions for businesses.
3. Personal Desktop is actually known to be a feature in HansaWorld. It allows users to create a personalized workspace within the system.
It can help users to increase their productivity and efficiency.
4. To actually invalidate a record in HansaWorld, there steps to take.
5. We can deduce here that specification, paste special and report windows help users to actually manage data and generate report.
6. There are factors that play in in determining the amount of reports generated.
7. The Calendar on HansaWorld is used to view upcoming events. There is the Day View and there is the Month View.
8. We can see that in attaching records, HansaWorld allows you to:
Drag and drop.Insert linkUse the Mail Merge FunctionLearn more about report on https://brainly.com/question/26177190
#SPJ1
Write a program that, given a file name typed by the user, reads the content of the file and determines the highest salary, lowest salary and average salary. The file contains employee records, and each record consists of the hours worked and the hourly rate. The salary is calculated as the product of the hours worked and the hourly rate.
An example of file containing three records is as follows:
10.5 25.0
40.0 30.0
30.9 26.5
Using the pandas packge in python, the program which performs the required calculation goes thus :
file_name = input()
#user types the filename
df = pd.read_csv(file_name, names=['hours_worked', 'rate']
#file is read into a pandas dataframe
df['salary'] = df['hours_worked'] * df['rate']
#salary column is created using the product of rate and hours worked
highest_salary = df['salary'].max()
#the max method returns the maximum value of a series
print('highest_salary)
lowest_salary = df['salary'].min()
#the min method returns the minimum value of a series
print('lowest_salary)
avg_salary = df['salary'].mean()
#the mean method returns the average value of a series
print('avg_salary)
Learn more : https://brainly.com/question/25677416
https://www.celonis.com/solutions/celonis-snap
Using this link
To do this alternative assignment in lieu of Case 2, Part 2, answer the 20 questions below. You
will see on the left side of the screen a menu for Process Analytics. Select no. 5, which is Order
to Cash and click on the USD version. This file is very similar to the one that is used for the BWF
transactions in Case 2, Part 2.
Once you are viewing the process analysis for Order to Cash, answer the following questions:
1. What is the number of overall cases?
2. What is the net order value?
Next, in the file, go to the bottom middle where you see Variants and hit the + and see what it
does to the right under the detail of variants. Keep hitting the + until you see where more than a
majority of the variants (deviations) are explained or where there is a big drop off from the last
variant to the next that explains the deviations.
3. What is the number of variants you selected?
4. What percentage of the deviations are explained at that number of variants, and why did you
pick that number of variants?
5. What are the specific variants you selected? Hint: As you expand the variants, you will see on
the flowchart/graph details on the variants.
6. For each variant, specify what is the percentage of cases and number of cases covered by that
variant? For example: If you selected two variants, you should show the information for each
variant separately. If two were your choice, then the two added together should add up to the
percentage you provided in question 4 and the number you provided in question 3.
7. For each variant, how does that change the duration? For example for the cases impacted by
variant 1, should show a duration in days, then a separate duration in days for cases impacted
by variant 2.
At the bottom of the screen, you see tabs such as Process, Overview, Automation, Rework, Benchmark,
Details, Conformance, Process AI, Social Graph, and Social PI. On the Overview tab, answer the
following questions:
8. In what month was the largest number of sales/highest dollar volume?
9. What was the number of sales items and the dollar volume?
10. Which distribution channel has the highest sales and what is the amount of sales?
11. Which distribution channel has the second highest sales and what is the amount of sales?
Next move to the Automation tab and answer the following questions:
12. What is the second highest month of sales order?
13. What is the automation rate for that month?
Nest move to the Details tab and answer the following questions:
14. What is the net order for Skin Care, V1, Plant W24?
15. What is the net order for Fruits, VV2, Plant WW10?
Next move to the Process AI tab and answer the following questions:
16. What is the number of the most Common Path’s KPI?
17. What is the average days of the most Common Path’s KPI?
18. What other information can you get off this tab?
Next move to the Social Graph and answer the following questions:
19. Whose name do you see appear on the graph first?
20. What are the number of cases routed to him at the Process Start?
1. The number of overall cases are 53,761 cases.
2. The net order value of USD 1,390,121,425.00.
3. The number of variants selected is 7.4.
4. Seven variants were selected because it provides enough information to explain the majority of the deviations.
5. Seven variants explain 87.3% of the total variance, including order, delivery, credit limit, material availability, order release, goods issue, and invoice verification.
10. January recorded the highest sales volume, with 256,384 items sold for USD 6,607,088.00. Wholesale emerged as the top distribution channel, followed by Retail.
12. December stood out as the second-highest sales month,
13. with an automation rate of 99.9%.
14. Notable orders include Skin Care, V1, Plant W24 (USD 45,000.00) and
15. Fruits, VV2, Plant WW10 (USD 43,935.00).
17. The most common path had a KPI of 4, averaging 1.8 days.
18. This data enables process analysis and improvement, including process discovery, conformance, and enhancement.
19. The Social Graph shows Bob as the first name,
20. receiving 11,106 cases at the Process Start.
1. The total number of cases is 53,761.2. The net order value is USD 1,390,121,425.00.3. The number of variants selected is 7.4. The percentage of the total variance explained at 7 is 87.3%. Seven variants were selected because it provides enough information to explain the majority of the deviations.
5. The seven specific variants that were selected are: Order, Delivery and Invoice, Check credit limit, Check material availability, Order release, Goods issue, and Invoice verification.6. Below is a table showing the percentage of cases and number of cases covered by each variant:VariantPercentage of casesNumber of casesOrder57.2%30,775Delivery and Invoice23.4%12,591Check credit limit5.1%2,757
Check material availability4.2%2,240Order release4.0%2,126Goods issue2.4%1,276Invoice verification1.7%9047. The duration of each variant is as follows:VariantDuration in daysOrder24Delivery and Invoice3Check credit limit2Check material availability1Order release2Goods issue4Invoice verification1
8. The largest number of sales/highest dollar volume was in January.9. The number of sales items was 256,384, and the dollar volume was USD 6,607,088.00.10. The distribution channel with the highest sales is Wholesale and the amount of sales is USD 3,819,864.00.
11. The distribution channel with the second-highest sales is Retail and the amount of sales is USD 2,167,992.00.12. The second-highest month of sales order is December.13. The automation rate for that month is 99.9%.14. The net order for Skin Care, V1, Plant W24 is USD 45,000.00.15.
The net order for Fruits, VV2, Plant WW10 is USD 43,935.00.16. The number of the most common path’s KPI is 4.17. The average days of the most common path’s KPI is 1.8 days.18. Additional information that can be obtained from this tab includes process discovery, process conformance, and process enhancement.
19. The first name that appears on the Social Graph is Bob.20. The number of cases routed to Bob at the Process Start is 11,106.
For more such questions deviations,Click on
https://brainly.com/question/24251046
#SPJ8
You would like the cell reference in a formula to remain the same when you copy
it from cell A9 to cell B9. This is called a/an _______ cell reference.
a) absolute
b) active
c) mixed
d) relative
Answer:
The answer is:
A) Absolute cell reference
Explanation:
An absolute cell reference is used in Excel when you want to keep a specific cell reference constant in a formula, regardless of where the formula is copied. Absolute cell references in a formula are identified by the dollar sign ($) before the column letter and row number.
Hope this helped you!! Have a good day/night!!
Answer:
A is the right option absoluteThe OSHA Publication
explains 8 rights that
workers have under the
OSH Act.
The OSHA Publication explains 8 rights that workers have under the OSH Act is known to be Workers' Rights - OSHA.
What is Workers' Rights - OSHA?This is known to be the making of the Occupational Safety and Health Administration (OSHA) and it is one that was said to be done in 1970
This is one that tends to provide all workers with their right to be in a safe and healthful work environment.
Hence, The OSHA Publication explains 8 rights that workers have under the OSH Act is known to be Workers' Rights - OSHA.
Learn more about OSHA Publication from
https://brainly.com/question/13708970
#SPJ1
what are the earliest invention in human history
Answer: Tools, Boats, Hand made bricks.
Explanation: The tools were the first technological advancement, the boats were the next, them hand made bricks for construction.
Sheet tabs can be renamed by____
on them.
pointing
triple-clicking
single-clicking
double-clicking
Answer:
The answer is D) Double-Clicking
Explanation:
The question is a Microsoft Office Excel Question.
A sheet is also called a worksheet in Microsoft Office Excel. A sheet is a single page that holds its own collection of cells with which one can organize their data.
Sheets in Microsoft Office Excel spreadsheet can run into hundreds and hundreds and is usually visible a the bottom of the excel page as tabs.
By default, the tabs or sheets are named starting from the first as Sheet 1, Sheet 2, Sheet 3...etc.
By double-clicking on the tab, one is able to change the default name to any custom name the user choses.
Cheers!
Answer:
D. Double-clicking on them