Who is responsible for providing the equipment employees need to stay safe on the job (like a hardhat or safetygoggles)?
• the Occupational Safety and Health Administration (OSHA)
O the employer
the labor union
O the employee
MacBook Pro

Answers

Answer 1
Answer:

Answer:

the employer

Explanation:

Answer 2
Answer:

Answer:

the employer

Explanation:


Related Questions

Regional culture has been affected by technology in these ways. Select all that apply. decreased educational opportunities improved communication access increased exposure to western culture increased regional isolation threatened traditional values
Which agency coordinate the Internet's IP addressing and DNS system.
Which of these contains information about the elements?a. data chart b. formula chart c. periodic table d. conversion table
2 9 10 Ready Sheetl Match the following columns: Column A Worksheet o Workbook o Cell Active cell o Columns Rows E MAA Column B o horizontal divisions of a worksheet. o a small rectangular area ● Vertical division of worksheet Fill in the blanks with suitable words: o has maximum 1048576 rows and 18278 (A to ZZZ) columns May contain several worksheets o Selected cell in the worksheet e. f. 5 identi Columns are iden g. The int rectan Write do Comm Save, Cut, Inse For Zo N 6 A 2​
When a summary slide is inserted into a presentation, where does it appear?a. After the active slide in the presentationb. After the first slide of the presentationc. At the beginning of the presentationd. At the end of the presentation

____ refers to data, applications, and even resources stored on computers accessed over the Internet. Answera. Embedded computing
b. The Ethernet
c. Telecommuting
d. Cloud computing

Answers

The answer is (d.) Cloud Computing

The Cloud computing refers to the type of computing the enables the sharing of data, applications, and even the resources on the computers or other devices to be access over the internet rather than on local server on the local computer.

Limiting the amount of personal information available to others includes reducing your ______________ footprint

Answers

The blank should be filled with "digital"

Patient care impact icons indicate the immediacy of risk to the quality of care and patient safety. Which of the following statements about these icons is correct? A. An icon indicates situations that could indirectly impact patients by creating an immediate risk to safety or quality of care, treatment, and services B. An icon identifies issues that, when found out of compliance, indicate a situation exists that could pose a significant threat to patient safety or quality of care C. An icon is used to record patient risk situations at an Accreditation Participation Requirement (APR) if identified by a surveyor, whether on site or after returning to TJC

Answers

Answer:A

Explanation:

An effective way to encourage people to return a mail questionnaire quickly is toA. print a bold deadline at the top.
B. ask fewer than 20 questions.
C. connect it to some cause they're interested in.
D. offer a discount coupon to the first 100 who return it.

Answers

A. print a bold deadline at the top.
B. ask fewer than 20 questions.
C. connect it to some cause they're interested in.
D. offer a discount coupon to the first 100 who return it.

An effective way to encourage people to return a mail questionnaire quickly is to print a bold deadline at the top. The answer is letter A.

The correct option is D. offer a discount coupon to the first 100 who return it.

Assume that an int variable age has been declared and already given a value. Assume further that the user has just been presented with the following menu: S: hangar steak, red potatoes, asparagus T: whole trout, long rice, brussel sprouts B: cheddar cheeseburger, steak fries, cole slaw (Yes, this menu really IS a menu!) Write some code that reads the String (S or T or B) that the user types in into a String variable choice that has already been declared and prints out a recommended accompanying drink as follows: if the value of age is 21 or lower, the recommendation is "vegetable juice" for steak, "cranberry juice" for trout, and "soda" for the burger. Otherwise, the recommendations are "cabernet", "chardonnay", and "IPA" for steak, trout, and burger respectively. Regardless of the value of age, your code should print "invalid menu selection" if the character read into choice was not S or T or B. ASSUME the availability of a variable, stdin, that references a Scanner object associated with standard input.

Answers

Answer:

Hi!

The method in Java:

public void chooseMenuAndDrink(int age) {

     String menu;

     Scanner stdin = new Scanner(System.in);

     menu = stdin.next().charAt(0); //read the char and save the value on menu.

     

     if ( menu.equals("S") ) {  // if menu is S

           if(age > 21) { // and age > 21

          System.out.println("cabernet");  // prints cabernet

          } else { System.out.println("vegetable juice"); } // else prints vegetable juice

      }

      if ( menu.equals("T") ) {

           if(age > 21) {

         System.out.println("chardonnay");

     } else { System.out.println("cranberry juice"); }

  }

           if ( menu.equals("B") ) {

           if(age > 21) {

            System.out.println("IPA");

     } else { System.out.println("soda"); }

  }      

  if (!menu.equals("B") & !menu.equals("T") & !menu.equals("S")) { // if menu is not B, T or S

          System.out.println("invalid menu selection"); // prints invalid menu selection

     }

}

What term is defined as software that allows users to use and adapt it for any purpose, often allowing the public to participate in further development?Responses

open well
open well

open source
open source

open use
open use

open pit

Answers

Final Answer

Open-source software is software with freely accessible source code, allowing users to view, modify, and redistribute it, fostering collaborative development and user customization.

Explanation:

Open-source software is a paradigm that champions transparency, collaboration, and community-driven development. At its core, open-source software refers to applications or programs for which the source code is made freely available to the public. This means that anyone can view, modify, and redistribute the code, often under specific licenses such as the GNU General Public License (GPL) or the MIT License.

The key feature of open-source software is that it empowers users to not only utilize the software for their needs but also adapt it to suit their specific requirements. This adaptability has numerous advantages. Firstly, it allows for widespread participation in the development process, as users can contribute improvements, bug fixes, or new features. This collective effort often results in software that is more reliable, secure, and feature-rich.

Open source projects can range from small utilities to massive, industry-defining applications. Prominent examples include the Linux operating system, the Apache web server, the Mozilla Firefox web browser, and the LibreOffice office suite. These projects have attracted a global community of developers and users who collaborate to enhance the software continually.

Moreover, open-source software often leads to a sense of ownership and engagement among its users. It empowers individuals, organizations, and entire industries to shape the software they rely on, reducing vendor lock-in and ensuring long-term accessibility and sustainability. Open source has become an essential component of modern software development, fostering innovation and democratizing access to technology.

Learn more about Open-source software

brainly.com/question/35869839

#SPJ11