SlideShare a Scribd company logo
1 of 18
Extra Credit Projects
Microsoft Office Applications Software
I. Microsoft Word
Create a one page document on any topic that interests you and
save it with your User ID as the
leading characters in the file name. Your document must
include the following features:
o Change the font type and font size of the copied text
document
Submit a printout of your word document with your final exam
on the day of the final.
II. Excel
Create a spreadsheet for a payroll application for at least five
employees and save it with your
User ID as the leading characters in the file name. Include at
least one graphic image of your
choice using the chart wizard. Your spreadsheet should contain
the following data with
appropriate row and column labels:
o Name
o Hours worked
o Hourly rate of pay
o Gross pay (hours worked * hourly rate of pay)
o Federal Tax Amount (gross pay * federal tax percentage)
o State Tax Amount (gross pay * state tax percentage)
o Net pay (gross pay – federal tax amount – state tax amount)
o Total Gross pay
o Total Federal tax amount total
o Total State tax amount
o Total net pay
o Average Gross pay
o Average Federal tax amount total
o Average State tax amount
o Average net pay
your choice with a chart
type of your choosing
Submit a printout of your spreadsheet with your final exam on
the day of the final.
III. Powerpoint
Create a presentation consisting of at least 5 slides on any topic.
Include the following features:
o Centered
o Bulleted list
o Bold
Sound clips, videos, graphics and clip art can be downloaded
from free sources on the web.
t your slide presentation. You may print multiple
slides on one page.
Submit the printout of the presentation with your final exam on
the day of the final.
IV. Access
Create a database with at least eight records added to keep track
of your favorite television shows.
Each record should have at least five fields of your choice.
Submit the following screen captures
of your database design and functioning in a word document:
creating table
least eight records
two queries
queries could be:
o Which of my favorite shows are comedies?
o Which of my favorite shows start after 9:00 P.M.?
Submit the word document with your final exam on the day of
the final.
Extra Credit Projects
Visual Basic Applications
I. Project 2
Write a Visual Basic program which will find the gross pay,
federal tax amount, state tax amount and net
pay when the user supplies a person’s name, the number of
hours worked, the hourly rate of pay, the
federal tax percentage, and the state tax percentage for a person:
o Name
o Hours Worked
o Hourly Rate
o State Tax Rate
o Federal Tax Rate
o Gross Pay
o Federal Tax Amount
o State Tax Amount
o Net Pay
o empName
o hrsWorked
o hourlyRate
o stTaxRate
o fdTaxRate
o grossPay
o stTax
o fdTax
o netPay
– stTax - fdTax
o Calc
o Clear
o Quit
Specific coding instructions.
CALCULATE PAY
Between the dashed lines below is the code for the Visual Basic
Project that
will find the gross pay, state tax amount, federal tax amount and
net pay
when the user enters the name, hours worked, hourly pay rate,
state tax rate
and federal tax rate entered by the user to the form textbox
controls. The
code that you will type is in bold red text. It assumes that the
input text
box controls are named as follows:
empName
hrsWorked
hourlyRate
stTaxRate
fdTaxRate
It also assumes that the output text boxe controls are named as
follows:
grossPay
stTax
fdTax
netPay
Button controls are assumed to be named as follows:
Calc
Clear
Quit
Remember to add the controls to the form before you begin
coding. The code
that you will type is in bold red text. Begin coding by double
clicking on
one of the three button controls to enter the code for the click
method of
that button control.
---------------------------------------------------------------------------
Public Class Form1
Private Sub Quit_Click(ByVal sender As System.Object,
ByVal e As
System.EventArgs) Handles Quit.Click
End
End Sub
Private Sub Clear_Click(ByVal sender As System.Object,
ByVal e As
System.EventArgs) Handles Clear.Click
empName.Text = ""
hrsWorked.Text = ""
hourlyRate.Text = ""
stTaxRate.Text = ""
fdTaxRate.Text = ""
grossPay.Text = ""
stTax.Text = ""
fdTax.Text = ""
netPay.Text = ""
End Sub
Private Sub Calc_Click(ByVal sender As System.Object,
ByVal e As
System.EventArgs) Handles Calc.Click
grossPay.Text = Val(hrsWorked.Text) *
Val(hourlyRate.Text)
fdTax.Text = Val(grossPay.Text) * (Val(fdTaxRate.Text) /
100)
stTax.Text = Val(grossPay.Text) * (Val(stTaxRate.Text) /
100)
netPay.Text = Val(grossPay.Text) - Val(fdTax.Text) -
Val(stTax.Text)
End Sub
End Class
What to upload:
1. Copy and paste program instruction listing from Visual Basic
editor to
a Microsoft Word document. (Your listing should be similar to
the one
above)
2. Run the form, enter values into the text boxes and press the
Calc
button on your form. Capture the screen by hitting the PrtScr
key.
3. Paste the screen capture of the form to the same Word
document
containing the program listing.
Submit a printout of the above document with your final exam
on the day of the final.
Extra Credit Projects
Visual Basic Applications
I. Project 1
Write a Visual Basic program which will find the sum and
average of three numbers. Your form will
contain the following controls:
o Number 1
o Number 2
o Number 3
o Sum
o Average
o Num1
o Num2
o Num3
o Sum
o Avg
o Calc
output in the Sum and Avg text
box controls
o Clear
o Quit
Specific coding instructions.
CALCULATE SUM AND AVERAGE OF THREE NUMBERS
Between the dashed lines below is the code for the Visual Basic
Project that
will find the sum and average of three numbers entered by the
user to the
form textbox controls. The code that you will type is in bold
red text. It
assumes that the three input text boxes are named as follows:
Num1
Num2
Num3
It also assumes that the output text boxes are named as follows:
Sum
Avg
Buttons are assumed to be named as follows:
Calc
Clear
Quit
Remember to add the controls to the form before you begin
coding. The code
that you will type is in bold red text. Begin coding by double
clicking on
one of the three button controls to enter the code for the click
method of
that button control.
-----------------------------------------------------------------------
Public Class Form1
Private Sub Quit_Click(ByVal sender As System.Object,
ByVal e As
System.EventArgs) Handles Quit.Click
End
End Sub
Private Sub Clear_Click(ByVal sender As System.Object,
ByVal e As
System.EventArgs) Handles Clear.Click
Num1.Text = ""
Num2.Text = ""
Num3.Text = ""
Sum.Text = ""
Avg.Text = ""
End Sub
Private Sub Calc_Click(ByVal sender As System.Object,
ByVal e As
System.EventArgs) Handles Calc.Click
Sum.Text = Val(Num1.Text) + Val(Num2.Text) +
Val(Num3.Text)
Avg.Text = Val(Sum.Text) / 3
End Sub
End Class
---------------------------------------------------------------------
What to upload:
1. Copy and paste program instruction listing from Visual Basic
editor to
a Microsoft Word document. (Your listing should be similar to
the one
above)
2. Run the form, enter values into the text boxes and press the
Calc
button on your form. Capture the screen by hitting the PrtScr
key.
3. Paste the screen capture of the form to the same Word
document
containing the program listing.
Submit a printout of the above document with your final exam
on the day of the final.

More Related Content

Similar to Microsoft Office Extra Credit Projects

Devry cis-170-c-i lab-5-of-7-arrays-and-strings
Devry cis-170-c-i lab-5-of-7-arrays-and-stringsDevry cis-170-c-i lab-5-of-7-arrays-and-strings
Devry cis-170-c-i lab-5-of-7-arrays-and-stringscskvsmi44
 
Change and Transport System (CTS) in SAP
Change and Transport System (CTS) in SAPChange and Transport System (CTS) in SAP
Change and Transport System (CTS) in SAPKunal Chadha
 
This assignment consists of four short programs. Use CodeBlock.docx
This assignment consists of four short programs. Use CodeBlock.docxThis assignment consists of four short programs. Use CodeBlock.docx
This assignment consists of four short programs. Use CodeBlock.docxdunningblair
 
Excel Project – Matrix ApplicationsPart 1 – CryptographyMatr.docx
Excel Project – Matrix ApplicationsPart 1 – CryptographyMatr.docxExcel Project – Matrix ApplicationsPart 1 – CryptographyMatr.docx
Excel Project – Matrix ApplicationsPart 1 – CryptographyMatr.docxSANSKAR20
 
Comp 122 lab 2 lab report and source code
Comp 122 lab 2 lab report and source codeComp 122 lab 2 lab report and source code
Comp 122 lab 2 lab report and source codepradesigali1
 
Mr20 enus 03-Report Design in Management Reporter 2.0 for Microsoft Dynamics®...
Mr20 enus 03-Report Design in Management Reporter 2.0 for Microsoft Dynamics®...Mr20 enus 03-Report Design in Management Reporter 2.0 for Microsoft Dynamics®...
Mr20 enus 03-Report Design in Management Reporter 2.0 for Microsoft Dynamics®...Sami JAMMALI
 
BTE 320-498 Summer 2017 Take Home Exam (200 poi.docx
BTE 320-498 Summer 2017 Take Home Exam (200 poi.docxBTE 320-498 Summer 2017 Take Home Exam (200 poi.docx
BTE 320-498 Summer 2017 Take Home Exam (200 poi.docxAASTHA76
 
FINE FIRE BIM SOFTWARE - Step by step tutorial guide
FINE FIRE BIM SOFTWARE - Step by step tutorial guideFINE FIRE BIM SOFTWARE - Step by step tutorial guide
FINE FIRE BIM SOFTWARE - Step by step tutorial guideIsidoros Siderakis
 
CIS 170 Life of the Mind/newtonhelp.com   
CIS 170 Life of the Mind/newtonhelp.com   CIS 170 Life of the Mind/newtonhelp.com   
CIS 170 Life of the Mind/newtonhelp.com   llflowe
 
CIS 170 Imagine Your Future/newtonhelp.com   
CIS 170 Imagine Your Future/newtonhelp.com   CIS 170 Imagine Your Future/newtonhelp.com   
CIS 170 Imagine Your Future/newtonhelp.com   bellflower42
 
How support caller ID phone number
How support caller ID phone numberHow support caller ID phone number
How support caller ID phone numbertopomax
 
Gsp 215 Future Our Mission/newtonhelp.com
Gsp 215 Future Our Mission/newtonhelp.comGsp 215 Future Our Mission/newtonhelp.com
Gsp 215 Future Our Mission/newtonhelp.comamaranthbeg8
 
GSP 215 Become Exceptional/newtonhelp.com
GSP 215 Become Exceptional/newtonhelp.comGSP 215 Become Exceptional/newtonhelp.com
GSP 215 Become Exceptional/newtonhelp.combellflower148
 
GSP 215 Perfect Education/newtonhelp.com
GSP 215 Perfect Education/newtonhelp.comGSP 215 Perfect Education/newtonhelp.com
GSP 215 Perfect Education/newtonhelp.combellflower169
 
GSP 215 Doing by learn/newtonhelp.com
GSP 215 Doing by learn/newtonhelp.comGSP 215 Doing by learn/newtonhelp.com
GSP 215 Doing by learn/newtonhelp.combellflower126
 
CIS 170 Focus Dreams/newtonhelp.com
CIS 170 Focus Dreams/newtonhelp.comCIS 170 Focus Dreams/newtonhelp.com
CIS 170 Focus Dreams/newtonhelp.combellflower82
 

Similar to Microsoft Office Extra Credit Projects (20)

Devry cis-170-c-i lab-5-of-7-arrays-and-strings
Devry cis-170-c-i lab-5-of-7-arrays-and-stringsDevry cis-170-c-i lab-5-of-7-arrays-and-strings
Devry cis-170-c-i lab-5-of-7-arrays-and-strings
 
Change and Transport System (CTS) in SAP
Change and Transport System (CTS) in SAPChange and Transport System (CTS) in SAP
Change and Transport System (CTS) in SAP
 
Homework Assignments
Homework   AssignmentsHomework   Assignments
Homework Assignments
 
This assignment consists of four short programs. Use CodeBlock.docx
This assignment consists of four short programs. Use CodeBlock.docxThis assignment consists of four short programs. Use CodeBlock.docx
This assignment consists of four short programs. Use CodeBlock.docx
 
Excel Project – Matrix ApplicationsPart 1 – CryptographyMatr.docx
Excel Project – Matrix ApplicationsPart 1 – CryptographyMatr.docxExcel Project – Matrix ApplicationsPart 1 – CryptographyMatr.docx
Excel Project – Matrix ApplicationsPart 1 – CryptographyMatr.docx
 
Comp 122 lab 2 lab report and source code
Comp 122 lab 2 lab report and source codeComp 122 lab 2 lab report and source code
Comp 122 lab 2 lab report and source code
 
Mr20 enus 03-Report Design in Management Reporter 2.0 for Microsoft Dynamics®...
Mr20 enus 03-Report Design in Management Reporter 2.0 for Microsoft Dynamics®...Mr20 enus 03-Report Design in Management Reporter 2.0 for Microsoft Dynamics®...
Mr20 enus 03-Report Design in Management Reporter 2.0 for Microsoft Dynamics®...
 
BTE 320-498 Summer 2017 Take Home Exam (200 poi.docx
BTE 320-498 Summer 2017 Take Home Exam (200 poi.docxBTE 320-498 Summer 2017 Take Home Exam (200 poi.docx
BTE 320-498 Summer 2017 Take Home Exam (200 poi.docx
 
Dora ppt2(fico)
Dora ppt2(fico)Dora ppt2(fico)
Dora ppt2(fico)
 
Visual Logic User Guide
Visual Logic User GuideVisual Logic User Guide
Visual Logic User Guide
 
FINE FIRE BIM SOFTWARE - Step by step tutorial guide
FINE FIRE BIM SOFTWARE - Step by step tutorial guideFINE FIRE BIM SOFTWARE - Step by step tutorial guide
FINE FIRE BIM SOFTWARE - Step by step tutorial guide
 
CIS 170 Life of the Mind/newtonhelp.com   
CIS 170 Life of the Mind/newtonhelp.com   CIS 170 Life of the Mind/newtonhelp.com   
CIS 170 Life of the Mind/newtonhelp.com   
 
CIS 170 Imagine Your Future/newtonhelp.com   
CIS 170 Imagine Your Future/newtonhelp.com   CIS 170 Imagine Your Future/newtonhelp.com   
CIS 170 Imagine Your Future/newtonhelp.com   
 
How support caller ID phone number
How support caller ID phone numberHow support caller ID phone number
How support caller ID phone number
 
Gsp 215 Future Our Mission/newtonhelp.com
Gsp 215 Future Our Mission/newtonhelp.comGsp 215 Future Our Mission/newtonhelp.com
Gsp 215 Future Our Mission/newtonhelp.com
 
GSP 215 Become Exceptional/newtonhelp.com
GSP 215 Become Exceptional/newtonhelp.comGSP 215 Become Exceptional/newtonhelp.com
GSP 215 Become Exceptional/newtonhelp.com
 
GSP 215 Perfect Education/newtonhelp.com
GSP 215 Perfect Education/newtonhelp.comGSP 215 Perfect Education/newtonhelp.com
GSP 215 Perfect Education/newtonhelp.com
 
GSP 215 Doing by learn/newtonhelp.com
GSP 215 Doing by learn/newtonhelp.comGSP 215 Doing by learn/newtonhelp.com
GSP 215 Doing by learn/newtonhelp.com
 
CIS 170 Focus Dreams/newtonhelp.com
CIS 170 Focus Dreams/newtonhelp.comCIS 170 Focus Dreams/newtonhelp.com
CIS 170 Focus Dreams/newtonhelp.com
 
Input output
Input outputInput output
Input output
 

More from ssuser454af01

The following pairs of co-morbid disorders and  a write 700 words .docx
The following pairs of co-morbid disorders and  a write 700 words .docxThe following pairs of co-morbid disorders and  a write 700 words .docx
The following pairs of co-morbid disorders and  a write 700 words .docxssuser454af01
 
The following is an access verification technique, listing several f.docx
The following is an access verification technique, listing several f.docxThe following is an access verification technique, listing several f.docx
The following is an access verification technique, listing several f.docxssuser454af01
 
The following discussion board post has to have a response. Please r.docx
The following discussion board post has to have a response. Please r.docxThe following discussion board post has to have a response. Please r.docx
The following discussion board post has to have a response. Please r.docxssuser454af01
 
The following information has been taken from the ledger accounts of.docx
The following information has been taken from the ledger accounts of.docxThe following information has been taken from the ledger accounts of.docx
The following information has been taken from the ledger accounts of.docxssuser454af01
 
The following attach files are my History Homewrok and Lecture Power.docx
The following attach files are my History Homewrok and Lecture Power.docxThe following attach files are my History Homewrok and Lecture Power.docx
The following attach files are my History Homewrok and Lecture Power.docxssuser454af01
 
The following is adapted from the work of Paul Martin Lester.In .docx
The following is adapted from the work of Paul Martin Lester.In .docxThe following is adapted from the work of Paul Martin Lester.In .docx
The following is adapted from the work of Paul Martin Lester.In .docxssuser454af01
 
The following article is related to deterring employee fraud within .docx
The following article is related to deterring employee fraud within .docxThe following article is related to deterring employee fraud within .docx
The following article is related to deterring employee fraud within .docxssuser454af01
 
The Five stages of ChangeBy Thursday, June 25, 2015, respond to .docx
The Five stages of ChangeBy Thursday, June 25, 2015, respond to .docxThe Five stages of ChangeBy Thursday, June 25, 2015, respond to .docx
The Five stages of ChangeBy Thursday, June 25, 2015, respond to .docxssuser454af01
 
The first step in understanding the behaviors that are associated wi.docx
The first step in understanding the behaviors that are associated wi.docxThe first step in understanding the behaviors that are associated wi.docx
The first step in understanding the behaviors that are associated wi.docxssuser454af01
 
The first one is due Sep 24 at 1100AMthe French-born Mexican jo.docx
The first one is due Sep 24 at 1100AMthe French-born Mexican jo.docxThe first one is due Sep 24 at 1100AMthe French-born Mexican jo.docx
The first one is due Sep 24 at 1100AMthe French-born Mexican jo.docxssuser454af01
 
The first part is a direct quote, copied word for word. Includ.docx
The first part is a direct quote, copied word for word. Includ.docxThe first part is a direct quote, copied word for word. Includ.docx
The first part is a direct quote, copied word for word. Includ.docxssuser454af01
 
The final research paper should be no less than 15 pages and in APA .docx
The final research paper should be no less than 15 pages and in APA .docxThe final research paper should be no less than 15 pages and in APA .docx
The final research paper should be no less than 15 pages and in APA .docxssuser454af01
 
The first one Description Pick a physical activity. Somethi.docx
The first one Description Pick a physical activity. Somethi.docxThe first one Description Pick a physical activity. Somethi.docx
The first one Description Pick a physical activity. Somethi.docxssuser454af01
 
The first column suggests traditional familyschool relationships an.docx
The first column suggests traditional familyschool relationships an.docxThe first column suggests traditional familyschool relationships an.docx
The first column suggests traditional familyschool relationships an.docxssuser454af01
 
The first president that I actually remembered was Jimmy Carter.  .docx
The first president that I actually remembered was Jimmy Carter.  .docxThe first president that I actually remembered was Jimmy Carter.  .docx
The first president that I actually remembered was Jimmy Carter.  .docxssuser454af01
 
The final project for this course is the creation of a conceptual mo.docx
The final project for this course is the creation of a conceptual mo.docxThe final project for this course is the creation of a conceptual mo.docx
The final project for this course is the creation of a conceptual mo.docxssuser454af01
 
The finance department of a large corporation has evaluated a possib.docx
The finance department of a large corporation has evaluated a possib.docxThe finance department of a large corporation has evaluated a possib.docx
The finance department of a large corporation has evaluated a possib.docxssuser454af01
 
The Final Paper must have depth of scholarship, originality, theoret.docx
The Final Paper must have depth of scholarship, originality, theoret.docxThe Final Paper must have depth of scholarship, originality, theoret.docx
The Final Paper must have depth of scholarship, originality, theoret.docxssuser454af01
 
The Final exam primarily covers the areas of the hydrosphere, the bi.docx
The Final exam primarily covers the areas of the hydrosphere, the bi.docxThe Final exam primarily covers the areas of the hydrosphere, the bi.docx
The Final exam primarily covers the areas of the hydrosphere, the bi.docxssuser454af01
 
The Final Paper must be 8 pages (not including title and reference p.docx
The Final Paper must be 8 pages (not including title and reference p.docxThe Final Paper must be 8 pages (not including title and reference p.docx
The Final Paper must be 8 pages (not including title and reference p.docxssuser454af01
 

More from ssuser454af01 (20)

The following pairs of co-morbid disorders and  a write 700 words .docx
The following pairs of co-morbid disorders and  a write 700 words .docxThe following pairs of co-morbid disorders and  a write 700 words .docx
The following pairs of co-morbid disorders and  a write 700 words .docx
 
The following is an access verification technique, listing several f.docx
The following is an access verification technique, listing several f.docxThe following is an access verification technique, listing several f.docx
The following is an access verification technique, listing several f.docx
 
The following discussion board post has to have a response. Please r.docx
The following discussion board post has to have a response. Please r.docxThe following discussion board post has to have a response. Please r.docx
The following discussion board post has to have a response. Please r.docx
 
The following information has been taken from the ledger accounts of.docx
The following information has been taken from the ledger accounts of.docxThe following information has been taken from the ledger accounts of.docx
The following information has been taken from the ledger accounts of.docx
 
The following attach files are my History Homewrok and Lecture Power.docx
The following attach files are my History Homewrok and Lecture Power.docxThe following attach files are my History Homewrok and Lecture Power.docx
The following attach files are my History Homewrok and Lecture Power.docx
 
The following is adapted from the work of Paul Martin Lester.In .docx
The following is adapted from the work of Paul Martin Lester.In .docxThe following is adapted from the work of Paul Martin Lester.In .docx
The following is adapted from the work of Paul Martin Lester.In .docx
 
The following article is related to deterring employee fraud within .docx
The following article is related to deterring employee fraud within .docxThe following article is related to deterring employee fraud within .docx
The following article is related to deterring employee fraud within .docx
 
The Five stages of ChangeBy Thursday, June 25, 2015, respond to .docx
The Five stages of ChangeBy Thursday, June 25, 2015, respond to .docxThe Five stages of ChangeBy Thursday, June 25, 2015, respond to .docx
The Five stages of ChangeBy Thursday, June 25, 2015, respond to .docx
 
The first step in understanding the behaviors that are associated wi.docx
The first step in understanding the behaviors that are associated wi.docxThe first step in understanding the behaviors that are associated wi.docx
The first step in understanding the behaviors that are associated wi.docx
 
The first one is due Sep 24 at 1100AMthe French-born Mexican jo.docx
The first one is due Sep 24 at 1100AMthe French-born Mexican jo.docxThe first one is due Sep 24 at 1100AMthe French-born Mexican jo.docx
The first one is due Sep 24 at 1100AMthe French-born Mexican jo.docx
 
The first part is a direct quote, copied word for word. Includ.docx
The first part is a direct quote, copied word for word. Includ.docxThe first part is a direct quote, copied word for word. Includ.docx
The first part is a direct quote, copied word for word. Includ.docx
 
The final research paper should be no less than 15 pages and in APA .docx
The final research paper should be no less than 15 pages and in APA .docxThe final research paper should be no less than 15 pages and in APA .docx
The final research paper should be no less than 15 pages and in APA .docx
 
The first one Description Pick a physical activity. Somethi.docx
The first one Description Pick a physical activity. Somethi.docxThe first one Description Pick a physical activity. Somethi.docx
The first one Description Pick a physical activity. Somethi.docx
 
The first column suggests traditional familyschool relationships an.docx
The first column suggests traditional familyschool relationships an.docxThe first column suggests traditional familyschool relationships an.docx
The first column suggests traditional familyschool relationships an.docx
 
The first president that I actually remembered was Jimmy Carter.  .docx
The first president that I actually remembered was Jimmy Carter.  .docxThe first president that I actually remembered was Jimmy Carter.  .docx
The first president that I actually remembered was Jimmy Carter.  .docx
 
The final project for this course is the creation of a conceptual mo.docx
The final project for this course is the creation of a conceptual mo.docxThe final project for this course is the creation of a conceptual mo.docx
The final project for this course is the creation of a conceptual mo.docx
 
The finance department of a large corporation has evaluated a possib.docx
The finance department of a large corporation has evaluated a possib.docxThe finance department of a large corporation has evaluated a possib.docx
The finance department of a large corporation has evaluated a possib.docx
 
The Final Paper must have depth of scholarship, originality, theoret.docx
The Final Paper must have depth of scholarship, originality, theoret.docxThe Final Paper must have depth of scholarship, originality, theoret.docx
The Final Paper must have depth of scholarship, originality, theoret.docx
 
The Final exam primarily covers the areas of the hydrosphere, the bi.docx
The Final exam primarily covers the areas of the hydrosphere, the bi.docxThe Final exam primarily covers the areas of the hydrosphere, the bi.docx
The Final exam primarily covers the areas of the hydrosphere, the bi.docx
 
The Final Paper must be 8 pages (not including title and reference p.docx
The Final Paper must be 8 pages (not including title and reference p.docxThe Final Paper must be 8 pages (not including title and reference p.docx
The Final Paper must be 8 pages (not including title and reference p.docx
 

Recently uploaded

Grant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingGrant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingTechSoup
 
Science 7 - LAND and SEA BREEZE and its Characteristics
Science 7 - LAND and SEA BREEZE and its CharacteristicsScience 7 - LAND and SEA BREEZE and its Characteristics
Science 7 - LAND and SEA BREEZE and its CharacteristicsKarinaGenton
 
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...EduSkills OECD
 
Employee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxEmployee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxNirmalaLoungPoorunde1
 
mini mental status format.docx
mini    mental       status     format.docxmini    mental       status     format.docx
mini mental status format.docxPoojaSen20
 
MENTAL STATUS EXAMINATION format.docx
MENTAL     STATUS EXAMINATION format.docxMENTAL     STATUS EXAMINATION format.docx
MENTAL STATUS EXAMINATION format.docxPoojaSen20
 
Paris 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityParis 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityGeoBlogs
 
CARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxCARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxGaneshChakor2
 
A Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformA Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformChameera Dedduwage
 
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxPOINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxSayali Powar
 
microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introductionMaksud Ahmed
 
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17Celine George
 
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdfssuser54595a
 
Presiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha electionsPresiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha electionsanshu789521
 
Micromeritics - Fundamental and Derived Properties of Powders
Micromeritics - Fundamental and Derived Properties of PowdersMicromeritics - Fundamental and Derived Properties of Powders
Micromeritics - Fundamental and Derived Properties of PowdersChitralekhaTherkar
 
APM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across SectorsAPM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across SectorsAssociation for Project Management
 
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...Marc Dusseiller Dusjagr
 

Recently uploaded (20)

Grant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingGrant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy Consulting
 
Science 7 - LAND and SEA BREEZE and its Characteristics
Science 7 - LAND and SEA BREEZE and its CharacteristicsScience 7 - LAND and SEA BREEZE and its Characteristics
Science 7 - LAND and SEA BREEZE and its Characteristics
 
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
 
Staff of Color (SOC) Retention Efforts DDSD
Staff of Color (SOC) Retention Efforts DDSDStaff of Color (SOC) Retention Efforts DDSD
Staff of Color (SOC) Retention Efforts DDSD
 
Employee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxEmployee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptx
 
mini mental status format.docx
mini    mental       status     format.docxmini    mental       status     format.docx
mini mental status format.docx
 
MENTAL STATUS EXAMINATION format.docx
MENTAL     STATUS EXAMINATION format.docxMENTAL     STATUS EXAMINATION format.docx
MENTAL STATUS EXAMINATION format.docx
 
Paris 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityParis 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activity
 
CARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxCARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptx
 
A Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformA Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy Reform
 
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxPOINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
 
microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introduction
 
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
 
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
 
Presiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha electionsPresiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha elections
 
Micromeritics - Fundamental and Derived Properties of Powders
Micromeritics - Fundamental and Derived Properties of PowdersMicromeritics - Fundamental and Derived Properties of Powders
Micromeritics - Fundamental and Derived Properties of Powders
 
Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝
 
APM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across SectorsAPM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across Sectors
 
TataKelola dan KamSiber Kecerdasan Buatan v022.pdf
TataKelola dan KamSiber Kecerdasan Buatan v022.pdfTataKelola dan KamSiber Kecerdasan Buatan v022.pdf
TataKelola dan KamSiber Kecerdasan Buatan v022.pdf
 
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
 

Microsoft Office Extra Credit Projects

  • 1. Extra Credit Projects Microsoft Office Applications Software I. Microsoft Word Create a one page document on any topic that interests you and save it with your User ID as the leading characters in the file name. Your document must include the following features: o Change the font type and font size of the copied text document
  • 2. Submit a printout of your word document with your final exam on the day of the final. II. Excel Create a spreadsheet for a payroll application for at least five employees and save it with your User ID as the leading characters in the file name. Include at least one graphic image of your choice using the chart wizard. Your spreadsheet should contain the following data with appropriate row and column labels: o Name o Hours worked o Hourly rate of pay
  • 3. o Gross pay (hours worked * hourly rate of pay) o Federal Tax Amount (gross pay * federal tax percentage) o State Tax Amount (gross pay * state tax percentage) o Net pay (gross pay – federal tax amount – state tax amount) o Total Gross pay o Total Federal tax amount total o Total State tax amount o Total net pay o Average Gross pay o Average Federal tax amount total o Average State tax amount o Average net pay your choice with a chart type of your choosing Submit a printout of your spreadsheet with your final exam on
  • 4. the day of the final. III. Powerpoint Create a presentation consisting of at least 5 slides on any topic. Include the following features: o Centered o Bulleted list o Bold Sound clips, videos, graphics and clip art can be downloaded from free sources on the web. t your slide presentation. You may print multiple slides on one page.
  • 5. Submit the printout of the presentation with your final exam on the day of the final. IV. Access Create a database with at least eight records added to keep track of your favorite television shows. Each record should have at least five fields of your choice. Submit the following screen captures of your database design and functioning in a word document: creating table least eight records two queries queries could be: o Which of my favorite shows are comedies?
  • 6. o Which of my favorite shows start after 9:00 P.M.? Submit the word document with your final exam on the day of the final. Extra Credit Projects Visual Basic Applications I. Project 2 Write a Visual Basic program which will find the gross pay, federal tax amount, state tax amount and net pay when the user supplies a person’s name, the number of hours worked, the hourly rate of pay, the federal tax percentage, and the state tax percentage for a person: o Name o Hours Worked o Hourly Rate o State Tax Rate
  • 7. o Federal Tax Rate o Gross Pay o Federal Tax Amount o State Tax Amount o Net Pay o empName o hrsWorked o hourlyRate o stTaxRate o fdTaxRate o grossPay o stTax o fdTax o netPay
  • 8. – stTax - fdTax o Calc o Clear o Quit Specific coding instructions. CALCULATE PAY Between the dashed lines below is the code for the Visual Basic Project that will find the gross pay, state tax amount, federal tax amount and net pay when the user enters the name, hours worked, hourly pay rate, state tax rate and federal tax rate entered by the user to the form textbox controls. The code that you will type is in bold red text. It assumes that the input text box controls are named as follows: empName
  • 9. hrsWorked hourlyRate stTaxRate fdTaxRate It also assumes that the output text boxe controls are named as follows: grossPay stTax fdTax netPay Button controls are assumed to be named as follows: Calc Clear Quit Remember to add the controls to the form before you begin coding. The code
  • 10. that you will type is in bold red text. Begin coding by double clicking on one of the three button controls to enter the code for the click method of that button control. --------------------------------------------------------------------------- Public Class Form1 Private Sub Quit_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Quit.Click End End Sub Private Sub Clear_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Clear.Click empName.Text = "" hrsWorked.Text = "" hourlyRate.Text = ""
  • 11. stTaxRate.Text = "" fdTaxRate.Text = "" grossPay.Text = "" stTax.Text = "" fdTax.Text = "" netPay.Text = "" End Sub Private Sub Calc_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Calc.Click grossPay.Text = Val(hrsWorked.Text) * Val(hourlyRate.Text) fdTax.Text = Val(grossPay.Text) * (Val(fdTaxRate.Text) / 100) stTax.Text = Val(grossPay.Text) * (Val(stTaxRate.Text) / 100) netPay.Text = Val(grossPay.Text) - Val(fdTax.Text) - Val(stTax.Text) End Sub End Class
  • 12. What to upload: 1. Copy and paste program instruction listing from Visual Basic editor to a Microsoft Word document. (Your listing should be similar to the one above) 2. Run the form, enter values into the text boxes and press the Calc button on your form. Capture the screen by hitting the PrtScr key. 3. Paste the screen capture of the form to the same Word document containing the program listing. Submit a printout of the above document with your final exam on the day of the final. Extra Credit Projects
  • 13. Visual Basic Applications I. Project 1 Write a Visual Basic program which will find the sum and average of three numbers. Your form will contain the following controls: o Number 1 o Number 2 o Number 3 o Sum o Average o Num1 o Num2 o Num3 o Sum
  • 14. o Avg o Calc output in the Sum and Avg text box controls o Clear o Quit Specific coding instructions. CALCULATE SUM AND AVERAGE OF THREE NUMBERS Between the dashed lines below is the code for the Visual Basic Project that will find the sum and average of three numbers entered by the user to the form textbox controls. The code that you will type is in bold red text. It
  • 15. assumes that the three input text boxes are named as follows: Num1 Num2 Num3 It also assumes that the output text boxes are named as follows: Sum Avg Buttons are assumed to be named as follows: Calc Clear Quit Remember to add the controls to the form before you begin coding. The code that you will type is in bold red text. Begin coding by double clicking on
  • 16. one of the three button controls to enter the code for the click method of that button control. ----------------------------------------------------------------------- Public Class Form1 Private Sub Quit_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Quit.Click End End Sub Private Sub Clear_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Clear.Click Num1.Text = "" Num2.Text = "" Num3.Text = "" Sum.Text = "" Avg.Text = ""
  • 17. End Sub Private Sub Calc_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Calc.Click Sum.Text = Val(Num1.Text) + Val(Num2.Text) + Val(Num3.Text) Avg.Text = Val(Sum.Text) / 3 End Sub End Class --------------------------------------------------------------------- What to upload: 1. Copy and paste program instruction listing from Visual Basic editor to a Microsoft Word document. (Your listing should be similar to the one above) 2. Run the form, enter values into the text boxes and press the Calc button on your form. Capture the screen by hitting the PrtScr key.
  • 18. 3. Paste the screen capture of the form to the same Word document containing the program listing. Submit a printout of the above document with your final exam on the day of the final.