An employee believes there is an imminent danger situation at her workplace. She contacts OSHA to report the safety hazard. Her employer finds out that she has reported the issue and threatens to fire her. Which of these is a correct statement about the situation?

Answers

Answer 1

Answer:

Here's all I know

Explanation:

OSHA stands for the Occupational Safety and Health Administration, an agency of the U.S. Department of Labor. OSHA's responsibility is worker safety and health protection. The U.S. Congress created OSHA under the Occupational Safety and Health Act of 1970 (the OSH Act). Congress passed the law and established OSHA "to assure so far as possible every working man and woman in the nation safe and healthful working conditions and to preserve our human resources.

OSHA began because, until 1970, there were no national laws for safety and health hazards.


Related Questions

Help me! I'm timed!!!

Help me! I'm timed!!!

Answers

can I just get points pls lol
i really fell for it lol

60 POINTS IF YOU GET IT RIGHT
PLEASE HELP ASAP!!!!!!!!
I already did the trials, and I found the loudest sound.
I will ask another question that includes the rest of the screen shots.

60 POINTS IF YOU GET IT RIGHTPLEASE HELP ASAP!!!!!!!!I already did the trials, and I found the loudest
60 POINTS IF YOU GET IT RIGHTPLEASE HELP ASAP!!!!!!!!I already did the trials, and I found the loudest
60 POINTS IF YOU GET IT RIGHTPLEASE HELP ASAP!!!!!!!!I already did the trials, and I found the loudest
60 POINTS IF YOU GET IT RIGHTPLEASE HELP ASAP!!!!!!!!I already did the trials, and I found the loudest
60 POINTS IF YOU GET IT RIGHTPLEASE HELP ASAP!!!!!!!!I already did the trials, and I found the loudest

Answers

Answer:

You said this was 60 points but it is only 30 points :(

Explanation:

Can you explain a little more , so I can help you better ?

PLEASE HELP!!! What is one game you think would be hard for computers to play? (AI)

Answers

Answer:

I would say the game "Go" because it requires intuition to play.

Explanation:

Answer:

I dont play much games but probaly a game you need to think outside of the box for

Explanation:

robots arent creative

Write a small program that takes in two numbers from the user. Using an if statement and an else statement, compare them and tell the user which is the bigger number. Also, consider what to output if the numbers are the same.

Test your program in REPL.it, and then copy it to your Coding Log.

(If you’re up for an extra challenge, try extending the program to accept three numbers and find the biggest number!)

And only give me a good answer not some random letters plz. ty

Answers

Answer:

4. Conditionals

4.1. The modulus operator

The modulus operator works on integers (and integer expressions) and yields the remainder when the first operand is divided by the second. In Python, the modulus operator is a percent sign (%). The syntax is the same as for other operators:

>>> quotient = 7 / 3

>>> print quotient

2

>>> remainder = 7 % 3

>>> print remainder

1

So 7 divided by 3 is 2 with 1 left over.

The modulus operator turns out to be surprisingly useful. For example, you can check whether one number is divisible by another—if x % y is zero, then x is divisible by y.

Also, you can extract the right-most digit or digits from a number. For example, x % 10 yields the right-most digit of x (in base 10). Similarly x % 100 yields the last two digits.

4.2. Boolean values and expressions

The Python type for storing true and false values is called bool, named after the British mathematician, George Boole. George Boole created Boolean algebra, which is the basis of all modern computer arithmetic.

There are only two boolean values: True and False. Capitalization is important, since true and false are not boolean values.

>>> type(True)

<type 'bool'>

>>> type(true)

Traceback (most recent call last):

 File "<stdin>", line 1, in <module>

NameError: name 'true' is not defined

A boolean expression is an expression that evaluates to a boolean value. The operator == compares two values and produces a boolean value:

>>> 5 == 5

True

>>> 5 == 6

False

In the first statement, the two operands are equal, so the expression evaluates to True; in the second statement, 5 is not equal to 6, so we get False.

The == operator is one of the comparison operators; the others are:

x != y               # x is not equal to y

x > y                # x is greater than y

x < y                # x is less than y

x >= y               # x is greater than or equal to y

x <= y               # x is less than or equal to y

Although these operations are probably familiar to you, the Python symbols are different from the mathematical symbols. A common error is to use a single equal sign (=) instead of a double equal sign (==). Remember that = is an assignment operator and == is a comparison operator. Also, there is no such thing as =< or =>.

4.3. Logical operators

There are three logical operators: and, or, and not. The semantics (meaning) of these operators is similar to their meaning in English. For example, x > 0 and x < 10 is true only if x is greater than 0 and less than 10.

n % 2 == 0 or n % 3 == 0 is true if either of the conditions is true, that is, if the number is divisible by 2 or 3.

Finally, the not operator negates a boolean expression, so not(x > y) is true if (x > y) is false, that is, if x is less than or equal to y.

4.4. Conditional execution

In order to write useful programs, we almost always need the ability to check conditions and change the behavior of the program accordingly. Conditional statements give us this ability. The simplest form is the ** if statement**:

if x > 0:

   print "x is positive"

The boolean expression after the if statement is called the condition. If it is true, then the indented statement gets executed. If not, nothing happens.

The syntax for an if statement looks like this:

if BOOLEAN EXPRESSION:

   STATEMENTS

As with the function definition from last chapter and other compound statements, the if statement consists of a header and a body. The header begins with the keyword if followed by a boolean expression and ends with a colon (:).

The indented statements that follow are called a block. The first unindented statement marks the end of the block. A statement block inside a compound statement is called the body of the statement.

Each of the statements inside the body are executed in order if the boolean expression evaluates to True. The entire block is skipped if the boolean expression evaluates to False.

There is no limit on the number of statements that can appear in the body of an if statement, but there has to be at least one. Occasionally, it is useful to have a body with no statements (usually as a place keeper for code you haven’t written yet). In that case, you can use the pass statement, which does nothing.

if True:          # This is always true

   pass          # so this is always executed, but it does nothing

Pls answer will give brainlest dont answer if you dont know
Upload your 300-word essay containing the following: the definition of methane an explanation of how it is produced a description of how methane can be used as an energy source an explanation of how farmers are using methane from farm animals as an energy source a specific example of an actual farm where this system is being used

Answers

The main source of agricultural methane is a process called enteric fermentation, a normal part of digestion in ruminant animals such as cows, sheep, goats, buffaloes and camels. Ruminants have a compartment in their stomach called a rumen where food is broken down through fermentation. This process produces methane gas, which the animals then belch out into the atmosphere. Enteric fermentation accounts for 18 percent of all anthropogenic methane emissions.

If enteric fermentation is a natural part of ruminant digestion, then what’s the solution? One strategy is to adjust the feed mix. The harder a food is to digest, the more time it spends in the rumen and the more methane that is produced. Some supplements can help as well. A recent study in Wales found that garlic may cut methane emissions.

The other major source of methane from farm animals is manure – particularly when stored in uncovered tanks or lagoons. Cow paddies sprinkled across a field of grass are exposed to the air where they quickly dry out. In tanks and lagoons (used because feedlots contain so many animals), lack of oxygen increases the amount of methane that’s emitted.

One way to handle the problem is through anaerobic digestion of manure stored in closed vessels. The captured methane can be used to generate heat and electricity. The 7,000+ dairy and swine operations in the U.S. could generate enough electricity to power nearly 600,000 homes annually, preventing the release of 1.3 million tons of methane into the atmosphere (see EPA report [PDF]). As an added benefit, the digested manure can be used as a fertilizer. (Raw manure also is used as fertilizer, but has a much stronger odor.) Since producing synthetic fertilizer burns a lot of fossil fuel energy, fertilizing with manure is a way to reduce greenhouse gas emissions as well as save money.


Don’t know how many words... plz give me brainiest

Methane is often written as  (CH4). It is known to be a part of the  hydrocarbon family.

What is a methane known for?

Methane is known to be a type of natural gas that is said to be odorless, and flammable in nature. It is used in the making of  fuel.

Conclusively, it is known to be a a primary aspect of natural gas and it  is also a greenhouse gas. Methane is said to be often emitted from a lot of of human-affected substance and natural sources.

Learn more about methane  from

https://brainly.com/question/25649765

Which of the following statements can be used as evidence that ancient Greek beliefs and art has been influential? Select the three correct answers. A. The Metropolitan Museum of Art in Modern in New York City contains many abstract paintings. B. We read fables as children to learn moral lessons. C. Today sculptors and painters avoid realism in their art. D. The columns of the Lincoln Memorial in Washington D.C. provide balance and harmony. E. Comedies and dramas are popular types of theater on Broadway.

Fist one will mark brainlyest

Answers

Answer:

A, B, D

Explanation:

I'm gonna go with these few answers because, well I'm not an expert with this stuff but the Metroplian Museum of Art has the Greek Design on the walls. And B, children are required in school to read such things for this reason. And D, seams like the correct answer for this better than the other ones.

Hope I helped you out, Reza106157

Answer:

B

Explanation:

When the prompt function is used in JavaScript, _____ appears.

A.
an error message

B.
a pop-up box

C.
a data warning

D.
a password request

Answers

Answer:

B

Explanation:

instructs the browser to display a dialog with an optional message prompting the user to input some text, and to wait until the user either submits the text or cancels the dialog

A pop up box to let you know the Java script is there and active

Which of the following BEST describes when an animator creates a representation of a 3D object in lines and points?


Which of the following BEST describes when an animator creates a representation of a 3D object in lines and points?

wire-frame model
kinetic model
motion graphic
infographic

Answers

A. Wire-frame model
The answer is A. I'm am sure it's A.

what are some basic commands to remember in terminal? windows 10

please help if you know

Answers

Answer:

If you just need a few, maybe this can help.

Explanation:

Cat - The cat command means 'Concatenate'. It prints the contents of a file or files to stdout. It's frequently used in Linux commands.

Touch - Using the 'Touch' command, you can create a file, or possibly just modify or generate a timestamp.

Move - The 'mv' command stands for 'Move'. As the name says, we can use this command to move files and directories from one place to another.

Chsh - The chsh command changes a user's login shell attribute. If you want to change the shell of another user, execute the command with root permissions.

Sudo - 'Sudo', or 'super user do', is a command that allows you to elevate your user privileges while executing the command to administrator privileges.

1.Assoc

Most files in Windows are associated with a specific program that is assigned to open the file by default. At times, remembering these associations can become confusing. You can remind yourself by entering the command assoc to display a full list of filename extensions and program associations. You can also extend the command to change file associations. For example, assoc .txt= will change the file association for text files to whatever program you enter after the equal sign. The assoc command itself will reveal both the extension names and program names, which will help you properly use this command.

In Windows 10, you can view a more user-friendly interface that also lets you change file type associations on the spot. Head to Settings (Windows + I) > Apps > Default apps > Choose default app by file type

2.Cipher

Deleting files on a mechanical hard drive doesn't really delete them at all. Instead, it marks the files as no longer accessible and the space they took up as free. The files remain recoverable until the system overwrites them with new data, which can take some time. The cipher command, however, lets you wipe a directory on an NTFS-formatted volume by writing random data to it. To wipe your C drive, for example, you'd use the cipher /w:d command, which will wipe free space on the drive. The command does not overwrite undeleted data, so you will not wipe out the files you need by running this command.

When you run the cipher command by itself, it returns the encryption state of the current directory and the files it contains. Use cipher /e: to encrypt a file, cipher /c: to retrieve information about encrypted files, and cipher /d: to decrypt the selected file. Most of these commands are redundant with the Windows encryption tool BitLocker.

3.file Compare

You can use this command to identify differences in text between two files. It's particularly useful for writers and programmers trying to find small changes between two versions of a file. Simply type fc and then the directory path and file name of the two files you want to compare.

You can also extend the command in several ways. Typing /b compares only binary output, /c disregards the case of text in the comparison, and /l only compares ASCII text.

So, for example, you could use the following:

fc /l "C:\Program Files (x86)
The above command compares ASCII text in two Word documents.

4.Ipconfig

This command relays the IP address that your computer is currently using. However, if you're behind a router (like most computers today), you'll instead receive the local network address of the router.

Still, ipconfig is useful because of its extensions. ipconfig /release followed by ipconfig /renew can force your Windows PC into asking for a new IP address, which is useful if your computer claims one isn't available. You can also use ipconfig /flushdns to refresh your DNS address. These commands are great if the Windows network troubleshooter chokes, which does happen on occasion.

5.Netstat

Entering the command netstat -an will provide you with a list of currently open ports and related IP addresses. This command will also tell you what state the port is in; listening, established, or closed.

This is a great command for when you're trying to troubleshoot devices connected to your PC or when you fear a Trojan infected your system and you're trying to locate a malicious connection.

6.Ping

Sometimes, you need to know whether or not packets are making it to a specific networked device. That's where ping comes in handy.

Typing ping followed by an IP address or web domain will send a series of test packets to the specified address. If they arrive and are returned, you know the device is capable of communicating with your PC; if it fails, you know that there's something blocking communication between the device and your computer. This can help you decide if the root of the issue is an improper configuration or a failure of network hardware.

7.PathPing

This is a more advanced version of ping that's useful if there are multiple routers between your PC and the device you're testing. Like ping, you use this command by typing pathping followed by the IP address, but unlike ping, pathping also relays some information about the route the test packets take.

List the different computer industries, and what they do.
(Like the part makers, people who assemble it and stuff not the companies)

Answers

Answer:

There are several different industries that are involved in the production and use of computers. These industries include:

Hardware manufacturers: These companies design and produce the physical components of computers, such as the motherboard, processor, memory, storage, and other peripherals.Software developers: These companies create the operating systems, applications, and other programs that run on computers.System integrators: These companies assemble and configure computers, often using components from multiple manufacturers, and sell them to consumers or businesses.Service providers: These companies provide support and maintenance services for computers, including repair, installation, and training.Data centers: These companies operate large facilities that host and manage the data and computing resources of other companies.Internet service providers: These companies provide access to the internet for businesses and consumers.Cloud computing providers: These companies offer computing services, such as storage, networking, and software, over the internet.Consulting firms: These companies provide advice and expertise on the use of computers and technology for business and organizational goals.

Answer:

Hardware Manufacturers

Software Developers

System Integrators

Service Providers

Data Providers

ISP

Cloud Computing Providers

Consulting Firms

Explanation:

It is in order..

Which is the best approach to debugging?

A.
Don’t worry about it at all until after the program is written.

B.
Be sure the program will work perfectly before writing it.

C.
Anticipate errors before they happen, and find and fix errors that happen.

D.
Use an HTML encoder.

Answers

C this makes the most sense
C sounds like the best approach.

Dell XPS 15 or MacBook pro 13?​

Answers

Answer:

MacBook Pro 13

Explanation:

Mostly cause of the brand.

And also I have a MacBook pro

Answer:

I think I would pick a MacBook Pro 13

Explanation:

The reason why is because personally I like apple products alot and Im not saying that Dell products are bad but I think apple products are just better. Also they do look the same but its really up to you to decide which brand you like better. If  you had more experince with one brand you might want to stick with it or if you have experinced with both brands you should decide which you liked better.

hellpppppppppppppppp

hellpppppppppppppppp

Answers

Answer:

They can photograph from a safe area away from risks, and close to something they can escape to if something happens.

They can also put their printed photos into a plastic protective bag or case so that they won't be ruined.

maybe if the camera or whatever you were photographing with gets lost or destroyed, you should have the photo files backed up so that you can recover them.

Mark brainliest.

Answer:

I'm answering #2

Explanation:

Hector could have kept some distance from the water tank so he could ensure that he didn't accidently fall in

HELP ME?!!?!?!?!?!?
This is for BIM class and its due before 11:59 central time <333
24. Which of the following areas in the PivotTable Field List task pane should you place numerical values to be summarized?
A. FILTERS
B. VALUES
C. ROWS
D. COLUMNS

25. Brian wants to apply a different chart style to his PivotChart. Which of the following PivotChart Tools tabs should be used?
A. Analyze
B. Format
C. Styles
D. Design

Answers

24 is rows, 25 is styles
trust me the answer is B

Why is failure an important part of life and the engineering design process?

Answers

Answer:

Failure is something everyone goes through. In life, we experince failure in sports, school, hobbies, etc., but we learn from our mistakes. We learn to not repeat them again to have a better outcome. It's the same thing for the engineering design process. You try something, you fail, and try again. It's the process in most everything. In the engineering design process you fail, but you don't make the same mistakes again. Failure is apart of life, but it is there to force us to learn from our mistakes, and make it better.

Explanation:

Answer:

Failure is something everyone goes through. In life, we experince failure in sports, school, hobbies, etc., but we learn from our mistakes. We learn to not repeat them again to have a better outcome. It's the same thing for the engineering design process. You try something, you fail, and try again. It's the process in most everything. In the engineering design process you fail, but you don't make the same mistakes again. Failure is apart of life, but it is there to force us to learn from our mistakes, and make it better.

Explanation:

Explanation:

is it ok if your mom yells at you all the time for no reason

Answers

Answer:

well, I want to say know, but if they are anything like my mother, then they build up stress from everything in the world right now and they need to vent, which they sadly nitpick every little mistake and might take it out on their children. so don't feel bad, they are most likely stressed about something.

kleann

no it’s not. it’s unfair on your end

If I want to Save a file, what Menu do I go to? Question 1 options: Help View Insert Home

Answers

Answer:

ANS:- crtl s

Explanation:

crtl s is use to save a file in computer

Answer:

To save a file, you can click the Save icon in the top-left corner, click File>Save , or use the shortcut Ctrl+S (Command+S for Macs). Click the save icon (above) or File>New (below).

Why isn't my brainly post being answered?

Answers

Try deleting then reposting, it may not always pop up in new questions, I will have a look at the question anyway.

Sometimes they don’t pop up on the feed try reposting again or possibly updating the app if you can. Or it may be an issue within the question itself like if it is worded correctly.
Hope this helps!

Hello. My Samsung tablet glitches and now its just a black screen. I've tried turning it on and off and holding down the power button but it just won't come on! Please help!

Answers

Answer:

press the volume up and down button while holding the power button, hold all three buttons til it turn on.

Explanation:

so this kinda gives the device like a reset/restart and or like it's refreshing itself!

Answer:

I tryed the 1st answer and it worked so give him brainliest.

Explanation:

Tests, fixes, and maintains network systems:

Tests, fixes, and maintains network systems:

Answers

Its the last one to be exact

On the planet Mongo, each year has 15 months and each month has 26 days.
Write a function compute_mongo_age(birthYear, birthMonth, birthDay, currentYear, currentMonth, currentDay)
that residents of Mongo can use to compute their age. It should take 6 positive integers as input: the person's birthdate (year, month from 1 to 15, and day from 1 to 26) and the current date (year, month from 1 to 15, and day from 1 to 26), and return a float of the age of the person in years.

For example, print(compute_mongo_age(2879,8,11,2892,2,21)) should print 12.6256410256, the age (in Mongo years) of a person, who was born on the 11th day of the 8th month of the year 2879, is on the 21st day of the 2nd month of the year 2892.

Answers

Answer:

DateTime now = DateTime.Today;

int age = now.Year - bday.Year;

if (now < bday.AddYears(age))

age--;

So your helper method would look like:

public static string Age(this HtmlHelper helper, DateTime birthday)

{

DateTime now = DateTime.Today;

int age = now.Year - birthday.Year;

if (now < birthday.AddYears(age))

age--;

please describe the role of games in modern society!

Answers

It is to Entertainment.
it’s for entertainment but some can teach you something

(I made this up teehee) what anime is katski bakugo from

Answers

Scooby do because that is the best shower ever
MHA (My Hero Academia) or Boku no hero academia

Create pseudocode to compute the volume of a sphere. Use the formula: V= (4/3)* π r3 where π is equal to 3.1416 approximately, where r is the radius. Display the result.

HELP PLZ

Answers

Answer:

In geometry, the area enclosed by a circle of radius r is πr2. Here the Greek letter π represents a constant, approximately equal to 3.14159, which is equal to the ratio of the circumference of any circle to its diameter.

Explanation:

Pseudocodes are simply false codes that are used as program prototype or models

The pseudocode

The pseudocodes to compute the sphere volume is as follows:

StartInput rCalculate Volume, V = (4/3) * 3.1416 * r^3Display Volume VStop

Read more about pseudocode at:

https://brainly.com/question/24953880

#SPJ9

what is 8 4/7 divided by 15

Answers

84/7 divided by 15 is 0.8

Answer: 4/7

Explanation:

8 4/7 ÷ 15

60/7× 1/15

=4/7

ok so...you first are going to convert the mix fraction 8 4/7 to improper fraction by multiplying the denominator and the whole number which is 56 then add the numerator 56 +4= 60 and put back the denominator which is going to be 60/7.

Then flip the fraction or the whole number 15 which is also 15/1 that is on the right which is going to be 1/15 and change the division sign to multiplication which is going to be 60/7 × 1/15.

then you can cancel, 15 go into 60, 4 times, so you are going to multiply 4 times 1 and 7 times one, which gives you 4/7.

I hope this help you to understand

Walt needs to ensure that messages from a colleague in another organization are never incorrectly identified as spam. What should he do?

A.Configure a safe recipient.
B.Configure a blocked sender.
C.Configure a safe sender.
D.Do nothing.

Answers

Answer:

C. Configure a safe sender

Explanation:

It’s dabest thing to do

As per the given scenario, Walt should need to configure a safe sender. The correct option is C.

What is configuration?

A system's configuration in communications or computer systems refers to how each of its functional elements is organised in relation to their nature, number, and distinguishing features.

Configuration frequently involves picking the right hardware, software, firmware, and documentation.

A person, group, or organisation that starts the communication is known as the sender. The success of the message stems primarily from this source.

The communication is influenced by the sender's experiences, attitudes, knowledge, competence, perspectives, and culture.

Walt must take care to prevent messages from a colleague in a different organisation from ever being mistakenly classified as spam. He ought to set up a secure sender.

Thus the correct option is C.

For more details regarding configuration, visit:

https://brainly.com/question/13410673

#SPJ2

Q: Philip wants to be an architectural drafter, but he does not like working on computers. He prefers drafting by hand. Based on this lesson, what would be the best advice you could give Philip?

A. Become a drafter, and work by hand as part of a cultural project.

B. Learn the computer drafting programs. Computers are always going to be a part of your life

C. Become a drafter, and keep working by hand. Some people will always prefer “old-school” methods.

D. Find a different job for which you can use hand drafting skills, because they are not competitive in the drafting occupation.

PLEEZE I REALLY NEED THE RIGHT ANSWER! WORTH 20 POINTS AND WILL GIVE BRAINLIEST!

Answers

The answer is b I took the test
C I just took the test so I know the answer

explain the history of computing of mechanical era

Answers

Answer:The Mechanical Era

Created a machine that could add and subtract numbers. Dials were used to enter the numbers. ... Designed a machine called the Analytical Engine. The design had all the basic components of a modern day computer. In addition, it was designed to be programmable using punched cards.

Explanation:Hope this helped

1. Why is it important to know how to create a slide?

2. How can you utilize the knowledge in making a slide as a student?​

in own sentence pls

Answers

1. Knowing how to create a slide is important because it is a useful tool for organizing and presenting information in a visual and engaging way, which can help to enhance communication and understanding.

2. As a student, knowing how to create a slide can be beneficial for presenting research findings, summarizing key information, and organizing study materials in a clear and visually appealing way to aid in the learning process.

Answer:

1. Because slides help in improving visual aids. It improves understanding when teaching student.

2. You can make projects, shows, teach others, and play with it just for fun

Explanation:

Which of the following scenarios falls into the category of network crimes?
A) listening in on someone’s private online conversation
B) stealing classified information from someone’s computer account
C) knowingly sending an email with malware
D) sending a hurtful message to a friend

Answers

Answer:

B

Explanation:

Hope it helps!

The options A, B, and C fall into the category of network crimes.

A) listening in on someone’s private online conversation

B) stealing classified information from someone’s computer account

C) knowingly sending an email with malware

The category of network crimes?

A) When you secretly listen to someone's private online conversation, it is called eavesdropping or unauthorized interception of communication. This is considered a type of cybercrime. It is against the law in many places to listen to private conversations without permission.

B) Taking secret information from someone's computer account: This is a very serious crime called "hacking" or "sneaking into computer systems without permission. " Going into someone's computer account without permission to take important or secret information is against the law.

Read more about network crimes here:

https://brainly.com/question/31589991

#SPJ3

Other Questions
Find profit percentage when S.P. of the article is Rs. 560 and C.P. is Rs. 500,with process what is the purpose of atomic emission analysis on khp and kcl Eve write (1.2x10^5)divided by (3x10^2) Using practical illustrations in politics, religion, medicine and law, explain why a value judgement, unlike a factual statement, will have no objective truth. Think of a company or social campaign that has caught your attention and assess it by using the 4 Ps of marketing (product, place, price, and promotion). Pick a product, service, or issue for which you might develop a marketing campaign. What are the first issues you need to address according to the fundamental rules of marketing? Beyond the topics covered in this unit, what would you suggest are other issues marketers should keep in mind in the twenty-first century marketplace as they launch a campaign? Kathys equity portfolio invested 55% in the Technology sector, 32% in the Mining & Resources sector, and 13% in the Consumer Staples industry, such as businesses selling food and groceries, etc. The stock market has experienced a boom for the past several months; however, recent economic data suggests that the economy is slowing down, and it may head towards a recession within a year. Kathy asked you for investment advice.Using your knowledge of sector rotation strategies, will you advise Kathy to change her current portfolio holdings? Why or why not? Briefly discuss your answer with justifications.Suggest two sectors in which Kathy may invest to get better returns in the forecasted economic condition. Explain your answers with justifications. Is 3 a factor of 19 yes or no? Which of the following questions could be answered with some kind ofdistribution map?Check all that apply.A. What are the average air temperatures?B. Where have certain illnesses or diseases appeared?UC. How many people have been treated for cancer?I D. Where have crimes been committed?SUBMIT Name the group of freshwater lakes along the border of Canada and the United States.A. The Great Salt LakesB. The Great LakesC. The Glacial LakesD. The Finger Lakes I have a rock that has around 27 million atoms of Argon-40 to every 9 million atoms of Potassium-40, how old is the rock? Amanda works as a babysitter. The table shows the total amount Amanda earns per week and the number of hours she babysits in those weeks. Complete the table and the equation.Total Hours (x) Total Earnings (y)20 1802522527 24330 27033 This equation relates Amandas weekly earnings and the total number of hours she babysits.total earnings per week (y) = y=9x total number of hours (x)Just need help on one what goes under 270 I need help with questions two and three I do not understand them at all In 2018, U.S. President Donald Trump argued that his country's trade agreements with other countries were bad for the United States and were unfairly benefiting America's trading partners. What does the theory of the gains from trade have to say about such arguments? In general, the basic theory of the gains from trade O A. suggests that free international trade leads increased consumption possibilities for all countries involved (as long as there are differences in opportunity costs). Free trade cannot be bad for the United States in terms of decreasing American production or consumption possibilities, although the basic theory does not have anything to say about the fairness of how the gains from trade are distributed between or within the countries. OB. guarantees that in comparison to autarky, two countries that trade freely will experience equal gains in consumption possibilities (as long as there are differences in opportunity costs). Free trade cannot be bad for the United States in terms of decreasing American production or consumption possibilities, and it is impossible for free trade to deliver any unfair benefit to any trading partner. O C. suggests that in comparison to autarky, free trade between two countries can lead to decreased production for the country that lacks an absolute advantage. Free trade can be bad for the United States and unfairly benefit its trading partners if its trading partners have an absolute advantage in the goods that the United States currently produces the most of OD suggests that in comparison to autarky, free trade between two countries can lead to decreased production for the country that lacks a comparative advantage. Free trade can be bad for the United States and unfairly benefit its trading partners if its trading partners have a comparative advantage in the goods that the United States currently produces the most of. How does Bystricky use his own personal experiences as a social studies teacher to refute a counterclaim and support his position? How was his argument strengthened or weakened by the inclusion of his own experiences? a decline in money supply will lead to an ____ if norminal wage are rigid 7 divided by 128 showing work PLS HELP ASAP NO LINKSWhat type of scientist studies matter and its composition?BiologistChemistPhysicistEngineer Develop a Claim AssessmentThe foundation of any solid argument centers around its claim and the reasons that support it. In this assessment, you'll create your claim and list the reasons for your claim based on one of the following prompts:Prompt #1: Julius Caesar Prompt #2: "The Minister's Black Veil" Prompt #3: "Seven Floors"Many scholars feel that Shakespeare wrote Julius Caesar as a warning about what would happen if Elizabethan England were to engage in a Civil War. Choose three literary elements in this tragedy that you find to be the most effective in achieving this purpose and provide textual evidence to defend your choices. Many scholars feel that Hawthorne wrote "The Minister's Black Veil" as an allegory for the flaws and secrets all humans choose to hide. Choose three literary elements in this short story that you find to be the most effective in achieving this purpose and provide textual evidence to defend your choices. Many scholars feel that Buzzati wrote "Seven Floors" as an allegory for the progression of life and the acceptance of aging. Choose three literary elements in this short story that you find to be the most effective in achieving this purpose and provide textual evidence to defend your choices.My Prompt Which prompt did you select for this assessment (1, 2, or 3)?My ClaimWrite one sentence that includes:o the author's nameo the title of the worko the literary elements you selectedo the effect of the literary elements on the text Type your one sentence claim:Reason #1In one sentence, explain how the first literary element in your claim worked to develop your author's allegory. What is the first reason for your claim? Provide one piece of evidence from your text that supports this reason:Reason #2In one sentence, explain how the second literary element in your claim worked to develop your author's allegory. What is the second reason for your claim? Provide one piece of evidence from your text that supports this reason:Reason #3In one sentence, explain how the third literary element in your claim worked to develop your author's allegory. What is the third reason for your claim? Provide one piece of evidence from your text that supports this reason: Let A,B and C be three sets. If AB and BC, is it true that AC ?. If not, give an example. David is making rice for his guests based on a recipe that requires rice, water, and spice, where the rice-to-spice ratio is 4:1. He currently has 20 grams of the spice, but he is all out of rice. He wants to make 2 servings, where each serving has 20 grams of spice. He, therefore, goes to the store and spends $3.20 on rice. What is the price of rice per gram?