Questions
Acidic solution In acidic solution, the sulfate ion can be used to react with a number...

Acidic solution

In acidic solution, the sulfate ion can be used to react with a number of metal ions. One such reaction is

SO42−(aq)+Sn2+(aq)→H2SO3(aq)+Sn4+(aq)SO42−(aq)+Sn2+(aq)→H2SO3(aq)+Sn4+(aq)

Since this reaction takes place in acidic solution, H2O(l)H2O(l) and H+(aq)H+(aq) will be involved in the reaction. Places for these species are indicated by the blanks in the following restatement of the equation:

SO42−(aq)+Sn2+(aq)+     –––→H2SO3(aq)+Sn4+(aq)+     –––

Question A

What are the coefficients of the reactants and products in the balanced equation above? Remember to include H2O(l)H2O(l) and H+(aq)H+(aq) in the appropriate blanks. Your answer should have six terms.

Enter the equation coefficients in order separated by commas (e.g., 2,2,1,4,4,3). Include coefficients of 1, as required, for grading purposes.

B part

Potassium permanganate, KMnO4KMnO4, is a powerful oxidizing agent. The products of a given redox reaction with the permanganate ion depend on the reaction conditions used. In basic solution, the following equation represents the reaction of this ion with a solution containing sodium fluoride:

MnO4−(aq)+F−(aq)→MnO2(s)+F2(aq)MnO4−(aq)+F−(aq)→MnO2(s)+F2(aq)

Since this reaction takes place in basic solution, H2O(l)H2O(l) and OH−(aq)OH−(aq) will be shown in the reaction. Places for these species are indicated by the blanks in the following restatement of the equation:

MnO4−(aq)+F−(aq)+     –––→MnO2(s)+F2(aq)+     –––

question 2

What are the coefficients of the reactants and products in the balanced equation above? Remember to include H2O(l)H2O(l) and OH−(aq)OH−(aq) in the blanks where appropriate. Your answer should have six terms.

Enter the equation coefficients in order separated by commas (e.g., 2,2,1,4,4,3). Include coefficients of 1, as required, for grading purposes.

In: Chemistry

I need pesodocode of this code. void claimProcess() { int id; bool found = false; system("cls");...

I need pesodocode of this code.

void claimProcess()
{
int id;
bool found = false;
system("cls");
printf("Enter patient ID for which you want to claim insurrence: ");
scanf("%d", & id);
int i;
for (i = 0; i < patientCount; i++)
{
if (patients[i].id == id)
{
found = true;
break;
}
}
if (found == false)
{
printf("subscriber not found\n");
return;
}
int numOfDaysHospitalized, suppliesCost, surgicalFee, otherCharges;
bool ICU;
printf("How many days were you haspitalized: ");
scanf("%d", & numOfDaysHospitalized);
int ICUFlag;
do {
printf("Select A Ward Type\n1-Normal Ward 2-ICU: ");
scanf("%d", & ICUFlag);
} while (ICUFlag < 1 || ICUFlag > 2);
if (ICUFlag == 2)
ICU = true;
else
ICU = false;
printf("Enter Cost of Supplies and Services: ");
scanf("%d", & suppliesCost);
printf("Enter Surgical Fees: ");
scanf("%d", & surgicalFee);
printf("Enter Other Charges: ");
scanf("%d", & otherCharges);
int ICUCharges = 0;
if (ICU == true)
{
if (patients[i].plan == 1)
ICUCharges = numOfDaysHospitalized * 120;
else if (patients[i].plan == 2)
ICUCharges = numOfDaysHospitalized * 150;
else
ICUCharges = numOfDaysHospitalized * 200;
} else
{
if (patients[i].plan == 1)
ICUCharges = numOfDaysHospitalized * 250;
else if (patients[i].plan == 2)
ICUCharges = numOfDaysHospitalized * 400;
else
ICUCharges = numOfDaysHospitalized * 700;
}
int totalClaimAmount = numOfDaysHospitalized + suppliesCost + surgicalFee + otherCharges + ICUCharges;
if (patients[i].annualClaim == true)
{
if (patients[i].age > 60)
{
printf("The subscriber age has exceeded the limit(60 Year), Not Eligible");
return;
}
}
int j;
for (j = 0; j < patientCount; j++)
{
if (claims[j].id == patients[i].id)
break;
}
int amountToBeBorne = 0;
if (totalClaimAmount <= claims[j].remaininigAmount)
{
claims[j].amountClaimed += totalClaimAmount;
claims[j].remaininigAmount -= totalClaimAmount;
} else
{
amountToBeBorne = totalClaimAmount - claims[j].remaininigAmount;
claims[j].amountClaimed += (totalClaimAmount - amountToBeBorne);
claims[j].remaininigAmount = 0;
printf("\n\nThe amount that can be claimed is less then the claim by subscriber. %d RM should be given by subscriber themselves\n", amountToBeBorne);
}
FILE * fp;
fp = fopen("claims.txt", "w");
for (int i = 0; i < patientCount; i++)
fprintf(fp, "%d,%d,%d,%d\n", claims[i].id, claims[i].claimedYear, claims[i].amountClaimed, claims[i].remaininigAmount);
fclose(fp);
printf("Subscriber ID: %d\nSubscriber Name: %s\nSubscriber Claimed Year: %d\nSubscriber amount Claimed: %d\nSubscriber Remaining Claimed: %d\n", claims[j].id, patients[i].name, claims[j].claimedYear, claims[j].amountClaimed, claims[j].remaininigAmount);
system("pause");
}

In: Computer Science

Can you think of a time you faced an important opportunity or challenge with a fixed...

Can you think of a time you faced an important opportunity or challenge with a fixed mindset? What were your thoughts and worries—about your abilities? about other people’s judgments? about the possibility of failure? Describe them vividly. OR Is there someone in your life (a boss, mate, friend, child) with a fixed mindset—someone who won’t take risks, who can’t admit mistakes, who falls apart or gets defensive after setbacks? Do you understand that person better now? 220 240 word discussion no plagiarism

In: Psychology

The Supermarket Store is about to place an order for Halloween candy. One best-selling brand of...

The Supermarket Store is about to place an order for Halloween candy. One best-selling brand of candy can be purchased at $2.40 per box and usually is sold for $6 per box before and up to Halloween. After Halloween, all the remaining candy can be marked down and sold for $1.00 per box. Assume that the loss in goodwill “cost” stemming from customers whose demand is not satisfied is $0.30. Demand for the candy at the regular price is a random variable with the following discrete probability distribution:

Demand (boxes)

Probability

80

0.05

90

0.45

100

0.10

110

0.25

120

0.15

i. Eliminate the possibility of have any leftover candy at the end of the selling season by ordering 80 boxes;

ii. Eliminate the possibility of not losing any sales through inadequate stock by ordering 120 boxes.

^For each of the above options, you are required to estimate the expected (end-of-season) profits for the supermarket store.

b. If the store manager’s objective is to obtain the maximum end-of-season expected profit for the store, what would be:

• the optimal order quantity (Q*); and

• the corresponding expected profit?

**Please show work

In: Operations Management

Write a python program that will ask the user to enter any number of days. The...

Write a python program that will ask the user to enter any number of days. The program reads the number of days from the user, and returns how many years, months, and days are there in the given number of days.


Your program should prompt the user to:

Enter the number of days : 1152

The user types number of days (1152 above, for example) and hit enter key.
The program then will print:

3 years

1 months

27 days

  • Use a range of 1 – 300,000 days for testing the program
  • 1 year    = 365 days
  • 1 year    =    12 months
  • Assume 1 month = 30 day

Another example of the program input and output:

Enter the number of days : 300000

821 years
11 months
5 days

Notice the indentation of the output

Marking rubrics of Question 1:

1 mark for reading an input.

1 mark for finding number of years

1 mark for finding number of months

1 mark for finding number of days

1 mark for coding style

Full 1 mark for each correct answer, and ½ mark for partially correct answer.

please pay attention to output format

In: Computer Science

Using the compensating wage/safety model, illustrate why the impact of safety regulation might affecf differently three...

Using the compensating wage/safety model, illustrate why the impact of safety regulation might affecf differently three firms with different safety provision capabilities.

In: Economics

During the term, you will be asked to prepare a sales proposal plan. A detailed explanation...

During the term, you will be asked to prepare a sales proposal plan. A detailed explanation of how to complete the project will be provided in Blackboard. Students are encouraged to draw upon their own organizations products and services to develop a sales presentation proposal. Your choice of product / service must be submitted to the instructor on or before the April 3rd class night for approval. On the last night of class, each student will present their written sales proposal to the class using a brief PowerPoint presentation.

The written sales proposal plan should contain the information as described in the attachment in order to make the needed presentation to a potential buyer / customer using the SELL sequence. Charts, graphs, financial data (demonstration proof), collateral materials (catalogues) and promotional materials can and should be included in your presentation (PowerPoint). Here is your chance to participate in a real world selling experience. This is not a game but a chance to see if you’ve got what it takes to be innovative, organized, research savvy, creative and implement classic selling strategies.

It is PowerPoint presentation based on selling LIC policy to customer, thank you  

(In this just prepare PowerPoint presentation based on selling LIC policy based on questions asked above)

In: Operations Management

Build the statement of comprehensive income and statement of financial position based on the information given...

Build the statement of comprehensive income and statement of financial position based on the information given below, as of December 31, 2016. Round numbers to the nearest integer.

Accounts payable

$172,000

Accounts receivable

$195,000

Cash and cash equivalents

$106,000

CoGS

$251,300

Common stock

$1,231,000

Depreciation

$42,000

Dividend payout ratio

40%

Interest paid

$66,600

Inventory

$121,000

Long-term debt

$1,332,000

Net fixed assets

$2,889,000

Sales

$468,000

Short-term debt

$377,000

Tax rate

31%

Number of shares

1,000,000

Price per share

$0.50

In: Accounting

The manager of a small hotel resort is considering expansion. He would like to issue bonds...

The manager of a small hotel resort is considering expansion. He would like to issue bonds but do not quite understand why he may or may not receive what amount of money is stated on the face of the bond but he has to repay what is on the face of the bond. Write a report to the manager explaining the market forces that determine how much money will be collected. Also explain how the interest payment on bonds are calculated and paid. bear in mind that the stated interest rate and the market interest rate are the two interest rate that work together to determine the market price of a bond. write in essay format no log explanation.

In: Accounting

Explain the importance of collaboration and information sharing for businesses. Explain what a “smart” product is,...

Explain the importance of collaboration and information sharing for businesses.

Explain what a “smart” product is, and use an example.

How do smart products increase rivalry among firms?

In: Operations Management

Discuss the relationship between creativity and innovation. Is it possible to innovate without creativity? Is it...

Discuss the relationship between creativity and innovation. Is it possible to innovate without creativity? Is it possible to be creative without innovating? Defend your position thoroughly.

In: Operations Management

Hello i need pesodocde of this code. void accountInfo() { system("cls"); int ch; printf("1-Total Amount Claimed...

Hello i need pesodocde of this code.

void accountInfo()
{
system("cls");
int ch;
printf("1-Total Amount Claimed by LifeTime Claim Limit subscriber\n");
printf("2-Total number of Annual Claim Limit who have exhausted all their eligible amount\n");
scanf("%d", & ch);
if (ch == 1)
{
int totalAmountClaimedByLifeTimeSubs = 0;
for (int i = 0; i < patientCount; i++)
{
if (patients[i].annualClaim == false)
{
for (int j = 0; j < patientCount; j++)
{
if (claims[j].id == patients[i].id)
{
totalAmountClaimedByLifeTimeSubs += claims[j].amountClaimed;
}
}
}
}
printf("\nTotal amount Claimed By LifeTime Subscribers is: %d\n", totalAmountClaimedByLifeTimeSubs);
} else
{
int count = 0;
for (int i = 0; i < patientCount; i++)
{
if (claims[i].remaininigAmount <= 0 && patients[i].annualClaim == true)
count++;
}
printf("Total number of Annual Claim Limit Subcriber who have exhausted all their amount are: %d\n", count);
}
system("pause");
}
void searchingFunctionalities()
{
system("cls");
int ch;
printf("1-Search by ID\n2-Search by age\n");
scanf("%d", & ch);
if (ch == 1)
{
int id;
printf("Enter patient ID for which you want Search: ");
scanf("%d", & id);
int i;
for (i = 0; i < patientCount; i++)
{
if (patients[i].id == id)
{
printf("\nSubscriber Name: %s\nSubscriber Age: %d\nSubscriber Contact: %s\nSubscriber Address: %s\n", patients[i].name, patients[i].age, patients[i].contactNum, patients[i].address);
break;
}
}
printf("Subscriber Not Found");
} else
{
int age;
printf("Enter age for which you want Search: ");
scanf("%d", & age);
for (int i = 0; i < patientCount; i++)
{
if (patients[i].age == age)
{
printf("\nSubscriber Name: %s\nSubscriber ID: %d\nSubscriber Contact: %s\nSubscriber Address: %s\n", patients[i].name, patients[i].id, patients[i].contactNum, patients[i].address);
}
}
}
system("pause");
}

In: Computer Science

Consider the standard Solow model with population growth and technological progress. Suppose we introduce a government...

Consider the standard Solow model with population growth and technological progress. Suppose we introduce a government that imposes a lump-sum tax on all individuals

a. Write down the new steady state equation for this economy. b. Would the steady state capital stock be higher or lower as a result of the lump-sum tax? Explain. Illustrate this tax. c. Explain how this tax affects the golden rule level of per capita capital stock.

b. Would the steady state capital stock be higher or lower as a result of the lump-sum tax? Explain. Illustrate this tax.

c. Explain how this tax affects the golden rule level of per capita capital stock.

In: Economics

Assuming a planar surface, calculate how long it will take to dissolve 1 mm thick layer...

Assuming a planar surface, calculate how long it will take to dissolve 1 mm thick layer from the mineral. The dissolution rate is a zeroth-order reaction

Mineral Formula Density (g/cm3) Log Rate (mol/m2) pH Concentration (moles/L) Temperature (°C)
Quartz SiO2 2.65 -13.39 5 0.00001 25

In: Chemistry

Describe the basic parts of an arrest report and the function of each. What issues might...

Describe the basic parts of an arrest report and the function of each. What issues might arise if an arrest record is inaccurate?

In: Psychology