Questions
You are the senior auditor on the year-end financial statement audit of LRM Construction Co. You...

You are the senior auditor on the year-end financial statement audit of LRM Construction Co. You are conducting a preliminary review of the audit working papers for the audit of executive payroll, completed by Sophie Chow, a junior auditor on the audit team.


Upon your review, you are surprised to see that the audit file documents contain a note that LRM’s Controller, James Myers, received a salary plus bonus payments of $10 million this year. This was significantly more than he was paid in the past and also more than was paid to any other executive of the company, including the chief executive officer. Sophie did not mention the reason for this increase in the working papers, but did state that the results of the testing done on the executive payroll concluded that salaries were recorded properly and no further work was required.

You are not comfortable with this and ask Sophie if she knows the reason for the Controller’s significant increase in compensation this year. She tells you that during her discussions with James, he was very frank when she asked him outright why he was being paid so well this year. James hesitated, and then explained that this year LRM had received a huge contract in China to construct a manufacturing facility. This was a great opportunity for the company and the $10 million was not actually part of his salary, but money that was used to pay bribes in China. James said, “this is unfortunately standard business practice in China. We wouldn’t even have landed the contract if we didn’t pay off a few people. Even the building inspectors had to be bribed so we could proceed. To keep it off our books, I volunteered to add it to my salary and make the payments personally. Everything is okay with the tax guys as I have paid taxes on the full amount.”

Required:

Draft interim review comments concerning this area of the payroll audit, also identifying any further audit work that will need to be done for this area of the audit. Include a note as to further impacts that the Controller’s comments would have on other aspects of the audit process.

In: Accounting

3.) The function remove of the class arrayListType removes only the first occurrence of an element....


3.) The function remove of the class arrayListType removes only the first occurrence of an element. Add the function removeAll as an abstract function to the class arrayListType, which would remove all occurrences of a given element. Also, write the definition of the function removeAll in the class unorderedArrayListType and write a program to test this function.
4.) Add the function min as an abstract function to the class arrayListType to return the smallest element of the list. Also, write the definition of the function min in the class unorderedArrayListType and write a program to test this function.
5.) Add the function max as an abstract function to the class arrayListType to return the largest element of the list. Also, write the definition of the function max in the class unorderedArrayListType and write a program to test this function.

#include <iostream>
#include <cassert>
#include "arrayListType.h"

using namespace std;

bool arrayListType::isEmpty() const
{
return (length == 0);
} //end isEmpty

bool arrayListType::isFull() const
{
return (length == maxSize);
} //end isFull

int arrayListType::listSize() const
{
return length;
} //end listSize

int arrayListType::maxListSize() const
{
return maxSize;
} //end maxListSize

void arrayListType::print() const
{
for (int i = 0; i < length; i++)
cout << list[i] << " ";
cout << endl;
} //end print

bool arrayListType::isItemAtEqual(int location, int item) const
{
if (location < 0 || location >= length)
{
cout << "The location of the item to be removed "
<< "is out of range." << endl;

return false;
}
else
return (list[location] == item);
} //end isItemAtEqual

void arrayListType::removeAt(int location)
{
if (location < 0 || location >= length)
cout << "The location of the item to be removed "
<< "is out of range." << endl;
else
{
for (int i = location; i < length - 1; i++)
list[i] = list[i + 1];

length--;
}
} //end removeAt

void arrayListType::retrieveAt(int location, int& retItem) const
{
if (location < 0 || location >= length)
cout << "The location of the item to be retrieved is "
<< "out of range" << endl;
else
retItem = list[location];
} //end retrieveAt

// Part 1 - retrieve at as a value return function with assert
int arrayListType::retrieveAt(int location) const
{
assert(0 < location && location < length);
return list[location];
}

void arrayListType::clearList()
{
length = 0;
} //end clearList

arrayListType::arrayListType(int size)
{
if (size <= 0)
{
cout << "The array size must be positive. Creating "
<< "an array of the size 100." << endl;

maxSize = 100;
}
else
maxSize = size;

length = 0;

list = new int[maxSize];
} //end constructor

//Add the function removeAll as an abstract function
//which would remove all occurrences of a given element

arrayListType::~arrayListType()
{
delete[] list;
} //end destructor

arrayListType::arrayListType(const arrayListType& otherList)
{
maxSize = otherList.maxSize;
length = otherList.length;

list = new int[maxSize];    //create the array

for (int j = 0; j < length; j++) //copy otherList
list[j] = otherList.list[j];

#include <iostream>
#include "unorderedArrayListType.h"

using namespace std;

void unorderedArrayListType::insertAt(int location,
int insertItem)
{
if (location < 0 || location >= maxSize)
cout << "The position of the item to be inserted "
<< "is out of range." << endl;
else if (length >= maxSize) //list is full
cout << "Cannot insert in a full list" << endl;
else
{
for (int i = length; i > location; i--)
list[i] = list[i - 1];   //move the elements down

list[location] = insertItem; //insert the item at
//the specified position

length++;   //increment the length
}
} //end insertAt

void unorderedArrayListType::insertEnd(int insertItem)
{
if (length >= maxSize) //the list is full
cout << "Cannot insert in a full list." << endl;
else
{
list[length] = insertItem; //insert the item at the end
length++; //increment the length
}
} //end insertEnd

int unorderedArrayListType::seqSearch(int searchItem) const
{
int loc;
bool found = false;

loc = 0;

while (loc < length && !found)
if (list[loc] == searchItem)
found = true;
else
loc++;

if (found)
return loc;
else
return -1;
} //end seqSearch


void unorderedArrayListType::remove(int removeItem)
{
int loc;

if (length == 0)
cout << "Cannot delete from an empty list." << endl;
else
cout << "put the search and code here - use removeAt"
<< " in ArrayListType" << endl;
} //end remove

//Finish implementing max and return the largest number
//int unorderedArrayListType::max() const
//{
// if (length == 0)
// {
// cout << "The list is empty. "
// << "Cannot return the smallest element." << endl;
// exit(0);
// }
//
// int largest = list[0];

//} //end max

void unorderedArrayListType::replaceAt(int location, int repItem)
{
if (location < 0 || location >= length)
cout << "The location of the item to be "
<< "replaced is out of range." << endl;
else
list[location] = repItem;
} //end replaceAt


//
// Implement in class remove all occurences of a certain value
//void unorderedArrayListType::removeAll(int removeItem)
//{
// int loc;
//
// if (length == 0)
// cout << "Cannot delete from an empty list." << endl;
// else
// {
// loc = 0;
//

// }
//} ////end removeAll


//int unorderedArrayListType::min() const
//{
// if (length == 0)
// {
// cout << "The list is empty. "
// << "Cannot return the smallest element." << endl;
// exit(0);
// }
//
//
//
//} //end min


unorderedArrayListType::unorderedArrayListType(int size)
: arrayListType(size)
{
} //end constructor

In: Computer Science

Provide valuable thought about controlling health hazards in construction industry such as controlling the spread of...

Provide valuable thought about controlling health hazards in construction industry such as controlling the spread of viruses and diseases like Coronavirus disease in construction industry and answer following related points:
1- What are management's roles, actions and strategy that should be?

2- What kind of new, modern or advanced trainings that should be introduced for controlling this hazard?

3- What is the effect of these epidemics on the insurances of construction companies?

4- How can construction companies play control role on these diseases in order to reduce the premium required to be given to insurance companies? and How can insurance companies cooperate in this regard?

5- How can Accident Causation Models help and be implemented for controlling Coronavirus disease hazard and other diseases hazards?

6- Mention some good references that can be referred to for more related information.

In: Operations Management

An American company sells merchandise on account to a Swiss company for CHF 50,000 on 1/12/2019...

An American company sells merchandise on account to a Swiss company for CHF 50,000 on 1/12/2019 when the rate was 1 CHF = 0.9 USD. On 31/12/2019 the rate was 1 CHF = 0.96 USD. On 25/1/2020 the Swiss company pays its obligation to the US company (the rate was 1 CHF = 1.01 USD), which keeps the foreign cash it and converts the amount to US dollars on 10/2/2020, when the rate was 1 CHF = 0.99 USD. Required: Provide the journal entries on each of the above mentioned dates (Note: CHF means Swiss franc). NOTE: IF YOU CANNOT CLEARLY WRITE THE JOURNAL ENTRIES LIKE YOU WOULD ON A PAPER EXAM, PLEASE MENTION dr OR cr NEAR EACH ACCOUNT IN THE JOURNAL ENTRY AS APPROPRIATE.

In: Accounting

An American company sells merchandise on account to a Swiss company for CHF 50,000 on 1/12/2019...

An American company sells merchandise on account to a Swiss company for CHF 50,000 on 1/12/2019 when the rate was 1 CHF = 0.9 USD. On 31/12/2019 the rate was 1 CHF = 0.96 USD. On 25/1/2020 the Swiss company pays its obligation to the US company (the rate was 1 CHF = 1.01 USD), which keeps the foreign cash it and converts the amount to US dollars on 10/2/2020, when the rate was 1 CHF = 0.99 USD. Required: Provide the journal entries on each of the above mentioned dates (Note: CHF means Swiss franc). NOTE: IF YOU CANNOT CLEARLY WRITE THE JOURNAL ENTRIES LIKE YOU WOULD ON A PAPER EXAM, PLEASE MENTION dr OR cr NEAR EACH ACCOUNT IN THE JOURNAL ENTRY AS APPROPRIATE.

In: Accounting

Suppose you wanted to examine whether men and women differ with regard to how many names...

Suppose you wanted to examine whether men and women differ with regard to how many names they tend to mention. (For convenience, we will refer to those named as “close friends.”)

Number of Close Friends    0 1 2 3 4 5 6 total

Number of Respondents (male) 196 135 108 100 42 40 33 654

Number of Respondents (women) 201 146 155 132 86 56 37 813

m. Conduct a test of whether men and women differ with regard to the proportion who respond with zero names to the survey question asking who they talk to about important matters. Report all aspects of the test (all five steps as shown in your text), and summarize your conclusion.

In: Statistics and Probability

What would you say about a business that had the following Balance Sheet and Income Statement:...

What would you say about a business that had the following Balance Sheet and Income Statement:

Balance Sheet

Cash $2000

Inventory $2500

Accounts Receivable $8000

Property, Plant, Equipment $30,000

Land $30,000

Total Assets $72,500

Liabilities

Accounts Payable $1,000

Notes Payable $9,000

Long-Term Debt $45,000

Total Liabilities $55,000

Equity $17,500

Income Statement

Revenues $11000

Cost of Goods Sold $2000

Selling Expenses $1000

Other Expenses $2000

Be sure to mention at least one important element of the Balance Sheet, one important element of the Income Statement, and one important element for how the two interact both now and in the future if the Income Statement is repeated again in the next time period.

In: Finance

Show all work for credit. Be sure to label work and use sentences as appropriate to...

Show all work for credit. Be sure to label work and use sentences as appropriate to explain what steps you are taking. Be sure to clearly label any steps, results, or conclusions. Mention every single step you do.

For the following function f(x) = 2x-5/x+1 Find :

(a) (5 points) Find the domain (in interval notation).

(b) (5 points)Find any Vertical asymptotes or holes. Provide a written explanation why you are choosing Vertical asymptote or hole.

(c) (5 points)Find any Horizontal Asymptotes. Show work or write a sentence to substantiate your caim.

(d) (5 points)Find all x and y intercepts

(e) (10 points)Graph, finding additional points as needed.

In: Math

Write at least 500 words Discussion: Your first patient this week has a problem of the...

Write at least 500 words

Discussion:

Your first patient this week has a problem of the genitourinary tract that has plagued him since birth. He has had many hospitalizations due to this problem and suffers repeatedly with difficulties of the genitourinary tract. Describe the problem using terms built from the genitourinary medical word elements in your text. Mention 3 tests or procedures that would help you understand or treat your patient.

The second patient for you this week is a woman with a problem involving the reproductive area. Describe the problem she has with words built from some of the reproductive medical word elements in your text. You need to include at least 3 tests or procedures needed to address her issue as well.

Don't forget to write at least 500 words

In: Nursing

Compare and contrast the following for both nucleic acids and proteins: What determines directionality? At which...

Compare and contrast the following for both nucleic acids and proteins:

What determines directionality? At which end do you start synthesizing the molecule?

What are the monomers called?

What is the name of the bond that links the monomers and what type of bond

is it?

What is the variable portion of the monomer and what is the constant portion?

Compare and contrast the structure, function and properties of DNA and RNA.

3. Briefly describe how different amino acid sequences can lead to different protein structures and functions. Be sure to refer to the different levels of protein folding.

4. Briefly describe the properties of lipid bilayers and how this dictates membrane permeability. Be sure to mention which types of molecules can and cannot pass through the lipid bilayer.

5. Describe the different types of membrane transport and how they relate to concentration gradients and energy.

In: Biology