Public financial management is critical for successful delivery of public services. The prime objective of public financial management is to ensure that public resources allocated to projects and programmes through covered entities are applied economically, efficiently and effectively to enhance value for money in public spending. Contrary to expectation, public financial management in Ghana is bedevilled with gross infractions, irregularities and malpractices which deny the citizens the quality of public service delivery they deserve. The current Auditor General’s Report on Public Accounts of the central government agencies, the local governments and educational institutions reveal that several millions of Ghana Cedis is lost to financial impropriety and malpractices. This has been on the increase over the years. surely, these occurrences should attract policy attention. Ghana Moni is a Civil Society Organisation with the prime aim of demanding and promoting accountability in Ghana. Ghana Moni is organising an essay writing competition for Final Year Accountancy Students in all Universities in Ghana on the topic: Accounting for Financial Impropriety in Public Financial Management in Ghana. The aim of the competition is to gather fresh and further evidence on the causes and practical remedies of the persistent misuse of public resources. The award for winners is GHS100,000.00. The deadline for submission is 48 hours from now. Required: Make your entry into the competition in strict compliance with these requirements: i) Abstract (Not exceeding 100 words) ii) Introduction (Not exceeding 200 words) iii) Taxonomy of financial impropriety3 (Not exceeding 300 words) iv) Causes of financial impropriety in the public sector (Not exceeding 600 words) v) Practical remedies of financial impropriety (Not exceeding 600 words) vi) Conclusion (Not exceeding 100 words)
In: Accounting
Public financial management is critical for successful delivery
of public services. The prime objective of public financial
management is to ensure that public resources allocated to projects
and programmes through covered entities are applied economically,
efficiently and effectively to enhance value for money in public
spending. Contrary to expectation, public financial management in
Ghana is bedevilled with gross infractions, irregularities and
malpractices which deny the citizens the quality of public service
delivery they deserve. The current Auditor General’s Report on
Public Accounts of the central government agencies, the local
governments and educational institutions reveal that several
millions of Ghana Cedis is lost to financial impropriety and
malpractices. This has been on the increase over the years. surely,
these occurrences should attract policy attention.
Ghana Moni is a Civil Society Organisation with the prime aim of
demanding and promoting accountability in Ghana. Ghana Moni is
organising an essay writing competition for Final Year Accountancy
Students in all Universities in Ghana on the topic: Accounting for
Financial Impropriety in Public Financial Management in Ghana. The
aim of the competition is to gather fresh and further evidence on
the causes and practical remedies of the persistent misuse of
public resources. The award for winners is GHS100,000.00. The
deadline for submission is 48 hours from now.
Required:
Make your entry into the competition in strict compliance with
these requirements:
i) Abstract (Not exceeding 100 words)
ii) Introduction (Not exceeding 200 words)
iii) Taxonomy of financial impropriety3 (Not exceeding 300
words)
iv) Causes of financial impropriety in the public sector (Not
exceeding 600 words)
v) Practical remedies of financial impropriety (Not exceeding 600
words)
vi) Conclusion (Not exceeding 100 words)
In: Accounting
EMPLOYEE (Inheritance)
N: New employee
P: Compute paychecks
R: Raise wages
L: List all employees
Q: Quit
Enter command: n
Enter name of new employee: Plumber, Phil
Hourly (h) or salaried (s): h
Enter hourly wage: 40.00 (Note: Do Not VALIDATE)
N: New employee
P: Compute paychecks
R: Raise wages
L: List all employees
Q: Quit
Enter command: n
Enter name of new employee: Coder, Carol
Hourly (h) or salaried (s): s
Enter annual salary: 80000.00 (Note: Do not VALIDATE.)
N: New employee
P: Compute paychecks
R: Raise wages
L: List all employees
Q: Quit
Enter command: p
Enter number of hours worked per week by plumber, Phil: 50
Pay: $2,200 (NOTE: This is calculated by the program
based on regular and overtime pay )
Enter number of hours worked per week by Coder, Carol: 50
Pay: $1,538.46 (NOTE: This is calculated by the program.
Divide salary by 52(weeks))
N: New employee
P: Compute paychecks
R: Raise wages
L: List all employees
Q: Quit
Enter command: r
Enter percentage increase: 4.5
Name New Wages
--------------- -----------------
Plumber, Phil $41.80/hour
Coder, Carol $83,600.00/year
(NOTE: For hourly, display hourly wage; for salary, display annual
salary.)
N: New employee
P: Compute paychecks
R: Raise wages
L: List all employees
Q: Quit
Enter command: L
Name hourly wages
--------------- -----------------
Plumber, Phil $41.80/hour
Coder, Carol $32.15/hour NOTE: Divide salary by 52
and then further divide by the number of hours worked per week. If no hours are provided
assume 40 hours per week.
Enter command : q
The program will repeatedly prompt the user to enter a command, which it then executes. The program will not terminate until the user enters the command q. Note that the list of commands is redisplayed after each command has been executed.
Write three classes that store information about an employee
Employee (abstract). Instances of this class will store an employee name and the employee’s hourly wage. Methods will include getters and setters for the name and hourly wage; a method that increases the hourly wage by a given percentage and an abstract method named computePay that computes the weekly pay for the employee when given the number of hours worked.
Hourly Employee extends Employee. The constructor will take a name and hourly wage as its parameters. Methods will include computePay and toString. To determine the employee’s pay, computePay multiplies the first 40 (or fewer) hours by the employee’s hourly wage. Hours worked beyond 40 are paid at time and a half(1.5 times the hourly wage). toString returns a string containing the employee’s name and hourly wage.
SalariedEmployee extends Employee. The constructor will take a name and annual salary as its parameters. Methods will include a getter and a setter for the annual salary, along with computePay and toString. (Note that the salary will need to be converted to an hourly wage, because that’s what the Employee class requires. To do this conversion, assume that a salaried employee works 40 hours a week for 52 weeks). computePay always returns 1/52 of the annual salary, regardless of the number of hours worked. toString returns a string containing the employee’s name and annual salary.
Use an array to store the employee records. Each element of the array will store a reference to an Hourly Employee object or a SalariedEmployee object. The array used to store employee objects must contain only one element initially. When the array becomes full, it must be doubled in size.
Here are a few other requirements for the program:
abstract class Employee {
String empName;
double empWage;
static int empCount;
{ }
void increaseEmpWage(double increasePerc) { }
abstract double computePay();
}
class HourlyEmployee extends Employee {
double hours;
HourlyEmployee(String empName, double empWage) { }
double computePay() { //compute both regular time and overtime
based on hours }
String toString() { //return empname and wage }
}
class SalariedEmployee extends Employee {
SalariedEmployee(String empName, double annualSalary) { //set name
and wage divide by 52, divide by 40 }
double computePay() { Multiply wage by 40 }
String toString() { //return empname and annual salary }
}
class EmployeeDriver {
//declare array
public static void main(String[] args) {
//display menu in a do/while loop (call menu and selectOptions methods)
}
public static String employeeMenu() {//display menu and return
user’s selection}
public static selectOptions (String user) {
switch (user){
case "N": newEmployee();
case "P": computePaycheck();
case "R": raiseWages();
case "L": listEmployees();
}
public static void newEmployee() {
//grab input from user such as name, whether the employee is hourly
or salaried,
//hourly wage or salary
//create employee object based on the input
//expand array as needed and assign new object to the proper index
of the array
}
public static void computeWeeklyPaycheck() {
//display weekly pay for all employees using a loop.
//For hourly employees first grab hours, set hours to instance variable
//then call computePay which will call the
//appropriate overridden method for either hourly or salaried employee
}
public static void raiseWages() {
//grab percentage from user and raise empWage for all employees
using loop
}
public static void listEmployees() {
//display information for all employees using loop and toString
method
}
}
In: Computer Science
How might the language a person uses influence his
or her social status and credibility? Give examples
of statements often categorized as "powerless" and
statements considered to be "powerful."
Compare and contrast equivocal language, relative
words, and abstract language.
When do you consider it acceptable to use euphe-
misms and equivocal language? When do you think
such language is confusing or unfair?
Identify examples of troublesome language in a
movie or television show. How could you become
more mindful of similar patterns in your own
communication?
In your own words, describe the similarities and dif-
ferences between characteristically male and female
language as outlined on pages 116-119.
How do these similarities and differences compare to
your use of language? To the linguistic style of people
you know well?
If the language you use is closest to the "masculine"
styles described, when and how might you use "femi-
nine" strategies to expand your repertoire? If your
style is more "feminine," when and how might you
use "masculine" styles effectively?
In: Psychology
Within the global environment there is much discussion regarding moving from US GAAP (Generally Accepted Accounting Principles) to IFRS (International Financial Reporting Standards). We know that corporations are global now more than ever, which results in a diverse group of professional accountants worldwide working together for a common goal, which is to report information for both internal and external users. This diversity does result in variations in practice however the principles and guiding rules and regulations proposed under IFRS will allow for uniformity on a global basis. This move to IFRS from GAAP is not yet finalized however much debated.
Prepare a PowerPoint presentation with a minimum of 7 slides with an abstract for references and a reference slide.
In: Accounting
1: A nurse may have difficulty implementing a middle-range theory that
a. Does not support personal experience
b. Results in an intended outcome
c. Has applicability in many different nursing environments
d. All of the above
|
2: Middle-range theories are based on |
|
a. Research |
|
b. Personal experience |
|
c. Observation |
|
d. All of the above |
|
3: To be considered a middle-range theory, what does a nursing theory require? |
|||||||
|
a. Support from the academic nursing community |
|||||||
|
b. Ties to pre-existing nursing theories |
|||||||
|
c. A desired outcome |
|||||||
|
d. Processes that apply to multiple nursing environments
|
|||||||
|
4: Based on what you have learned in the text, which of the following could be said about middle-range nursing theory theories as compared to grand nursing theories? |
|||||||
|
a. They are less precise. |
|||||||
|
b. They are easier to measure. |
|||||||
|
c. They are more abstract. |
|||||||
|
d. They are more valuable to nursing. |
|||||||
In: Nursing
The ( ) method will be called if a method is called from within a subclass that overrides a super class method.
In Java the ( ) keyword is used to prevent changes being made to a variable.
The property of ( ) refers to the ability of an object to take on many forms.
In Java, a character constant’s value is its integer value in the ( ) character set.
An interface requires each of the interface’s methods to be ( ) or declared abstract.
The ( ) statement forces an exception object to be generated.
Through the process of ( ) , a programmer hides all but the relevant data about an object in order to reduce complexity and increase efficiency.
Re-implementing an inherited method in a subclass to perform a different task from the parent class is called ( ) .
In a class definition, the special method that is called to create an instance of that class is known as a/an ( ) .
In Java, objects are passed as ( ) addresses.
List of words to choose from
Double, literal, overriding, bytecode, implemented, polymorphism, subclass, catch, protected, throws, constructor, interface, unicode, inheritance, int, overloading, memory, class, string, private, throw, main, extends, final, string literal, runtime, abstraction, prublic, jvm
In: Computer Science
1.An accounting information system is a set of interrelated:
A. Activities and documents only.
B. Activities and technologies only.
C. Documents and technologies only.
D. Activities, documents and technologies.
2.The components of an accounting information system are designed to collect ___ and report ___.
A. Data; information
B. Data; data
C. Information; information
D. Information; data
3.An accounting information system is defined by the text as a set of three interrelated elements. Which of the following choices best gives an example of each element?
A. Buying inventory, selling inventory, balance sheet
B. Buying inventory, sales invoice, general ledger software
C. Selling inventory, sales invoice, balance sheet
D. Selling inventory, writing a check, general ledger software
4.An accounting information system transforms inputs into outputs via processes such as:
A. Journalizing transactions and posting them to the ledger
B. Identifying the elements of the FASB Conceptual Framework
C. Always utilizing information technology
D. Recognizing and adapting to the cost-benefit constraint
5.Which of the following best fits the definition of an accounting information system explained in the text?
A. A checkbook register
B. A publicly-traded corporation's financial statements
C. Processed source documents leading to the general purpose financial statements
D. An Excel spreadsheet of financial statement ratios
6.April compiled checks, receipts and invoices, then entered them into Quickbooks. She printed out her financial statements and took them to the bank as documentation for a loan application. In that scenario, checks, receipts and invoices could be referred to as:
A. Documents and data
B. Data and information
C. Documents and information
D. Documents, data and information
7.Claudia borrowed money from her bank, signing a five-year note payable. She then calculated the monthly payment needed to pay off the loan within three years. Which of the following statements is/are most true?
A. The required monthly payment is an example of "information," as the term is used in the definition of an accounting information system.
B. The five-year note payable would be considered a "technology" if it were prepared with computer software.
C. Both the required monthly payment is an example of "information," as the term is used in the definition of an accounting information system and the five-year note payable would be considered a "technology" if it were prepared with computer software are true.
D. Neither the required monthly payment is an example of "information," as the term is used in the definition of an accounting information system nor the five-year note payable would be considered a "technology" if it were prepared with computer software is true.
8.Claudia borrowed money from her bank, signing a five-year note payable. She then calculated the monthly payment needed to pay off the loan within three years. Based on the definition of an accounting information system provided in the text, the five-year note payable could be considered: (i) an input, (ii) an output, (iii) a document.
A. I and II only
B. I and III only
C. II and III only
D. I, II and III
9.Eugene is a self-employed business owner. In February 2011, he gathered together his income and expense records for 2010. He used them, along with appropriate software, to prepare his tax return, which he then transmitted to the Internal Revenue Service. Has Eugene used an accounting information system based on the definition provided in the text?
A. Yes, because he used software to prepare his tax return.
B. Yes, because all elements of the definition are present.
C. No, because all accounting information systems must produce general purpose financial statements.
D. No, because no internal decision maker is mentioned.
10.The vice president for customer service of First United Bank determined that Lee had overpaid his mortgage. The bank sent Lee a letter asking him if he wanted a refund of the overpayment or if he wanted to apply it to future mortgage payments. Has the vice president for customer service used an accounting information system based on the definition provided in the text?
A. No, because no mention is made of software.
B. No, because the letter does not constitute an output.
C. No, because no mention is made of general purpose financial statements.
D. Yes, because all elements of the definition are present or implied.
In: Accounting
Discuss the ethical implications of not being open, fully honest, and transparent when communicating project progress. What if you are behind but feel you and your team can get caught up before anyone notices much? Should you neglect to mention certain embarrassing details in your meeting and just highlight the good stuff? Why or why not?
What are the important types of meetings and what subjects should be discussed at meetings with project stakeholders? At what project stages should meetings take place? What kind of information should be presented? Discuss the overall importance of appropriate detail levels, material presented, and issue highlighting that can occur in different meeting types. We did not create a Project Communications Plan for our simulation. Why do you think most projects should have such a plan, or not?
Short answers please..
In: Computer Science
In: Economics