Questions
YOU MUST read the "UNITED STATES' BRIEF IN SUPPORT OF ITS PROPOSED FINDINGS OF FACT AND...

YOU MUST read the "UNITED STATES' BRIEF IN SUPPORT OF ITS PROPOSED FINDINGS OF FACT AND CONCLUSIONS OF LAW" case, a pursuant to the antitrust prosecution of Dentsply International, Incorporated. The Antitrust Division of the Justice Department, in a complaint filed in 1999, alleged that Dentsply violated §1 and §2 of the Sherman Act and §3 of the Clayton Act. Read the Brief filed by the DOJ in 2002 and answer the following questions:

6. How did Denstply violate §3 of the Clayton Act, according to the government?

In: Operations Management

in arduino, having two LED lights, I need to find a way to turn one LED...

in arduino, having two LED lights, I need to find a way to turn one LED with the push of a button, then with a next push of the button turn off the first LED and turn the second LED on. Help with the circuit and code would be appreciated.

In: Computer Science

Required Names: Main class: StoreProgram Java filename: StoreProgram.java StoreProgram This project will be a program that...

Required Names:

  • Main class: StoreProgram
  • Java filename: StoreProgram.java

StoreProgram

This project will be a program that provides information about inventory in a grocery store. Use this codeas your starting point. This code already has a main method written for you. DO NOT modify the main method. If you modify the main method, you will lose points.

In the main method, you will notice three arrays:

  • A String array representing the items in the store by name.
  • An integer array representing the quantities of each item.
  • A double array representing the price of each item.

Here is the code as seen in the file:

String[] storeItems = {
        "broccoli", "onion", "carrot", "turnip", "mango",
        "bread", "garlic", "celery", "apple", "banana",
        "raisins", "grapes", "lemon", "orange", "potato"
};

int[] itemQuantities = {
        23, 5, 7, 15, 2,
        13, 13, 8, 20, 30,
        3, 25, 10, 9, 1
};

double[] itemPrices = {
        2.0, 0.89, 0.70, 1.50, 2.99,
        3.45, 1.45, 1.12, 3.99, 0.25,
        4.99, 7.00, 1.75, 1.80, 3.25
};

Each array provides information about a specific item by index. This means that each index is specific for the item in the store. For example, notice that "carrot" is at index 2 in the storeItems array. This means that the quantity of carrots is also located at index 2in the itemQuantities array (which is 7), and the price of carrots is located at index 2 in the itemPrices array (which is 0.70).

For the purpose of this assignment, you can assume that the three arrays are always of equal length. This means that if you refer to the length property on any of them (for example, itemPrices.length), then the length will be the same for the other two arrays as well.

Instructions

Your program will need to have:

  • runTransaction -> This method is kind of like the "main method" for everything related to the store manager program. The program starts and ends with this method, so the entire flow of the program should be managed here.
    The user should be given the following five options to choose from:

    When each option is completed and executed, the user should be able to choose from the option again, with the exception of Option 5 (Exit) which will cause the program to end.

To help runTransaction run properly without making it too bulky, you will be required to implement the following methods as well. Each of these methods should have three parameters (the three arrays), and they should not return any values.

  • displayInventory (Option 1)-> This method will display the entire inventory. For each item, display the item on a single line like we did in the video.
  • displayLowInventory (Option 2)-> This method will only display inventory if the quantity is less than 5.
  • displayHighestLowest (Option 3)-> This method will display the items with the highest inventory value and the lowest inventory value. The inventory value is the quantity multiplied by the price, which is basically what you would pay if you were to buy the entire stock of the item.
    When displaying the items, you only need to show the item's name and the inventory value of the item. Do not display any information about any other item. Only display the information about the item with the highest inventory value and the item with the lowest inventory value.
  • displayTotalInventory (Option 4)-> This method will calculate the inventory value for each item and display the sum total of all inventory values.

Pleases if I can get help today with how to do these steps of  coding ?

In: Computer Science

- Read the below chapter and discuss in details (2-3 pages) using your own words about...

- Read the below chapter and discuss in details (2-3 pages) using your own words about Cloud Security Concerns, Risk Issues, and Legal Aspects (use the below reference )

NOTE: please make sure that the answer is typing on the computer with font size 11pt

In: Computer Science

For the last 12 years, you deposited a certain amount of money each week into a...

For the last 12 years, you deposited a certain amount of money each week into a bank account whose annual rate is 1.9% with weekly compounding. If the account has $74,665 today, how much interest has the account earned?

In: Finance

Approximately 35.73% of all businesses are owned by women. If you take a sample of 105...

Approximately 35.73% of all businesses are owned by women. If you take a sample of 105 businesses in Michigan, what is the probability that less than 32.92% of them would be owned by women?

Question 4 options:

1)

7.1217

2)

0.5000

3)

0.2740

4)

0.7260

5)

<0.0001

Energetic Co., a battery manufacturer, claims their battery lasts for 67.37 months with a standard deviation of 11.583 months. You randomly sample 16 of these batteries. Assuming the distribution for the battery lifetime is approximately normal, what is the probability the average lifetime is greater than 66.54?

Question 9 options:

1)

0.8678

2)

0.4714

3)

0.6128

4)

0.3872

5)

0.5286

In: Math

Compare the internal working model to adult romantic relationships

Compare the internal working model to adult romantic relationships

In: Psychology

Please DO NOT copy-paste from other sources. answer will be checked for plagiarism. Thank you!!! Question:...

Please DO NOT copy-paste from other sources. answer will be checked for plagiarism. Thank you!!!

Question: Using a Web browser, perform some research on a newer malware variant that has been reported by a major malware containment vendor. Using a search engine, go to the vendor’s Web site; this could be Symantec, McAfee, or any of their competitors. Visit one malware prevention software vendor. Search for the newest malware variants and pick one. Note its name and try to understand how it works. Now look for information about that same malware from at least one other vendor. Were you able to see this malware at both vendors? If so, are there any differences in how they are reported between the two vendors?

In: Computer Science

Anti-trust legislation keeps firms from merging to create monopoly power. However, if a firm grows organically...

Anti-trust legislation keeps firms from merging to create monopoly power. However, if a firm grows organically to attain monopoly power, it cannot be broken apart. True or False?

The acquirer’s due diligence and evaluation of the target firm are two entirely separate processes. True or False?

Free cash flows are cash flows that are available to all of the firm’s investors and are therefore used to value the firm as a whole (both debt and equity claims). True or False?

In: Finance

write a Linear Search algorithm using sentinel approach? How can the sentinel linear search improve the...

write a Linear Search algorithm using sentinel approach? How can the sentinel linear search improve the performance over the standard linear search?

In: Computer Science

Marie's Fashions is considering a project that will require $30,000 in net working capital and $95,000...

Marie's Fashions is considering a project that will require $30,000 in net working capital and $95,000 in fixed assets. The project is expected to produce annual sales of $99,000 with associated costs of $50,000. The project has a 5-year life. The company uses straight-line depreciation to a zero book value over the life of the project. The tax rate is 33 percent. Calculate operating cash flow. (Do not include the dollar signs ($). Round your answers to the nearest whole dollar amount. (e.g., 32))

In: Finance

Using Excel to Calculate Factorials, Permutations, and Combinations Using Excel to Calculate Factorials, Permutations and Combinations"...

Using Excel to Calculate Factorials, Permutations, and Combinations

Using Excel to Calculate Factorials, Permutations and Combinations"

·         In cell A1, compute 3 factorial

·         In cell A2, calculate the number of permutations when selection 3 items from a total of ten items.

·         In cell A3, calculate the number of combinations when selecting 3 items from a total of ten items.

In: Computer Science

What are the concurrency-control manager and recovery manager, respectively? What are their purpose?

What are the concurrency-control manager and recovery manager, respectively? What are their purpose?

In: Computer Science

se strong induction to show that every positive integer, n, can be written as a sum...

  1. se strong induction to show that every positive integer, n, can be written as a sum of powers of two: 20, 21, 22, 23, .....
  2. Give recursive definitions of the following sets.
    1. The set of all integers divisible by 5.
    2. The set of all ordered pairs, ( n, m ), where m = n mod 5.

In: Computer Science

Describe the newest screening resources developed to address the mental health needs of nursing caring for...

  1. Describe the newest screening resources developed to address the mental health needs of nursing caring for COVID patients.
  2. Identify steps to perform a reliable self-assessment.
  3. Describe how to effectively deal with personal grief during COVID-19.
  4. Discuss methods to effectively cope with other emotions that may be felt during the pandemic, i.e. anxiety, depression, anger, or fear.

In: Nursing