Mgts1201 2016 Sem 1 Sample Final Exam With Answers
Mgts1201 2016 Sem 1 Sample Final Exam With Answers
Mgts1201 2016 Sem 1 Sample Final Exam With Answers
Venue
____________________
Seat Number
________
Student Number
|__|__|__|__|__|__|__|__|
Family Name
_____________________
First Name
_____________________
School of Business
EXAMINATION
Semester One Final Examinations, 2016
120 minutes
Reading Time:
10 minutes
Exam Conditions:
ForExaminerUseOnly
Question
Mark
Rough Paper
Instructions To Students:
Page 1 of 15
Total ________
Page 2 of 15
Page 3 of 15
Page 4 of 15
Page 5 of 15
29. Using VLOOKUP containing TRUE for the 4th argument and with a lookup list not
sorted in ascending order will produce:
a) Unpredictable results possibly correct, possibly incorrect
b) An error message #N/A
c) No error message but always an incorrect result
d) A syntax error when we enter the actual VLOOKUP formula
30. How would we verify the accuracy of all named ranges in our workbook and delete
the redundant entries?
e) We would use Name Manager
f) We would use Conditional Formatting
g) We would use Advanced Filtering
h) Any of the above
Page 6 of 15
a) The benefits and costs of IT projects must always be evaluated. Name and concisely
explain three widely accepted methods for conducting cost-benefit analysis.
(Part a - 6 marks)
1st method (2 marks):
Netpresentvalue(NPV)[1mark]convertfuturevaluesofbenefitstotheirpresent
valueviadiscountingthem(i.e.,aninterestratethatreflectsthecostoffunds)[1mark]
Returnoninvestment(ROI)[1mark]measuredbydividingthenetincomegenerated
bytheprojectbytheaverageassetsinvestedintheproject[1mark]
Breakevenanalysis[1mark]determinesthepointatwhichthecumulativevalueofthe
benefitsfromaprojectequalstheinvestmentmadeintheproject[1mark]
Businesscaseapproach[1mark]developingabusinesscaseinwhichisdescribedhow
theproposedsystemwouldimprovethecurrentworkpractices[1mark]
Any three of the above four
2nd method (2 marks):
Continuednextpage
Page 7 of 15
Who owns the software, who hosts the software, how is the software accessed, why is it
popular (2 marks):
Thevendorownsthesoftware(0.5marks);thevendorhoststhesoftware(0.5marks)
thesoftwareisaccessedviaanetworkusuallytheInternet(0.5marks).Itispopular
becausecustomerssavetheexpenseofbuying,operatingandmaintainingthesoftware
(0.5marks)
c) The systems design stage is a fundamental stage of the systems development life cycle
(SDLC). Concisely describe what the goal of the system design stage is. What is the
principal deliverable of the system design stage? What is scope creep and how is this
controlled with respect to the principal deliverable of the system design stage?
(Part c - 4 marks)
What is goal of the system design stage? (1 mark):
Thegoalistodescribehowthesystemwillresolvethebusinessproblem
What is the principal deliverable of the system design stage? (1 mark):
Thetechnicalsystemspecifications(systemspecification)
What is scope creep? (1 mark) Scope creep is adding requirements/functions to the
system specification
How is scope creep controlled with respect to the principal deliverable of design stage (1
mark)
The system specifications after approval by all stake holders are frozen
Page 8 of 15
Continuednextpage
Page 9 of 15
Question 2:
(Total 15 marks)
ThefollowingseriesofquestionsallfocusuponBusinessProcessManagementand
BPMN.
a) Explain concisely and clearly the relationship between BPM and BPMN? Your
answer should describe what each of these concepts is, and also how they are
connected.
(Part a - 3 marks)
Answer(1):BPMisBusinessProcessManagementanditistheanalysisand
understandingofhowbusinessprocessesworkwithaviewtoincreasingthe
efficiencyoftheseprocesses.(1mark)BPMNisthesetofgraphicalnotations
(constructs)andtheirassociatedusageprotocols(1mark)thatfacilitatethe
visualization/representationlogicallyoftheseanalysestovariousdegreesof
abstraction.(1mark)
b) What is meant by the term scope in the area of BPM? Why is scope important
within a BPM project?
(Part b - 2 marks)
Answer(2):whatisscope:
Scopemeansaboundarythatis,decidingtheboundaryofaparticularprocessor
groupofprocesses(1mark).
Answer(2):whyisscopeimportant:
Businessprocessesare(usually)complexandcanalsobefuzzy(i.e.imprecisein
definition).Thereforeitiscriticalfortheanalysttodefinethescopefirstlywithinany
BPMprojectsothattheanalysiscanproceedwithmaximumclarityastowhatis
beinginvestigatedandwho(i.e.thepeople/resources)isinvolved.(1mark)
Continuednextpage
Page 10 of 15
c) The BPMN symbol set includes notations for Start, End (i.e. events), Process
Flow and Message Flow. Describe three other notations within the BPMN
symbol set (you should name them as per BPMN and describe what each
notation means).
(Part c - 3 marks)
Answer(3)(3marks)
Theseareoutlinedoninthelectureslides
Continuednextpage
Page 11 of 15
ANSWER:
Continuednextpage
Page 12 of 15
Question 3:
Excel.
(Total 15 marks)
An Excel formula has been produced to calculate employee tax payable according to the
following tax scale:
i.
ii.
iii.
In the workbook shown below, an Excel formula has been written in cell B3 to calculate
the tax payable on gross income appearing in cell B2. The Excel formula is:
=IF(AND(B2>=0,B2<=10000),B2*10%,IF(AND(B2>10000,B2<=20000),1000+(B210000)*15%,2500+(B2-20000)*20%))
1
2
Gross Income
Tax Payable
You are now asked to answer the following questions from your staff. Please write your
answers in the appropriate space below.
Continuednextpage
Page 13 of 15
b) What is the FALSE argument for the first IF function and the FALSE argument of
the second IF function?
(1st IF)__thesecondIFstatement__asshownbelow______ (1 mark)
IF(AND(B2>10000,B2<=20000),1000+(B210000)*15%,2500+(B220000)*20%)
(2ND IF)____2500+(B220000)*20%)____________________(1 mark)
c) What is the value returned (i.e. the tax payable) by the nested IF formula if an
employee earns $30000?
(1 mark)
__________$4500_______________________________________
_2500+(B220000)*20%__________
(1 mark)
__$1700____________________ (1 mark)
e) In view of the issue raised in part (d) above, what change would you make to your
formula to successfully handle negative salary amounts?
(3 marks)
________________________________________________________
Wewouldaddthefollowingunderlinedcodetotheexistingformulato
producethefollowing:=IF(B2<0,0,(thenfollowsexistingformula
(IF(AND(B2>=0,B2<=10000),B2*10%,IF(AND(B2>10000,B2<=20000),1000+(B2
10000)*15%,2500+(B220000)*20%))followedbytwobrackets))
Continuednextpage
Page 14 of 15
f) A tax payable table has now been added to the workbook as shown below. You
are required to write a VLOOKUP function in cell B3 to replace the IF function
and calculate the tax payable for incomes zero or greater (in cell B2) according to
the table.
____=VLOOKUP(B2,A7:C9,2,TRUE)+VLOOKUP(B2,A7:C9,3,TRUE)*(B2
VLOOKUP(B2,A7:C9,1,TRUE))____________________________ (4 marks)
____________________________________________________
1
2
Gross Income
Tax Payable
4
5
Tax Table
Gross Income
Fixed Tax
Percentage on Difference
$0
$0
10%
$10000
$1000
15%
$20000
$2500
20%
g) Show how you would add an IF function to your answer in (f) so that the new
formula (in cell B3) could handle gross incomes less than zero (i.e. without
changing the Tax Table)?
IF(B2<0,0,(VLOOKUP(B2,A7:C9,2,TRUE)+VLOOKUP(B2,A7:C9,3,TRUE)*(B2
VLOOKUP(B2,A7:C9,1,TRUE))))
Therequiredcodeis:=IF(B2<0,0,followedby2additionalbrackets(2 marks)
END OF EXAM
Page 15 of 15