SlideShare a Scribd company logo
1 of 13
INSTRUCTIONS: Please organize your answers as a Word
document with 12-point font. BE SURE TO SHOW YOUR
WORK SO THAT PARTIAL CREDIT MAY BE ASSIGNED.
I. WorldCom, Inc. – Capitalized Costs and Earnings Quality (14
points total)
Answer questions (e), (f), and (g) of the WorldCom case
(attached here). Be sure to show your work so that partial credit
can be assigned.
II. Winnebago (36 points total)
Attached below are excerpts from the Annual Report of
Winnebago Industries for their fiscal year ended on August 30,
2014. Use these excerpts to answer the following questions:
(SHOW WORK)
(a) Based solely on information in Winnebago’s Cash Flow
Statement, what was the net book value of property, plant, and
equipment sold for cash during fiscal 2014? (6 points)
(b) Based on data for Winnebago’s property, plant, and
equipment (PP&E) at 8/31/2013 and depreciation expense for
fiscal 2014, estimate the weighted average useful life of their
PP&E subject to depreciation. – (Hint: Keep in mind that Note 6
on Goodwill and Amortizable Intangible Assets states that
amortization expense for fiscal 2014 was zero.) (6 points)
(c) Estimate what Winnebago’s Gross Profit would have been
for fiscal 2014 if they had used FIFO instead of LIFO to
account for their inventories. (6 points)
(d) Note that finished goods inventory decreased from
8/31/2013 to 8/30/2014 while both work-in-process and raw
materials increased during the same period. Describe in one or
two sentences why these inventory component changes are
consistent with the nearly 18% increase in Winnebago’s net
revenues for fiscal 2024? (6 points)
(e) Show the summary journal entry made by Winnebago to
record income tax expense for their year ended August 30,
2014. (6 points)
(f) Winnebago has a long-term deferred tax liability that
increased from $917 thousand to $992 thousand during fiscal
2014. Does this imply that depreciation expense for financial
reporting purposes was greater or less than depreciation expense
for tax reporting purposes? Explain the basis for your answer.
(6 points)
Start
Declaration
num index=0, value, sumCond = 0, countCond=0, average
//set up the loop, a for loop
while (index <=9)
{
input "Please enter a value: ", value
if (value >= 500)
{
sumCond = sumCond + value
countCond = contCond + 1 // countCond++
}
}
average = sumCond / countCond
output "There were ", countCond , " that met the
condition"
output "And, there sum ", sumCond
output "Therefore, their average is " average
Stop
//Declaring an array
num[10] rooms // this is the size of the array 10 elements
//rooms[0] to rooms[9]
num index, sum=0
//let's start reading the data in the array using for-loop
for(index=0; index <10; index++)
{
input "Please enter the number of people in room ", index+1
input rooms[index]
}
index =0
while (index <10)
{
sum = sum + rooms[index]
index ++
}
output "T
Start
Declaration
num index, value, sumCond = 0, countCond=0, average
//set up the loop, a for loop
for (index=0; index <=9; index ++)
{
input "Please enter a value: ", value
if (value >= 500)
{
sumCond = sumCond + value
countCond = countCond + 1 //
countCond++
}
}
average = sumCond / countCond
output "There were ", countCond , " that met the
condition"
output "And, there sum ", sumCond
output "Therefore, their average is " average
importjavax.swing.*;
publicclass Accu {
publicstaticvoid main(String[] args) {
int index, value, sumCond=0, countCond=0;
//starting loop- for loop
for (index=0; index <=9; index++){
}
}
}
mValue = JOptionPane.showInputDialog("Enter a value: ");
value = Integer.parseInt(mValue);
Sheet1index = index +1<==>index++index = index - 1index --
indexvalue accuavg014426103111401152136avg2.6The sum =
13 , and average = 2.6
I want to read five (5) values and find their sum and average.
Start
declaration
num index, value
num accu = 0, avg
for (index = 1; index <=5; index++)
{ //BEGIN the loop
input "Enter a value: ", value
accu = accu + value // the accu
}
avg = accu / 5
output "The sum = ", sum, " , and average = ", average
Stop
Sheet2
Start
declaration
num sale1, sale2, sale3, sale4, sale5, subtotal,
disCountedAmt, discount, taxAmount, total
num TAXRATE = .0825
input "Enter value sales: "
input sale1, sale2, sale3, sale4, sale5
subtotal = sale1 + sale2 + sale3 + sale4 + sale5
//let's go ahead and calculate the discount
if (subtotal >= 10000) then
discount = .15
else if (subtotal >= 7500) then
discount = .10
else if (subtotal >= 5000) then
discount = .07
else if (subtotal >= 2500) then
discount = .05
else
discount = .03
discountedAmt = subtotal - (subtotal * discount)
taxAmount = discountAmt * TAXRATE
total = discountedAmt + taxAmount
output "Subtotal = $", subtotal
output "discountedAmount = $",discountedAmt
output "Tax Amount =
$",taxAmount
output "Total = $", total
Stop
Sheet3
Start
declaration
num value, index = 1
num evenSum= 0, avg
intialization while (index <= 10)
{
input "Please enter your value: ",
value
if (value mod 2 == 0)
{
evenNum = evenNum +value
}
index ++
}
output "The sum = ", accu, " and the
average = ", accu/5
Stop
while ( condition)
{
body of the loop;
}
Sheet56!=6*5*4*3*2*1ValueIndexFactorial661
Start
declaration
num value, factorial=1, index
input "Enter your value(1-10): ", value
for (index = value; index >=1; index--)
{
factorial = factorial * index
}
output "The result is " , factorial
Stop
Sheet420220 is an even number
num x = 10, y = 50
if (x > y) // either true of false
output x , “ is greater than “, y
else
output y, “ is greater than “, x
Relational operators (comparing)
== a = 9 if (a == 9
> ( 9 > 3)
>= (9 >= 3) // 9 is greater than 3 ( 9 >= 33) ( 9 >=
9)
< ( 9 < 3) // false
<= ( 9 <= 13) // True
<> or != Not equal to ( 9 <> 3) (9!=3)
string sign
input sign//
If (sign == “Green”)
output “Move forward”
elseif (sing == “Red”)
output “Stop”
else
output “Either stop or drive through”
End if
output “outside the if block”
num score
string grade
input “Enter your score: “, score
if (score >= 90)
grade = “A”
elseif (score >= 80)
grade = “B”
elseif (score >= 70)
grade = “C”
elseif (score >= 60)
grade = “D”
else
grade = “F”
end if
output “your score was “, score, “, therefore your grade is “,
grade
Write a pseudo code to read three prices and test their subtotal.
If subtotal >= 5000, then the discount = .10, else if the subtotal
>= 2500 and < 5000, then the discount = .07, otherwise the
discount = .05
Start
num price1, price2, price3, subtotal, taxAmount, total, discount,
discountedAmount
num TAXRATE = .0825
ouput “Please enter your three prices: “
input price1, price2, price3
//calculation
subtotal = price1 + price2 + price3
if (subtotal >= 500) then
discount = .10
elseif (subtotal >= 2500) then
discount = .07
else
discount = .05
end if
discountedAmount = subtotal – (subtotal * discount)
TaxAmount = discountedAmount * TAXRATE
total = discountedAmount + TaxAmount
output “Your original subtotal =
$”, subtotal
output “Your discounted Amount = $”,
discountedAmount
output “Your discount =
”, discount * 100, “%”
output “Your tax amount =
$”, taxAmount
output “Your total =
$”, total
Stop
income = 25000 dep = 10
if (income <= 20000 AND dep >= 4) then
taxRate = .12
else
taxRate = .25
end if
Truth Table for AND === &&
T
AND
T
T
T
AND
F
F
F
AND
T
F
F
AND
F
F
income = 25000 dep = 10
if (income <= 20000 OR dep >= 4) then
taxRate = .12
else
taxRate = .25
end if
T
OR
T
T
T
OR
F
T
F
OR
T
T
F
OR
F
F
Not is unary
Not (T) = F
Not (F) = T
9 <> 3 that is true
Not(9)
Revisiting the score & grade program using logical opertors
num score
string grade
string flag = “F”
input “Enter your score: “, score
if (score < 0 OR score >=100) then
flag = “T”
elseif (score >= 90)
grade = “A”
elseif (score >= 80)
grade = “B”
elseif (score >= 70)
grade = “C”
elseif (score >= 60)
grade = “D”
else
grade = “F”
end if
if (flag == “T”) then
output “There is no such a score”
else
output “your score was “, score, “, therefore your grade is “,
grade
end if
Looping – iteration
num index
for (index = 1 ; index <= 10; index = index + 1)
{
output “Hello world”
}
for index = 1 to 10
output “Hello, Shaw!”
next index
num jar = 0, index
for (index=1; index <=5; index++) //index ++ index = index + 1
{
jar = jar + index
}
ouput index
output sum
output sum/ (index-1)

More Related Content

Similar to INSTRUCTIONS Please organize your answers as a Word document with.docx

C code This program will calculate the sum of 10 positive .docx
 C code This program will calculate the sum of 10 positive .docx C code This program will calculate the sum of 10 positive .docx
C code This program will calculate the sum of 10 positive .docx
aryan532920
 
Accountancy 503—Fall 2016 Tax Return 3a—15 points; Due Decemb.docx
Accountancy 503—Fall 2016    Tax Return 3a—15 points; Due Decemb.docxAccountancy 503—Fall 2016    Tax Return 3a—15 points; Due Decemb.docx
Accountancy 503—Fall 2016 Tax Return 3a—15 points; Due Decemb.docx
nettletondevon
 
Pre-Calculus Midterm Exam 1 Score ______ ____.docx
Pre-Calculus Midterm Exam  1  Score ______  ____.docxPre-Calculus Midterm Exam  1  Score ______  ____.docx
Pre-Calculus Midterm Exam 1 Score ______ ____.docx
ChantellPantoja184
 
Here is the grading matrix where the TA will leave feedback. If you .docx
Here is the grading matrix where the TA will leave feedback. If you .docxHere is the grading matrix where the TA will leave feedback. If you .docx
Here is the grading matrix where the TA will leave feedback. If you .docx
trappiteboni
 
1582627
15826271582627
1582627
tabish
 

Similar to INSTRUCTIONS Please organize your answers as a Word document with.docx (20)

C code This program will calculate the sum of 10 positive .docx
 C code This program will calculate the sum of 10 positive .docx C code This program will calculate the sum of 10 positive .docx
C code This program will calculate the sum of 10 positive .docx
 
Accountancy 503—Fall 2016 Tax Return 3a—15 points; Due Decemb.docx
Accountancy 503—Fall 2016    Tax Return 3a—15 points; Due Decemb.docxAccountancy 503—Fall 2016    Tax Return 3a—15 points; Due Decemb.docx
Accountancy 503—Fall 2016 Tax Return 3a—15 points; Due Decemb.docx
 
Pre-Calculus Midterm Exam 1 Score ______ ____.docx
Pre-Calculus Midterm Exam  1  Score ______  ____.docxPre-Calculus Midterm Exam  1  Score ______  ____.docx
Pre-Calculus Midterm Exam 1 Score ______ ____.docx
 
JavaCro'14 - JCalc Calculations in Java with open source API – Davor Sauer
JavaCro'14 - JCalc Calculations in Java with open source API – Davor SauerJavaCro'14 - JCalc Calculations in Java with open source API – Davor Sauer
JavaCro'14 - JCalc Calculations in Java with open source API – Davor Sauer
 
Cis 115 Effective Communication / snaptutorial.com
Cis 115  Effective Communication / snaptutorial.comCis 115  Effective Communication / snaptutorial.com
Cis 115 Effective Communication / snaptutorial.com
 
Cis 115 Enhance teaching / snaptutorial.com
Cis 115  Enhance teaching / snaptutorial.comCis 115  Enhance teaching / snaptutorial.com
Cis 115 Enhance teaching / snaptutorial.com
 
Cis 115 Education Organization -- snaptutorial.com
Cis 115   Education Organization -- snaptutorial.comCis 115   Education Organization -- snaptutorial.com
Cis 115 Education Organization -- snaptutorial.com
 
Cis 115 Education Organization / snaptutorial.com
Cis 115 Education Organization / snaptutorial.comCis 115 Education Organization / snaptutorial.com
Cis 115 Education Organization / snaptutorial.com
 
CIS 115 Exceptional Education - snaptutorial.com
CIS 115   Exceptional Education - snaptutorial.comCIS 115   Exceptional Education - snaptutorial.com
CIS 115 Exceptional Education - snaptutorial.com
 
CIS 115 Education for Service--cis115.com
CIS 115 Education for Service--cis115.com  CIS 115 Education for Service--cis115.com
CIS 115 Education for Service--cis115.com
 
CIS 115 Redefined Education--cis115.com
CIS 115 Redefined Education--cis115.comCIS 115 Redefined Education--cis115.com
CIS 115 Redefined Education--cis115.com
 
Here is the grading matrix where the TA will leave feedback. If you .docx
Here is the grading matrix where the TA will leave feedback. If you .docxHere is the grading matrix where the TA will leave feedback. If you .docx
Here is the grading matrix where the TA will leave feedback. If you .docx
 
CIS 115 Achievement Education--cis115.com
CIS 115 Achievement Education--cis115.comCIS 115 Achievement Education--cis115.com
CIS 115 Achievement Education--cis115.com
 
CIS 115 Education Counseling--cis115.com
CIS 115 Education Counseling--cis115.comCIS 115 Education Counseling--cis115.com
CIS 115 Education Counseling--cis115.com
 
CIS 115 Education in iCounseling ---cis115.com
CIS 115 Education in  iCounseling ---cis115.comCIS 115 Education in  iCounseling ---cis115.com
CIS 115 Education in iCounseling ---cis115.com
 
8 arrays and pointers
8  arrays and pointers8  arrays and pointers
8 arrays and pointers
 
Cis 115 Extraordinary Success/newtonhelp.com
Cis 115 Extraordinary Success/newtonhelp.com  Cis 115 Extraordinary Success/newtonhelp.com
Cis 115 Extraordinary Success/newtonhelp.com
 
List Processing in ABAP
List Processing in ABAPList Processing in ABAP
List Processing in ABAP
 
1582627
15826271582627
1582627
 
Ejer
EjerEjer
Ejer
 

More from dirkrplav

InstructionsW4 Nightingale Case A & B – 35 points - Individual A.docx
InstructionsW4 Nightingale Case A & B – 35 points - Individual A.docxInstructionsW4 Nightingale Case A & B – 35 points - Individual A.docx
InstructionsW4 Nightingale Case A & B – 35 points - Individual A.docx
dirkrplav
 
InstructionsView CAAE Stormwater video Too Big for Our Ditches.docx
InstructionsView CAAE Stormwater video Too Big for Our Ditches.docxInstructionsView CAAE Stormwater video Too Big for Our Ditches.docx
InstructionsView CAAE Stormwater video Too Big for Our Ditches.docx
dirkrplav
 
InstructionsTITLEF14-2Beginning an 8-column work sheet for a merch.docx
InstructionsTITLEF14-2Beginning an 8-column work sheet for a merch.docxInstructionsTITLEF14-2Beginning an 8-column work sheet for a merch.docx
InstructionsTITLEF14-2Beginning an 8-column work sheet for a merch.docx
dirkrplav
 
InstructionsUse and add the real life situation provided below t.docx
InstructionsUse and add the real life situation provided below t.docxInstructionsUse and add the real life situation provided below t.docx
InstructionsUse and add the real life situation provided below t.docx
dirkrplav
 
InstructionsThe objective of this assessment is to demonstrate y.docx
InstructionsThe objective of this assessment is to demonstrate y.docxInstructionsThe objective of this assessment is to demonstrate y.docx
InstructionsThe objective of this assessment is to demonstrate y.docx
dirkrplav
 
InstructionsThis assignment will be checked using anti-plagia.docx
InstructionsThis assignment will be checked using anti-plagia.docxInstructionsThis assignment will be checked using anti-plagia.docx
InstructionsThis assignment will be checked using anti-plagia.docx
dirkrplav
 
instructionss.docxjust to make sure againi need u to ext.docx
instructionss.docxjust to make sure againi need u to ext.docxinstructionss.docxjust to make sure againi need u to ext.docx
instructionss.docxjust to make sure againi need u to ext.docx
dirkrplav
 
InstructionsProblem #Point ValueYour Points14243446526167484915101.docx
InstructionsProblem #Point ValueYour Points14243446526167484915101.docxInstructionsProblem #Point ValueYour Points14243446526167484915101.docx
InstructionsProblem #Point ValueYour Points14243446526167484915101.docx
dirkrplav
 
InstructionsPlease answer the following question in a minimum.docx
InstructionsPlease answer the following question in a minimum.docxInstructionsPlease answer the following question in a minimum.docx
InstructionsPlease answer the following question in a minimum.docx
dirkrplav
 
InstructionsMy report is about the future of work and focuses the .docx
InstructionsMy report is about the future of work and focuses the .docxInstructionsMy report is about the future of work and focuses the .docx
InstructionsMy report is about the future of work and focuses the .docx
dirkrplav
 
InstructionsInstructions for the Microsoft Excel TemplatesThis wor.docx
InstructionsInstructions for the Microsoft Excel TemplatesThis wor.docxInstructionsInstructions for the Microsoft Excel TemplatesThis wor.docx
InstructionsInstructions for the Microsoft Excel TemplatesThis wor.docx
dirkrplav
 
Instructionsinstructions.docxFinal Lab ReportYou are requ.docx
Instructionsinstructions.docxFinal Lab ReportYou are requ.docxInstructionsinstructions.docxFinal Lab ReportYou are requ.docx
Instructionsinstructions.docxFinal Lab ReportYou are requ.docx
dirkrplav
 
InstructionsEach of your 2 replies must contain at least .docx
InstructionsEach of your 2 replies must contain at least .docxInstructionsEach of your 2 replies must contain at least .docx
InstructionsEach of your 2 replies must contain at least .docx
dirkrplav
 
InstructionsInstructions for numberguessernumberGuesser.html.docx
InstructionsInstructions for numberguessernumberGuesser.html.docxInstructionsInstructions for numberguessernumberGuesser.html.docx
InstructionsInstructions for numberguessernumberGuesser.html.docx
dirkrplav
 
InstructionsI need 3 pages of the four questions. That is abo.docx
InstructionsI need 3 pages of the four questions. That is abo.docxInstructionsI need 3 pages of the four questions. That is abo.docx
InstructionsI need 3 pages of the four questions. That is abo.docx
dirkrplav
 
InstructionsFor this assignment, collect data exhibiting a relat.docx
InstructionsFor this assignment, collect data exhibiting a relat.docxInstructionsFor this assignment, collect data exhibiting a relat.docx
InstructionsFor this assignment, collect data exhibiting a relat.docx
dirkrplav
 
InstructionsFor this week’s assignment, you will synthesize the .docx
InstructionsFor this week’s assignment, you will synthesize the .docxInstructionsFor this week’s assignment, you will synthesize the .docx
InstructionsFor this week’s assignment, you will synthesize the .docx
dirkrplav
 

More from dirkrplav (20)

InstructionsW4 Nightingale Case A & B – 35 points - Individual A.docx
InstructionsW4 Nightingale Case A & B – 35 points - Individual A.docxInstructionsW4 Nightingale Case A & B – 35 points - Individual A.docx
InstructionsW4 Nightingale Case A & B – 35 points - Individual A.docx
 
InstructionsView CAAE Stormwater video Too Big for Our Ditches.docx
InstructionsView CAAE Stormwater video Too Big for Our Ditches.docxInstructionsView CAAE Stormwater video Too Big for Our Ditches.docx
InstructionsView CAAE Stormwater video Too Big for Our Ditches.docx
 
InstructionsTITLEF14-2Beginning an 8-column work sheet for a merch.docx
InstructionsTITLEF14-2Beginning an 8-column work sheet for a merch.docxInstructionsTITLEF14-2Beginning an 8-column work sheet for a merch.docx
InstructionsTITLEF14-2Beginning an 8-column work sheet for a merch.docx
 
InstructionsUse and add the real life situation provided below t.docx
InstructionsUse and add the real life situation provided below t.docxInstructionsUse and add the real life situation provided below t.docx
InstructionsUse and add the real life situation provided below t.docx
 
InstructionsThe objective of this assessment is to demonstrate y.docx
InstructionsThe objective of this assessment is to demonstrate y.docxInstructionsThe objective of this assessment is to demonstrate y.docx
InstructionsThe objective of this assessment is to demonstrate y.docx
 
InstructionsThis assignment will be checked using anti-plagia.docx
InstructionsThis assignment will be checked using anti-plagia.docxInstructionsThis assignment will be checked using anti-plagia.docx
InstructionsThis assignment will be checked using anti-plagia.docx
 
instructionss.docxjust to make sure againi need u to ext.docx
instructionss.docxjust to make sure againi need u to ext.docxinstructionss.docxjust to make sure againi need u to ext.docx
instructionss.docxjust to make sure againi need u to ext.docx
 
InstructionsProvide an analysis of the affects of the publics.docx
InstructionsProvide an analysis of the affects of the publics.docxInstructionsProvide an analysis of the affects of the publics.docx
InstructionsProvide an analysis of the affects of the publics.docx
 
InstructionsProblem #Point ValueYour Points14243446526167484915101.docx
InstructionsProblem #Point ValueYour Points14243446526167484915101.docxInstructionsProblem #Point ValueYour Points14243446526167484915101.docx
InstructionsProblem #Point ValueYour Points14243446526167484915101.docx
 
InstructionsPlease answer the following question in a minimum.docx
InstructionsPlease answer the following question in a minimum.docxInstructionsPlease answer the following question in a minimum.docx
InstructionsPlease answer the following question in a minimum.docx
 
InstructionsMy report is about the future of work and focuses the .docx
InstructionsMy report is about the future of work and focuses the .docxInstructionsMy report is about the future of work and focuses the .docx
InstructionsMy report is about the future of work and focuses the .docx
 
InstructionsInstructions for the Microsoft Excel TemplatesThis wor.docx
InstructionsInstructions for the Microsoft Excel TemplatesThis wor.docxInstructionsInstructions for the Microsoft Excel TemplatesThis wor.docx
InstructionsInstructions for the Microsoft Excel TemplatesThis wor.docx
 
InstructionsResearch and write a brief answer to the following .docx
InstructionsResearch and write a brief answer to the following .docxInstructionsResearch and write a brief answer to the following .docx
InstructionsResearch and write a brief answer to the following .docx
 
Instructionsinstructions.docxFinal Lab ReportYou are requ.docx
Instructionsinstructions.docxFinal Lab ReportYou are requ.docxInstructionsinstructions.docxFinal Lab ReportYou are requ.docx
Instructionsinstructions.docxFinal Lab ReportYou are requ.docx
 
INSTRUCTIONSInstructionsPlease evaluate, display, and interpret t.docx
INSTRUCTIONSInstructionsPlease evaluate, display, and interpret t.docxINSTRUCTIONSInstructionsPlease evaluate, display, and interpret t.docx
INSTRUCTIONSInstructionsPlease evaluate, display, and interpret t.docx
 
InstructionsEach of your 2 replies must contain at least .docx
InstructionsEach of your 2 replies must contain at least .docxInstructionsEach of your 2 replies must contain at least .docx
InstructionsEach of your 2 replies must contain at least .docx
 
InstructionsInstructions for numberguessernumberGuesser.html.docx
InstructionsInstructions for numberguessernumberGuesser.html.docxInstructionsInstructions for numberguessernumberGuesser.html.docx
InstructionsInstructions for numberguessernumberGuesser.html.docx
 
InstructionsI need 3 pages of the four questions. That is abo.docx
InstructionsI need 3 pages of the four questions. That is abo.docxInstructionsI need 3 pages of the four questions. That is abo.docx
InstructionsI need 3 pages of the four questions. That is abo.docx
 
InstructionsFor this assignment, collect data exhibiting a relat.docx
InstructionsFor this assignment, collect data exhibiting a relat.docxInstructionsFor this assignment, collect data exhibiting a relat.docx
InstructionsFor this assignment, collect data exhibiting a relat.docx
 
InstructionsFor this week’s assignment, you will synthesize the .docx
InstructionsFor this week’s assignment, you will synthesize the .docxInstructionsFor this week’s assignment, you will synthesize the .docx
InstructionsFor this week’s assignment, you will synthesize the .docx
 

Recently uploaded

Spellings Wk 4 and Wk 5 for Grade 4 at CAPS
Spellings Wk 4 and Wk 5 for Grade 4 at CAPSSpellings Wk 4 and Wk 5 for Grade 4 at CAPS
Spellings Wk 4 and Wk 5 for Grade 4 at CAPS
AnaAcapella
 
Transparency, Recognition and the role of eSealing - Ildiko Mazar and Koen No...
Transparency, Recognition and the role of eSealing - Ildiko Mazar and Koen No...Transparency, Recognition and the role of eSealing - Ildiko Mazar and Koen No...
Transparency, Recognition and the role of eSealing - Ildiko Mazar and Koen No...
EADTU
 
QUATER-1-PE-HEALTH-LC2- this is just a sample of unpacked lesson
QUATER-1-PE-HEALTH-LC2- this is just a sample of unpacked lessonQUATER-1-PE-HEALTH-LC2- this is just a sample of unpacked lesson
QUATER-1-PE-HEALTH-LC2- this is just a sample of unpacked lesson
httgc7rh9c
 

Recently uploaded (20)

What is 3 Way Matching Process in Odoo 17.pptx
What is 3 Way Matching Process in Odoo 17.pptxWhat is 3 Way Matching Process in Odoo 17.pptx
What is 3 Way Matching Process in Odoo 17.pptx
 
How to Add a Tool Tip to a Field in Odoo 17
How to Add a Tool Tip to a Field in Odoo 17How to Add a Tool Tip to a Field in Odoo 17
How to Add a Tool Tip to a Field in Odoo 17
 
Observing-Correct-Grammar-in-Making-Definitions.pptx
Observing-Correct-Grammar-in-Making-Definitions.pptxObserving-Correct-Grammar-in-Making-Definitions.pptx
Observing-Correct-Grammar-in-Making-Definitions.pptx
 
Spellings Wk 4 and Wk 5 for Grade 4 at CAPS
Spellings Wk 4 and Wk 5 for Grade 4 at CAPSSpellings Wk 4 and Wk 5 for Grade 4 at CAPS
Spellings Wk 4 and Wk 5 for Grade 4 at CAPS
 
Towards a code of practice for AI in AT.pptx
Towards a code of practice for AI in AT.pptxTowards a code of practice for AI in AT.pptx
Towards a code of practice for AI in AT.pptx
 
Including Mental Health Support in Project Delivery, 14 May.pdf
Including Mental Health Support in Project Delivery, 14 May.pdfIncluding Mental Health Support in Project Delivery, 14 May.pdf
Including Mental Health Support in Project Delivery, 14 May.pdf
 
Unit 3 Emotional Intelligence and Spiritual Intelligence.pdf
Unit 3 Emotional Intelligence and Spiritual Intelligence.pdfUnit 3 Emotional Intelligence and Spiritual Intelligence.pdf
Unit 3 Emotional Intelligence and Spiritual Intelligence.pdf
 
FSB Advising Checklist - Orientation 2024
FSB Advising Checklist - Orientation 2024FSB Advising Checklist - Orientation 2024
FSB Advising Checklist - Orientation 2024
 
HMCS Vancouver Pre-Deployment Brief - May 2024 (Web Version).pptx
HMCS Vancouver Pre-Deployment Brief - May 2024 (Web Version).pptxHMCS Vancouver Pre-Deployment Brief - May 2024 (Web Version).pptx
HMCS Vancouver Pre-Deployment Brief - May 2024 (Web Version).pptx
 
NO1 Top Black Magic Specialist In Lahore Black magic In Pakistan Kala Ilam Ex...
NO1 Top Black Magic Specialist In Lahore Black magic In Pakistan Kala Ilam Ex...NO1 Top Black Magic Specialist In Lahore Black magic In Pakistan Kala Ilam Ex...
NO1 Top Black Magic Specialist In Lahore Black magic In Pakistan Kala Ilam Ex...
 
Graduate Outcomes Presentation Slides - English
Graduate Outcomes Presentation Slides - EnglishGraduate Outcomes Presentation Slides - English
Graduate Outcomes Presentation Slides - English
 
TỔNG HỢP HƠN 100 ĐỀ THI THỬ TỐT NGHIỆP THPT TOÁN 2024 - TỪ CÁC TRƯỜNG, TRƯỜNG...
TỔNG HỢP HƠN 100 ĐỀ THI THỬ TỐT NGHIỆP THPT TOÁN 2024 - TỪ CÁC TRƯỜNG, TRƯỜNG...TỔNG HỢP HƠN 100 ĐỀ THI THỬ TỐT NGHIỆP THPT TOÁN 2024 - TỪ CÁC TRƯỜNG, TRƯỜNG...
TỔNG HỢP HƠN 100 ĐỀ THI THỬ TỐT NGHIỆP THPT TOÁN 2024 - TỪ CÁC TRƯỜNG, TRƯỜNG...
 
AIM of Education-Teachers Training-2024.ppt
AIM of Education-Teachers Training-2024.pptAIM of Education-Teachers Training-2024.ppt
AIM of Education-Teachers Training-2024.ppt
 
Model Attribute _rec_name in the Odoo 17
Model Attribute _rec_name in the Odoo 17Model Attribute _rec_name in the Odoo 17
Model Attribute _rec_name in the Odoo 17
 
Ernest Hemingway's For Whom the Bell Tolls
Ernest Hemingway's For Whom the Bell TollsErnest Hemingway's For Whom the Bell Tolls
Ernest Hemingway's For Whom the Bell Tolls
 
Transparency, Recognition and the role of eSealing - Ildiko Mazar and Koen No...
Transparency, Recognition and the role of eSealing - Ildiko Mazar and Koen No...Transparency, Recognition and the role of eSealing - Ildiko Mazar and Koen No...
Transparency, Recognition and the role of eSealing - Ildiko Mazar and Koen No...
 
OS-operating systems- ch05 (CPU Scheduling) ...
OS-operating systems- ch05 (CPU Scheduling) ...OS-operating systems- ch05 (CPU Scheduling) ...
OS-operating systems- ch05 (CPU Scheduling) ...
 
Simple, Complex, and Compound Sentences Exercises.pdf
Simple, Complex, and Compound Sentences Exercises.pdfSimple, Complex, and Compound Sentences Exercises.pdf
Simple, Complex, and Compound Sentences Exercises.pdf
 
QUATER-1-PE-HEALTH-LC2- this is just a sample of unpacked lesson
QUATER-1-PE-HEALTH-LC2- this is just a sample of unpacked lessonQUATER-1-PE-HEALTH-LC2- this is just a sample of unpacked lesson
QUATER-1-PE-HEALTH-LC2- this is just a sample of unpacked lesson
 
UGC NET Paper 1 Unit 7 DATA INTERPRETATION.pdf
UGC NET Paper 1 Unit 7 DATA INTERPRETATION.pdfUGC NET Paper 1 Unit 7 DATA INTERPRETATION.pdf
UGC NET Paper 1 Unit 7 DATA INTERPRETATION.pdf
 

INSTRUCTIONS Please organize your answers as a Word document with.docx

  • 1. INSTRUCTIONS: Please organize your answers as a Word document with 12-point font. BE SURE TO SHOW YOUR WORK SO THAT PARTIAL CREDIT MAY BE ASSIGNED. I. WorldCom, Inc. – Capitalized Costs and Earnings Quality (14 points total) Answer questions (e), (f), and (g) of the WorldCom case (attached here). Be sure to show your work so that partial credit can be assigned. II. Winnebago (36 points total) Attached below are excerpts from the Annual Report of Winnebago Industries for their fiscal year ended on August 30, 2014. Use these excerpts to answer the following questions: (SHOW WORK) (a) Based solely on information in Winnebago’s Cash Flow Statement, what was the net book value of property, plant, and equipment sold for cash during fiscal 2014? (6 points) (b) Based on data for Winnebago’s property, plant, and equipment (PP&E) at 8/31/2013 and depreciation expense for fiscal 2014, estimate the weighted average useful life of their PP&E subject to depreciation. – (Hint: Keep in mind that Note 6 on Goodwill and Amortizable Intangible Assets states that amortization expense for fiscal 2014 was zero.) (6 points) (c) Estimate what Winnebago’s Gross Profit would have been for fiscal 2014 if they had used FIFO instead of LIFO to account for their inventories. (6 points) (d) Note that finished goods inventory decreased from 8/31/2013 to 8/30/2014 while both work-in-process and raw
  • 2. materials increased during the same period. Describe in one or two sentences why these inventory component changes are consistent with the nearly 18% increase in Winnebago’s net revenues for fiscal 2024? (6 points) (e) Show the summary journal entry made by Winnebago to record income tax expense for their year ended August 30, 2014. (6 points) (f) Winnebago has a long-term deferred tax liability that increased from $917 thousand to $992 thousand during fiscal 2014. Does this imply that depreciation expense for financial reporting purposes was greater or less than depreciation expense for tax reporting purposes? Explain the basis for your answer. (6 points)
  • 3. Start Declaration num index=0, value, sumCond = 0, countCond=0, average //set up the loop, a for loop while (index <=9) { input "Please enter a value: ", value if (value >= 500) { sumCond = sumCond + value countCond = contCond + 1 // countCond++ }
  • 4. } average = sumCond / countCond output "There were ", countCond , " that met the condition" output "And, there sum ", sumCond output "Therefore, their average is " average Stop //Declaring an array num[10] rooms // this is the size of the array 10 elements //rooms[0] to rooms[9] num index, sum=0 //let's start reading the data in the array using for-loop for(index=0; index <10; index++) { input "Please enter the number of people in room ", index+1 input rooms[index] } index =0 while (index <10) { sum = sum + rooms[index] index ++ } output "T Start Declaration num index, value, sumCond = 0, countCond=0, average //set up the loop, a for loop for (index=0; index <=9; index ++) { input "Please enter a value: ", value if (value >= 500)
  • 5. { sumCond = sumCond + value countCond = countCond + 1 // countCond++ } } average = sumCond / countCond output "There were ", countCond , " that met the condition" output "And, there sum ", sumCond output "Therefore, their average is " average importjavax.swing.*; publicclass Accu { publicstaticvoid main(String[] args) { int index, value, sumCond=0, countCond=0; //starting loop- for loop for (index=0; index <=9; index++){ } } } mValue = JOptionPane.showInputDialog("Enter a value: "); value = Integer.parseInt(mValue); Sheet1index = index +1<==>index++index = index - 1index -- indexvalue accuavg014426103111401152136avg2.6The sum = 13 , and average = 2.6 I want to read five (5) values and find their sum and average.
  • 6. Start declaration num index, value num accu = 0, avg for (index = 1; index <=5; index++) { //BEGIN the loop input "Enter a value: ", value accu = accu + value // the accu } avg = accu / 5 output "The sum = ", sum, " , and average = ", average Stop Sheet2 Start declaration num sale1, sale2, sale3, sale4, sale5, subtotal, disCountedAmt, discount, taxAmount, total num TAXRATE = .0825 input "Enter value sales: " input sale1, sale2, sale3, sale4, sale5 subtotal = sale1 + sale2 + sale3 + sale4 + sale5 //let's go ahead and calculate the discount if (subtotal >= 10000) then discount = .15 else if (subtotal >= 7500) then discount = .10 else if (subtotal >= 5000) then discount = .07 else if (subtotal >= 2500) then discount = .05 else discount = .03 discountedAmt = subtotal - (subtotal * discount)
  • 7. taxAmount = discountAmt * TAXRATE total = discountedAmt + taxAmount output "Subtotal = $", subtotal output "discountedAmount = $",discountedAmt output "Tax Amount = $",taxAmount output "Total = $", total Stop Sheet3 Start declaration num value, index = 1 num evenSum= 0, avg intialization while (index <= 10) { input "Please enter your value: ", value if (value mod 2 == 0) { evenNum = evenNum +value } index ++ } output "The sum = ", accu, " and the average = ", accu/5 Stop while ( condition) { body of the loop; }
  • 8. Sheet56!=6*5*4*3*2*1ValueIndexFactorial661 Start declaration num value, factorial=1, index input "Enter your value(1-10): ", value for (index = value; index >=1; index--) { factorial = factorial * index } output "The result is " , factorial Stop Sheet420220 is an even number num x = 10, y = 50 if (x > y) // either true of false output x , “ is greater than “, y else output y, “ is greater than “, x Relational operators (comparing) == a = 9 if (a == 9 > ( 9 > 3) >= (9 >= 3) // 9 is greater than 3 ( 9 >= 33) ( 9 >= 9) < ( 9 < 3) // false <= ( 9 <= 13) // True <> or != Not equal to ( 9 <> 3) (9!=3) string sign input sign// If (sign == “Green”) output “Move forward” elseif (sing == “Red”) output “Stop” else output “Either stop or drive through”
  • 9. End if output “outside the if block” num score string grade input “Enter your score: “, score if (score >= 90) grade = “A” elseif (score >= 80) grade = “B” elseif (score >= 70) grade = “C” elseif (score >= 60) grade = “D” else grade = “F” end if output “your score was “, score, “, therefore your grade is “, grade Write a pseudo code to read three prices and test their subtotal. If subtotal >= 5000, then the discount = .10, else if the subtotal >= 2500 and < 5000, then the discount = .07, otherwise the discount = .05 Start num price1, price2, price3, subtotal, taxAmount, total, discount, discountedAmount num TAXRATE = .0825 ouput “Please enter your three prices: “ input price1, price2, price3 //calculation subtotal = price1 + price2 + price3 if (subtotal >= 500) then discount = .10 elseif (subtotal >= 2500) then discount = .07
  • 10. else discount = .05 end if discountedAmount = subtotal – (subtotal * discount) TaxAmount = discountedAmount * TAXRATE total = discountedAmount + TaxAmount output “Your original subtotal = $”, subtotal output “Your discounted Amount = $”, discountedAmount output “Your discount = ”, discount * 100, “%” output “Your tax amount = $”, taxAmount output “Your total = $”, total Stop income = 25000 dep = 10 if (income <= 20000 AND dep >= 4) then taxRate = .12 else taxRate = .25 end if Truth Table for AND === && T AND T T
  • 11. T AND F F F AND T F F AND F F income = 25000 dep = 10 if (income <= 20000 OR dep >= 4) then taxRate = .12 else taxRate = .25 end if T OR T T T OR F T F OR
  • 12. T T F OR F F Not is unary Not (T) = F Not (F) = T 9 <> 3 that is true Not(9) Revisiting the score & grade program using logical opertors num score string grade string flag = “F” input “Enter your score: “, score if (score < 0 OR score >=100) then flag = “T” elseif (score >= 90) grade = “A” elseif (score >= 80) grade = “B” elseif (score >= 70) grade = “C” elseif (score >= 60) grade = “D” else grade = “F” end if
  • 13. if (flag == “T”) then output “There is no such a score” else output “your score was “, score, “, therefore your grade is “, grade end if Looping – iteration num index for (index = 1 ; index <= 10; index = index + 1) { output “Hello world” } for index = 1 to 10 output “Hello, Shaw!” next index num jar = 0, index for (index=1; index <=5; index++) //index ++ index = index + 1 { jar = jar + index } ouput index output sum output sum/ (index-1)