Entries by Student

write my assignment 10782

Views of Responsible Officials

An effective way to ensure that a report is fair, complete, and objective is to include comments by responsible management officials being audited. Including the views of responsible officials produces a report that shows not only what was found and what the auditors think about it but also what the responsible persons think about it and what they plan to work about it.

Auditors should normally ask responsible officials to comment in writing on the reported findings, conclusions and recommendations, and state their planned corrective actions. A copy of the written comments or a summary of them should be included in the audit report. Auditors should evaluate the comments fairly and objectively. When the comments oppose the report’s findings, conclusions, or recommendations, and the auditors agree with the comments, they should modify the audit report accordingly. On the other hand, if the auditors believe the comments are not valid, the auditors should state the reasons for the disagreement in a fair and objective manner.

 

"Not answered?"


Get the Answer

write my assignment 30337

How to count total lines words and chars in two files using command line arguments and how to implement find char.

This assignment involves writing a C++ program to identify and count lines, words, and

characters. For the purpose of this assignment, we define a “word” as a sequence of characters

that are not whitespace characters. Words are delimited by one or more whitespace characters.

A whitespace character, such as a space, tab, or newline, is any character for which the

<cctype> function isspace() returns a value of true.

The operation of your program is controlled by the command line arguments that are passed to

your program. Command line arguments consist of an optional set of flags arguments (a flag

argument is an argument whose first character is a dash), followed by an optional list of

filenames. If no filenames are specified, the program should read from standard input.

For each file specified (or, in the case of no file names specified, the standard input), the

program must read the entire input and produce a count of characters, lines, and words. The

output should be printed, one line per file, as follows:

Lines words characters filename

The numerical output (lines, words, characters) should be printed right justified in columns that

are 12 characters wide. The filename should be printed left justified in the fourth column. In the

case where the program in reading standard input, no filename should be printed.

If the program reads multiple files, then it should also provide a line at the end of the output with

a total of all of the lines, words and characters in all of the files that were processed. The totals

are tagged with the label “total”:

totalLines totalWords totalCharacters total

If the program is run with a flag in the form “-findchar=x”, then the program must also count the

number of times it sees the character x in each file.

For example if I run the program by saying

program -findchar=m infile1 infile2

Then the output might be:

10 200 1000 infile1

20 150 1010 infile2

30 350 2010 total

m: 3 20 100 infile1

m: 0 0 0 infile2

m: 3 20 100 total

1 CS280 Programming Assignment 1

Spring 2017 This means that the letter m appears on 3 different lines in infile1, in 20 different words, for a

total of 100 times

If the program is run with a flag in the form “-findword=thisword”, then the program must count

the number of times it sees the word thisword in each file.

For example if I run the program by saying

program -findword=this infile1

Then the output might be:

10 200 1000 infile1

this: 7 12 infile1

This means that the word this appears on 7 different lines for a total of 12 times.

The program should accept multiple -findchar= arguments and multiple -findword= arguments,

in any order. The output should be counts, then all findchar cases in alphabetical order, then all

findword cases in alphabetical order

The student will be provided with a test script, a set of test files, and a series of test cases.

There are several error cases that must be handled:

Error Action A file is not found Print “File filename is not found” and stop An

argument is poorly formed (a known

argument is missing the = sign, has nothing

after the = sign, or (in the case of findchar,

has more than one character after the =) Print “Argument arg is poorly formed” and

stop An argument is not recognized Print “Argument arg is not recognized” and

stop A flag is duplicated Ignore the fact that a particular flag argument

is duplicated. Only process each letter or

word one time no matter how many times it is

specified on the command line A file name appears more than once The file should be processed each time the

name appears in the list 2 CS280 Programming Assignment 1

Spring 2017 DUE DATES AND TEST CASES

On Feb 6, the following test cases will be due and must pass:

– Compile

– Count lines, words and characters in one file

– Correctly handle the file not found error case

– Detect poorly formed arguments

– Detect unrecognized arguments

On Feb 13, the following test cases will be due and must pass:

– All Feb 6 test cases

– Handle multiple files

– Handle reading from standard input

– Case of single findword

On Feb 20, the following test cases will be due and must pass:

– All Feb 13 cases

– Full implementation of findword

– Full implementation of findchar

The first two deliverables will have a 3 day grace period, where 10% of the grade for those

deliverables is lost for every day of lateness.

The final deliverable will have a 7 day grace period, where 10% of the grade for the deliverable

is lost for every day of lateness

Sample files and test cases will be provided and will automatically populate in Vocareum. 3

 

"Not answered?"


Get the Answer

write my assignment 9139

Problem 2. Betty and Bob buy a 2 year bond with face and maturity value of $100 and coupons of $6, 14, 9, and 5 in that order and is priced to yield 16% per annum compounded semiannually.

           a Compute the price correct to 2 places after the decimal point.

           b Compute the dollar duration, correct to 2 places after the decimal place. You

             must use calculus.

           c Compute the modified duration, correct to 2 places after the decimal place.

             State your answer in years.

           d Compute the Macaulay duration, correct to 2 places after the decimal point, by

              using the previous results. State your answer in years.

           e Compute the Macaulay duration, correct to 2 places after the decimal point, by

                using the definition of Macaulay duration. Compare the results of parts d and

                e.

 

"Not answered?"


Get the Answer

write my assignment 12773

Assignment Guidelines – Formal Research-based ProposalYou will identify a problem or issue within an organization. This may be a current place of employment or a community group, such as a church, school, homeowner’s association, daycare, recreation center, and so on. The assignment objective is to propose a solution to the problem or issue, and to present that solution to a decision-maker or group of decision-makers who can implement the recommendation.Over the course of the term, you will develop a concrete, practical solution to the problem that can be implemented. Reference sources will be included that explain the problem, issue and/or support the solution. The proposal will include a discussion of resources necessary to implement the solution, the timeline, and the benefits of doing so. The proposal will include the following components:cover pageletter/memo of transmittaltable of contentsexecutive summaryintroductionbody of the proposalconclusion stated as a recommendation for implementation of the solutionend matter to include reference page and any other data suitable for this section of the reportThe proposal must be no fewer than 2,000 words, no more than 3,000. The word count includes all components.

 

"Not answered?"


Get the Answer