Not-for- profit Accounting discussion

Business Finance

The Article “One Attorney General’s Response to Creative Non Profit Accounting” by (Ruth McCambridge in NonProfit Quarterly May 11, 2018)

You are a new auditor reviewing the financial statements for a not-for-profit charity providing overseas needs relief utilizing donated clothing, food, and medications. You recall from your Not-for-Profit Accounting Class in college that not-for-profit charities have some unique accounting rules that don’t apply to other types of businesses, but you don’t remember exactly what those rules were. You decide to make an overview of the financials before you look into those rules. One of the first things you do is to compute the program’s services ratio by taking program service expenses divided by total expenses. You are surprised to find that ratio is very high, which should be indicative of the organization’s ability to operate with very low overhead costs. You’ve heard of the organization before, but it did not seem like the organization was of the size that it could operate very efficiently since they provided relief items to mostly third world countries. Upon further examination, it comes to your attention is the substantial revenue claimed given the majority of its income is in-kind donations of pharmaceuticals. Although pharmaceuticals can be very expensive, these (you are told) are close to the expiration date and therefore, by law, they cannot be sold to customers in the United States. They are able to be utilized in foreign countries. The value of the in-kind pharmaceutical donations was in the financials as $1.6 billion. The more you review the financials the more you feel like something just doesn’t seem right. Before you spend more time on the project, you approach your manager to run the scenario by her.

After a few minutes of your discussion, the manager agrees that something doesn’t seem quite right. She asks you to put together a memo to her that details:

  • What you have found in your review regarding accounting issues;
  • What you believe the appropriate accounting treatment should be on items you are questioning;
  • Any positive or negative informational items you can find regarding the charity by researching it online; and
  • In the case of suspicious activity, there are likely AI technology options that could help with narrowing down the issues, so be sure to make at least one AI application recommendation in your letter.

Paper Requirements:

  • You will be required to come up with fictional data for your memo. It may be advantageous to lay them out at the beginning of the letter for your instructor to follow more easily.
  • Submit your memo response in a 3-4-page document in MS Word.
  • Please make sure your responses are well written.
  • Assignment should follow APA guidelines with respect to use of subheadings, 1” margins, and double spaced.
  • The required number of pages for the assignment does not include the title page and references page.
  • References need to include your textbook plus two additional credible academic references. All sources used, including your textbook must be referenced; paraphrased and quoted material must have accompanying citations and cited per APA guidelines.

C++ Programming Assignment

Programming

Implement the class Tiktok discussed below. You may assume both iostream and string libraries are included, you may not use any other libraries. There are 60 seconds in a minute, 3600 seconds in an hour, 60 minutes in an hour. The 24-hour clock convention goes from 0:0:0 to 23:59:59. Read everything before starting that way you get a better sense on what member variables you need and how you want to implement the member functions. Note that what we expect to see in the console output is not necessarily what we may want to store as member variables.

It may be useful to recall that the modulus operator “%” can be used to obtain the remainder of integer division, also the “+” operator may be used to concatenate strings, and the function std::to_string(int) takes an integer and returns the string equivalent of that integer, presumably for concatenating a string with an integer.

  • Implement the default constructor which sets the initial state of Tiktok to correspond to time 0:00:00 in 24-hour clock convention (or 12:00:00 AM 12-hour clock convention).
  • addSeconds adds the number of seconds passed into the function to Tiktok. If the amount of seconds to add is negative do nothing. There is no upper limit to the amount of seconds that can be added.
  • addMinutes adds the number of minutes passed into the function to Tiktok. If the amount of minutes to add is negative do nothing. There is no upper limit to the amount of minutes that can be added.
  • addHours adds the number of hours passed into the function to Tiktok. If the amount of hours to add is negative do nothing. There is no upper limit to the amount of hours that can be added.
  • display24 prints to the console the time stored in Tiktok using 24-hour convention; with the following format: XX:XX:XX, followed by a newline.
  • display12 prints to the console the time stored in Tiktok using 12-hour convention. It will print AM or PM appropriately; with the following format XX:XX:XX XM, followed by a newline
  1. Below is the class definition for Tiktok, presumably in some header file. After planning out your design declare your member variables in the private field of the class.
     class Tiktok {_x000D_
          public:_x000D_
                Tiktok();            _x000D_
                void addSeconds(int s);_x000D_
                void addMinutes(int m);_x000D_
                void addHours(int h);_x000D_
                void display24() const;_x000D_
                void display12() const;_x000D_
    _x000D_
          private:_x000D_
                //TODO: Declare any member variables you think you will need. _x000D_
    
  2. Below is example usage for Tiktok :
  3.       void main() {_x000D_
                Tiktok tt; // Declare an instance of Tiktok_x000D_
    _x000D_
                tt.addHours(48);_x000D_
                tt.display12();// 12:0:0 AM_x000D_
                tt.display24();// 0:0:0_x000D_
                cout << endl_x000D_
    

    tt.addSeconds(60);_x000D_
    tt.display12();// 1:0:0 AM_x000D_
    tt.display24();// 1:0:0_x000D_
    cout << endl;_x000D_
    
    tt.addHours(10);_x000D_
    tt.addMinutes(59);_x000D_
    tt.addSeconds(59);_x000D_
    tt.display12();// 11:59:59 AM_x000D_
    tt.display24();// 11:59:59_x000D_
    cout << endl;_x000D_
    
    tt.addSeconds(1);_x000D_
    tt.display12();// 12:0:0 PM_x000D_
    tt.display24();// 12:0:0_x000D_
    cout << endl;

    tt.addSeconds(11 * 3600 + 12 * 60 + 8); //11hr*3600s/hr + 12m*60s/m + 8s = 40328s_x000D_
    tt.display12();// 11:12:8 PM_x000D_
    tt.display24();// 23:12:8_x000D_
    cout << endl;_x000D_
    
    tt.addMinutes(47);_x000D_
    tt.display12();// 11:59:8 PM_x000D_
    tt.display24();// 23:59:8_x000D_
    cout << endl;_x000D_
    
    tt.addSeconds(52);_x000D_
    tt.display12();// 12:0:0 AM_x000D_
    tt.display24();// 0:0:0_x000D_
    cout << endl;_x000D_
    

    }

Implement the member functions of Tiktok below, assume this being done in a separate source file. Be as neat and syntactically correct as possible.

a) Constructor:

b) addSeconds:

c) addMinutes:

d) addHours:

e) display24:

f) display12:

Social Science journals – Savvy Essay Writers | savvyessaywriters.net

Social Science journals – Savvy Essay Writers | savvyessaywriters.net

Select 2 different Social Science journals (articles must be within the last 5 years). Also the social science journals, such as Psychological Science, American Psychologist, Current Directions in Psychological Science, American Sociological Review, American Journal of Sociology, Clinical Psychological Science, Social Forces, Social Problems, Journal of Health and Social Behavior, Psychological Science in the Public Interest, Journal of Marriage and the Family, Criminology

· On a word document present a listing of at least 4 articles in each journal and a brief description of them (2-3 sentences should be sufficient and be sure to indicate the type of research used, e.g., descriptive, evaluative, explanatory, exploratory, or review/ theoretical (there are no results presented).

· Select one of the articles described and propose at least 3 research questions with a brief justification of each.

· Create two reference citations (one from each journal – this gives you practice with APA reference citations)

 

Looking for a Similar Assignment? Order now and Get 10% Discount! Use Coupon Code “Newclient”

 

Looking for a Similar Assignment? Order now and Get 10% Discount! Use Coupon Code “Newclient”

The post Social Science journals appeared first on Essay Writers.


Social Science journals was first posted on June 29, 2020 at 1:23 am.
©2020 "Essay Writers". Use of this feed is for personal non-commercial use only. If you are not reading this article in your feed reader, then the site is guilty of copyright infringement. Please contact me at savvyessaywriters@gmail.com

Source link


Social Science journals was first posted on June 28, 2020 at 9:25 pm.
©2020 "My Assignment Geek". Use of this feed is for personal non-commercial use only. If you are not reading this article in your feed reader, then the site is guilty of copyright infringement. Please contact me at savvyessaywriters@gmail.com

ORDER NOW 

Design Class Project…

So this for a design class. What i want is designing a road sign the applies to the terms and roles posted below
 
 
 
 
Here are terms and mechanical specifications for the road sign project:
1.  11 x 17 no bleed
2.  Use Illustrator or InDesign
3.  Label should appear under each sign
4.  Turn in print-ready PDF with trim/crop marks
Terms:
1.  Native American Village
2.  Ant Farm
3.  Baseball Field
4.  Checkers Area
5.  Fortune Teller
6.  Baseball Field
7.  Red Light District
8.  Botanical Gardens
9.  Kite Flying Area
10. Nuclear Power Plant
11. Earthquake Fault Zone
12. Paratrooper Landing
13. (One sign of your own choice)
The post Design Class Project… ACADEMIC ASSISTERS. ACADEMIC ASSISTERS.

>>>Click here to get this paper written at the best price. 100% Custom, 0% plagiarism.<<<

The post Design Class Project… appeared first on First Class Essay Writers.