SlideShare uma empresa Scribd logo
1 de 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.

Mais conteúdo relacionado

Semelhante a Extra Credit Projects Microsoft Office Applications Sof.docx

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 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
 
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
 
CIS 170 Focus Dreams/newtonhelp.com
CIS 170 Focus Dreams/newtonhelp.comCIS 170 Focus Dreams/newtonhelp.com
CIS 170 Focus Dreams/newtonhelp.combellflower82
 

Semelhante a Extra Credit Projects Microsoft Office Applications Sof.docx (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 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
 
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
 
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
 

Mais de 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
 

Mais de 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
 

Último

Basic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptxBasic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptxDenish Jangid
 
Micro-Scholarship, What it is, How can it help me.pdf
Micro-Scholarship, What it is, How can it help me.pdfMicro-Scholarship, What it is, How can it help me.pdf
Micro-Scholarship, What it is, How can it help me.pdfPoh-Sun Goh
 
UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdf
UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdfUGC NET Paper 1 Mathematical Reasoning & Aptitude.pdf
UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdfNirmal Dwivedi
 
General Principles of Intellectual Property: Concepts of Intellectual Proper...
General Principles of Intellectual Property: Concepts of Intellectual  Proper...General Principles of Intellectual Property: Concepts of Intellectual  Proper...
General Principles of Intellectual Property: Concepts of Intellectual Proper...Poonam Aher Patil
 
Fostering Friendships - Enhancing Social Bonds in the Classroom
Fostering Friendships - Enhancing Social Bonds  in the ClassroomFostering Friendships - Enhancing Social Bonds  in the Classroom
Fostering Friendships - Enhancing Social Bonds in the ClassroomPooky Knightsmith
 
Key note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdfKey note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdfAdmir Softic
 
Understanding Accommodations and Modifications
Understanding  Accommodations and ModificationsUnderstanding  Accommodations and Modifications
Understanding Accommodations and ModificationsMJDuyan
 
How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17Celine George
 
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.pdfDr Vijay Vishwakarma
 
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...ZurliaSoop
 
How to setup Pycharm environment for Odoo 17.pptx
How to setup Pycharm environment for Odoo 17.pptxHow to setup Pycharm environment for Odoo 17.pptx
How to setup Pycharm environment for Odoo 17.pptxCeline George
 
COMMUNICATING NEGATIVE NEWS - APPROACHES .pptx
COMMUNICATING NEGATIVE NEWS - APPROACHES .pptxCOMMUNICATING NEGATIVE NEWS - APPROACHES .pptx
COMMUNICATING NEGATIVE NEWS - APPROACHES .pptxannathomasp01
 
Jamworks pilot and AI at Jisc (20/03/2024)
Jamworks pilot and AI at Jisc (20/03/2024)Jamworks pilot and AI at Jisc (20/03/2024)
Jamworks pilot and AI at Jisc (20/03/2024)Jisc
 
ICT role in 21st century education and it's challenges.
ICT role in 21st century education and it's challenges.ICT role in 21st century education and it's challenges.
ICT role in 21st century education and it's challenges.MaryamAhmad92
 
Accessible Digital Futures project (20/03/2024)
Accessible Digital Futures project (20/03/2024)Accessible Digital Futures project (20/03/2024)
Accessible Digital Futures project (20/03/2024)Jisc
 
Beyond_Borders_Understanding_Anime_and_Manga_Fandom_A_Comprehensive_Audience_...
Beyond_Borders_Understanding_Anime_and_Manga_Fandom_A_Comprehensive_Audience_...Beyond_Borders_Understanding_Anime_and_Manga_Fandom_A_Comprehensive_Audience_...
Beyond_Borders_Understanding_Anime_and_Manga_Fandom_A_Comprehensive_Audience_...Pooja Bhuva
 
Exploring_the_Narrative_Style_of_Amitav_Ghoshs_Gun_Island.pptx
Exploring_the_Narrative_Style_of_Amitav_Ghoshs_Gun_Island.pptxExploring_the_Narrative_Style_of_Amitav_Ghoshs_Gun_Island.pptx
Exploring_the_Narrative_Style_of_Amitav_Ghoshs_Gun_Island.pptxPooja Bhuva
 
Application orientated numerical on hev.ppt
Application orientated numerical on hev.pptApplication orientated numerical on hev.ppt
Application orientated numerical on hev.pptRamjanShidvankar
 
Graduate Outcomes Presentation Slides - English
Graduate Outcomes Presentation Slides - EnglishGraduate Outcomes Presentation Slides - English
Graduate Outcomes Presentation Slides - Englishneillewis46
 
How to Manage Global Discount in Odoo 17 POS
How to Manage Global Discount in Odoo 17 POSHow to Manage Global Discount in Odoo 17 POS
How to Manage Global Discount in Odoo 17 POSCeline George
 

Último (20)

Basic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptxBasic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptx
 
Micro-Scholarship, What it is, How can it help me.pdf
Micro-Scholarship, What it is, How can it help me.pdfMicro-Scholarship, What it is, How can it help me.pdf
Micro-Scholarship, What it is, How can it help me.pdf
 
UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdf
UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdfUGC NET Paper 1 Mathematical Reasoning & Aptitude.pdf
UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdf
 
General Principles of Intellectual Property: Concepts of Intellectual Proper...
General Principles of Intellectual Property: Concepts of Intellectual  Proper...General Principles of Intellectual Property: Concepts of Intellectual  Proper...
General Principles of Intellectual Property: Concepts of Intellectual Proper...
 
Fostering Friendships - Enhancing Social Bonds in the Classroom
Fostering Friendships - Enhancing Social Bonds  in the ClassroomFostering Friendships - Enhancing Social Bonds  in the Classroom
Fostering Friendships - Enhancing Social Bonds in the Classroom
 
Key note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdfKey note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdf
 
Understanding Accommodations and Modifications
Understanding  Accommodations and ModificationsUnderstanding  Accommodations and Modifications
Understanding Accommodations and Modifications
 
How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17
 
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
 
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
 
How to setup Pycharm environment for Odoo 17.pptx
How to setup Pycharm environment for Odoo 17.pptxHow to setup Pycharm environment for Odoo 17.pptx
How to setup Pycharm environment for Odoo 17.pptx
 
COMMUNICATING NEGATIVE NEWS - APPROACHES .pptx
COMMUNICATING NEGATIVE NEWS - APPROACHES .pptxCOMMUNICATING NEGATIVE NEWS - APPROACHES .pptx
COMMUNICATING NEGATIVE NEWS - APPROACHES .pptx
 
Jamworks pilot and AI at Jisc (20/03/2024)
Jamworks pilot and AI at Jisc (20/03/2024)Jamworks pilot and AI at Jisc (20/03/2024)
Jamworks pilot and AI at Jisc (20/03/2024)
 
ICT role in 21st century education and it's challenges.
ICT role in 21st century education and it's challenges.ICT role in 21st century education and it's challenges.
ICT role in 21st century education and it's challenges.
 
Accessible Digital Futures project (20/03/2024)
Accessible Digital Futures project (20/03/2024)Accessible Digital Futures project (20/03/2024)
Accessible Digital Futures project (20/03/2024)
 
Beyond_Borders_Understanding_Anime_and_Manga_Fandom_A_Comprehensive_Audience_...
Beyond_Borders_Understanding_Anime_and_Manga_Fandom_A_Comprehensive_Audience_...Beyond_Borders_Understanding_Anime_and_Manga_Fandom_A_Comprehensive_Audience_...
Beyond_Borders_Understanding_Anime_and_Manga_Fandom_A_Comprehensive_Audience_...
 
Exploring_the_Narrative_Style_of_Amitav_Ghoshs_Gun_Island.pptx
Exploring_the_Narrative_Style_of_Amitav_Ghoshs_Gun_Island.pptxExploring_the_Narrative_Style_of_Amitav_Ghoshs_Gun_Island.pptx
Exploring_the_Narrative_Style_of_Amitav_Ghoshs_Gun_Island.pptx
 
Application orientated numerical on hev.ppt
Application orientated numerical on hev.pptApplication orientated numerical on hev.ppt
Application orientated numerical on hev.ppt
 
Graduate Outcomes Presentation Slides - English
Graduate Outcomes Presentation Slides - EnglishGraduate Outcomes Presentation Slides - English
Graduate Outcomes Presentation Slides - English
 
How to Manage Global Discount in Odoo 17 POS
How to Manage Global Discount in Odoo 17 POSHow to Manage Global Discount in Odoo 17 POS
How to Manage Global Discount in Odoo 17 POS
 

Extra Credit Projects Microsoft Office Applications Sof.docx

  • 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.