Questions
A 45.00 -mL sample contains 0.754 g of KHC8H4O4, known as KHP . This sample is...

A 45.00 -mL sample contains 0.754 g of KHC8H4O4, known as KHP . This sample is used to standardize an NaOH solution. At the equivalence point, 43.30 mL of NaOH have been added.

Ka( HC8H4O4-) = 3.9E-6

a) What was the concentration of the NaOH?

b) What is the pH at the equivalence point?

In: Chemistry

China is currently rising and is slowly become a world power. My question is that is...

China is currently rising and is slowly become a world power.

My question is that is there anything that could hold back China's rise?

In: Economics

Various factors or forces impact a company’s decision to go into a foreign market and affect...

Various factors or forces impact a company’s decision to go into a foreign market and affect the outcome of that decision. If a country or market has several factors in common with the original market, or with the other markets selected when choosing several markets, it will be easier to enter that market.

  • If a U.S. software company that primarily creates and sells educational software wants to expand into two foreign markets, what factor commonalities (as found in your Learning Activities) should the company be looking for when deciding on the two countries?
  • Provide two country suggestions and explain your reasoning.

In: Operations Management

A hollow aluminum cylinder 23.5 cm deep has an internal capacity of 2.000 L at 17.0°C....

A hollow aluminum cylinder 23.5 cm deep has an internal capacity of 2.000 L at 17.0°C. It is completely filled with turpentine at 17.0°C. The turpentine and the aluminum cylinder are then slowly warmed together to 75.0°C. (The average linear expansion coefficient for aluminum is 24 ✕ 10−6°C−1, and the average volume expansion coefficient for turpentine is 9.0 ✕ 10−4°C−1.)

(a) How much turpentine overflows? cm3

(b) What is the volume of turpentine remaining in the cylinder at 75.0°C? (Give your answer to at least four significant figures.) L

(c) If the combination with this amount of turpentine is then cooled back to 17.0°C, how far below the cylinder's rim does the turpentine's surface recede?

In: Physics

Question 4 a) Using practical examples from the field of computer compare (into some detail) the...

Question 4
a) Using practical examples from the field of computer compare (into some detail) the terms ‘Ethical’ and ‘Legal’ and relate them to the issue of ethical behavior in organizations.
b) Doctors may experience ethical uncertainty when faced with a situation in which they are unsure of what values to apply or even where the ethical problem is. Discuss any five steps the doctor needs to go through in order to take the right ethical decisions.
c) Although Ethics mean different thing to different people, its meaning always has some ethical implications. Briefly explain at least three implications of the meaning of Ethics.

In: Computer Science

8.According to the textbook, which of the following statements is (are) correct? (x)Fractional reserve banking is...

8.According to the textbook, which of the following statements is (are) correct?

(x)Fractional reserve banking is a system where banks must hold an amount of cash based on a percentage of its loans.

(y)The Federal Reserve can alter the size of the money supply by changing reserves or changing reserve requirements.

(z)If the Fed decreases reserve requirements, the money supply will decrease.

A.(x), (y), and (z)B.(x) and (y) only C.(x) and (z) only D.(y) and (z) only E.(y) only

9.The Federal Reserve System regulates the money supply primarily by

A.restricting the issuance of Federal Reserve Notes.

B.controlling the production of coins at the United States mint.

C.varying the reserves of banks, largely through sales and purchases of government bonds.

D.altering the reserve requirements of banks and thereby the ability of banks to make loans.

Which of the following statements about the Federal Reserve is (are) correct?

(x) When the Federal Reserve conducts open market transactions, it buys or sells government bonds from the public and these actions allow the Fed to control the level of reserves in the banking system.

(y)In general, if the Fed bought a bond from a bank via the open market, then the bank’s excess reserves would increase and the money supply would increase if the bank loans out all of its excess reserves.

(z)If the Fed buys government bonds then the money supply will eventually decrease.

A.(x), (y), and (z)B.(x) and (y) onlyC.(x) and (z) onlyD.(y) and (z) onlyE.(x) only

In: Economics

1. How does the Bordeaux wine distribution system work? Who benefits and how? 2. How is...

1. How does the Bordeaux wine distribution system work? Who benefits and how?

2. How is price set? Trace the process from the sale of the first tranche to the sale of a bottle in a wine store for $1,200. Why is the process so complicated?

In: Operations Management

As an operation manager how can you approach the safety stock for “face masks” need it...

As an operation manager how can you approach the safety stock for “face masks” need it now due to corona virus versus people & hospitals & business & employees?

In: Operations Management

Using implicit Intents, you are to write a complete Android application, using menus or BottomNavigationView to...

Using implicit Intents, you are to write a complete Android application, using menus or BottomNavigationView to

1. Allow the user to send SMS messages to multiple users at the same time.
2. Allow the user to send E-mail to multiple users including CC and BCC
3. Allow the user to Locate any specific place on Google Map by either

specifying a detailed information about a location or by specifying Latitude and longitude coordinates

4. Take a picture.

Impress me lots lots lots with this application.

Your are free to add whatever to need or wish.

Enjoy!

i need code for application

In: Computer Science

Re-write this method using iteration ONLY JAVA class Main { public static void merge(int arr[], int...

Re-write this method using iteration ONLY

JAVA

class Main {

public static void merge(int arr[], int l, int m, int r)

{

int n1 = m - l + 1;

int n2 = r-m;

int left[] = new int[n1];

int right[] = new int[n2];

for (int i = 0; i < n1; ++i)

left[i] = arr[l + i];

for (int j = 0; j < n2; ++j)

right[j] = arr[m + 1 + j];

int i=0; //left

int j=0; // right

int k=l; // main

while( i<n1 && j<n2){

if(left[i]<=right[j]){

arr[k] = left[i];

i++;

}

else{

arr[k] = right[j];

j++;

}

k++;

}

while(i<n1){

arr[k] = left[i];

i++;

k++;

}

while(j<n2){

arr[k] = right[j];

j++;

k++;

}


}

static void sort(int arr[], int l, int r) {

if(l>=r){

return;

}

if(l<r){

int m = (l+r)/2;

//call the left part divide

sort(arr, l, m);

//call the right to divide

sort(arr, m+1, r);

//merge left and right

merge(arr, l,m,r);

}

}

static void printArray(int arr[])

{

int n = arr.length;

for (int i = 0; i < n; ++i)

System.out.print(arr[i] + " ");

System.out.println();

}

// Driver method

public static void main(String args[])

{ // 2 3.

int arr[] = { 5,7,6,3 , 2,4,1 };

//main array = 1,2,3,4,5, 6, 7

// left 1,3,6,7

// right 2,4,5

// arr = 1,3,6,7,2,4,5

System.out.println("Given Array");

printArray(arr);

sort(arr, 0, arr.length - 1);

System.out.println("\nSorted array");

printArray(arr);

}

}

In: Computer Science

If I want to show an exception in JAVA GUI that checks if the date format...

If I want to show an exception in JAVA GUI that checks if the date format is correct or the date doesn't exist, and if no input is put in how do I do that. For example if the date format should be 01-11-2020, and user inputs 11/01/2020 inside the jTextField it will show an error exception message that format is wrong, and if the user inputs an invalid date, it will print that the date is invlaid, and if the user puts no value inside the text box, it willl print an exception message that there needs to be a value. Please help.

In: Computer Science

is it necessary for police officers to have psychological testing? Why or why not?

is it necessary for police officers to have psychological testing? Why or why not?

In: Psychology

Provide three examples to explain the differences between strong and weak cultures

Provide three examples to explain the differences between strong and weak cultures

In: Operations Management

Left ventricular mass (LVM) is an important risk factor for subsequent cardiovascular disease. A study is...

Left ventricular mass (LVM) is an important risk factor for subsequent cardiovascular disease. A study is proposed to assess the relationship between childhood blood pressure levels and LVM in children as determined from echocardiograms. The goal is to stratify children into a normal bp group (< 80th percentile for their age, gender, and height) and an elevated bp group (≥ 90th percentile for their age, gender, and height) and compare change in LVM between the 2 groups. Before this can be done, one needs to demonstrate that LVM actually changes in children over a 4-year period.

To help plan the main study, a pilot study is conducted where echocardiograms are obtained from 10 random children from the Bogalusa Heart Study at baseline and after 4 years of follow-up.

ID

Baseline LVM (g)

4-year LVM (g)

Change (g)*

1 139 163 24
2

134

126 -8
3 86 142 56
4 98 96 -2
5 78 111 33
6 90 108 18
7 102 167 65
8 73 82 9
9 93 77 -16
10 162 172 10

Mean

105.5 124.4 18.9

sd

29.4 35.2 26.4

Implement an appropriate 2-sided test to test the hypothesis that there is a change in mean LVM over 4 years?

You must clearly write out all 4 steps of the appropriate hypothesis test clearly defining the parameter(s) involved, calculate the value of the test statistic and the p-value, and state your conclusion in the context of the problem.

In: Math

3. (a) California Bank holds $375 million in deposits and maintains a reserve ratio of 5%....

3. (a) California Bank holds $375 million in deposits and maintains a reserve ratio of 5%. Show the T-account of the bank

Money Multiplier =

Final Money Supply =

(b) If First Bank has deposits = $500,000, reserves = $100,000, and loans = $400,000. Show the T-account of the bank:

If the Fed requires banks to hold 5% as reserves:
Required Reserves =

Excess Reserves =

Final Money Supply =

(c) If First Bank decides to decrease its reserves to the required amount. Show the new T-Account of the bank.

Final Money Supply =

(d) The banking system has $100 billion of reserves, none of which are excess. People hold only deposits and no currency, and the reserve requirement is 40%. Show the T-Account of the banks.

Final Money Supply =

5. Suppose you win the lottery. You have a choice between earning $100,000 fora year for 20 years or an immediate payment of $1,200,000. If the interest rate is 3%:

(a) Which choice would you make?

(b) For what range of interest rates should you take the immediate payment?

In: Economics