SlideShare a Scribd company logo
1 of 16
Office 2016 – myitlab:grader – Instructions Access Project
MIS 301 - Access Test
Project Description:
Flyer University (FlyerU) uses a MS Access database (that you
will download) to track first-year students and to manage their
course offerings. You are asked to complete the below-
mentioned tasks to help FlyerU with their operating processes.
To begin, download, i.e., Save (do NOT Open), the test database
file named MIS 301_Access_Test.accdb from the course
MyITLab site, if you have not done so already. Logout of
MyITLab and close the browser window. Other than at the start
and end of the test as specified, do not open any windows
except ACCESS.
Instructions:
For the purpose of grading the project you are required to
perform the following tasks:
Step Instructions Points Possible
1 Start Access. Open the downloaded Access file named MIS
301_Access_Test.accdb. 0
2 FlyerU wants to keep data about course sections to be
offered in the upcoming term. Classrooms cannot seat more than
35 students. Create a table named SECTION to store the fields
with the properties as specified below: Field NameData
TypePropertiesRecIDNumberDescription: Primary
keyCourseIDShort TextField size of 6; Description: Foreign
keySectionShort TextField size of 2HonorsYes/NoDefault
value: NoInstructorShort TextField size of
20CapacityNumberMust only allow a value <36
Set RecID as the Primary key field, save the table, and close the
table. 16
3 Create a one-to-many relationship between the CourseID
fields in the COURSE (primary) and SECTION (related) tables.
(Requirement: This relationship must be set up such that it is
not possible to enter a CourseID in the SECTION table that
does not already exist in the COURSE table.) Save the changes
and close the Relationships window.
Hint: On the Database Tools tab, in the Relationships group,
click Relationships. 4
4 Create one record in the SECTION table as follows with
the Instructor field value as your actual name: Field
NameValueRecID1CourseIDBUS201Section01HonorsYesInstru
ctorStudent NameCapacity30
Close the table.
8
5 Advisors need to review information about students and
courses they have taken. Create a form named StudentRecord to
display the StudentID, Name, Major, and Balance (in that order,
from STUDENT) for each student and the CourseID, Title,
Credits (in that order, from COURSE), and Grade (from
TRANSCRIPT) for all courses he or she has taken (in a
subform). The format should facilitate looking at all the
information (as specified) for a student on one screen, i.e.,
without tabs or multiple pages. The boxes/columns should be
wide enough to display the data. Save and close the form. 0
6 FlyerU staff often need to review class rosters. Create a
form named CourseRoster to display for each course its
CourseID, Title, Credits, and Category (in that order, from
COURSE) as well as the StudentID, Name, and Major (in that
order, from STUDENT) of all students in that course (in a
subform). The format should facilitate looking at all the
information (as specified) for a course on one screen, i.e.,
without tabs or multiple pages, although there may be scroll
bars. The boxes/columns should be wide enough to display the
data. Save and close the form. 12
7 FlyerU needs a catalog of courses (suitable for printing)
that shows the CourseID, Title, and Credits (from COURSE) for
courses it offers. Use the Report Wizard to create the report
with the name Catalog. The list should be grouped by the
Category of the school (Arts, Professional, and Sciences) that
offers the courses and sorted by CourseID. It should also show
the total number (i.e., count) of courses within each category as
well as the total count across all categories (Hint: modify the
report as necessary to count the values in the Credits column).
In the Category Footer, to the left of the count, enter the label
Sum for Category. In the Report Footer, to the left of the total
count, enter the label Grand Total. Also, the report must contain
the date and page number (in N of M format) at the bottom of
each page and the preparer's name (type Prepared By: Student)
to the right of the report title on the first page only. Save the
report as Catalog and close the report. 9
8 Student Services monitors the amount left on students'
declining balance cards and alerts academic department chairs if
the average balance for their majors seems low. It needs a
statement (suitable for printing) that shows the StudentID,
Name, and Balance (from STUDENT) for each student. Use the
Report Wizard to create the report with the name Card Balance.
The list should be grouped by Major and sorted by StudentID.
Modify the report as necessary to show the average balance for
each major as well as the overall average across all majors. In
the Major Footer, to the left of the average, enter the label Avg.
In the Report Footer, to the left of the average, enter the label
Overall Average. Also, the report must contain the date and
page number (in N of M format) on the bottom of each page and
the preparer's name (type Prepared By: Student) on the top
(toward the right) of the first page in the report. Save the report
as Card Balance and close the report. 0
9 FlyerU is interested in reviewing courses offered that are
worth only a small number of credits, i.e., fewer than the typical
number of 3. Create a query named Query1
• to display the Credits, CourseID, and Title fields (in that
order, from COURSE)
• sorted in descending order by Credits and within that in
ascending order by Title
• for all courses where Credits is less than 3.
Run and then save the query. Close the query. 10
10 The Accounting department needs to review the account
balance for its majors. Do not display the major itself in the
results, since they are all ACC. Create a query named Query2a
• to display only the Name and Balance (in that order, from
STUDENT)
• sorted in ascending order by Name
• for all students whose major is ACC.
Run and then save the query. Close the query. 10
11 The Dean of Professional Programs needs to review the list
of courses offered in his area. He does not need to see the
course category itself in the results since it will be Professional
for all his courses. Create a query named Query2b
• to display only the course Title and Credits (in that order,
from COURSE)
• sorted in ascending order by Title
• for all courses with Category as Professional.
Run and then save the query. Close the query. 0
12 The Marketing department needs to identify its students
who may be in trouble financially (i.e., balance less than $25)
or academically (i.e., an F in any course). Create a query named
Query3a
• to display the StudentID, Name, Major, Balance (from
STUDENT, in that order), CourseID, and Grade (from
TRANSCRIPT in that order)
• sorted in ascending order by StudentID
• for all students whose major is MKT and either the Balance is
less than 25 or Grade is F.
Hint: Note that you may have the same student appear multiple
times in the output.
Run and then save the query. Close the query. 0
13 The Provost is concerned that students are slacking off in
Arts courses or those that are only 1 credit. She needs a list of
such courses that students have failed. Create a query named
Query3b
• to display the Category, Title, Credits, and Grade (in that
order)
• sorted in ascending order by Title
• for all cases with a Grade of F and either Category is Arts or
Credits is 1.
Hint: Note that you may have the same course appear multiple
times in the output.
Run and then save the query. Close the query. 9
14 Periodically the Dean of Students meets with groups of
students by major. She wants to see a list of students by any
major she may specify. Create a query named Query4a
• to display the StudentID, Name, Major, and Balance fields (in
that order, from STUDENT)
• sorted in ascending order by StudentID
• for all students based on a Major supplied by the Dean when
the query is run; Create the prompt as [Enter Desired Major].
Run (enter BIO) and then save the query. Close the query. 7
15 The Registrar frequently gets calls from students wanting
to know their grades history. He wants to see a list of courses
and grades for any student he may specify, i.e., the query must
be flexible enough to accept a StudentID when he runs the
query (Note that the Registrar does not know how to design
queries). Create a query named Query4b
• to display the StudentID (from STUDENT table), Name,
CourseID (from TRANSCRIPT table), Title, and Grade fields
(in that order)
• sorted in ascending order by CourseID
• for the student whose StudentID is entered by the Registrar
when prompted on running the query; Create the prompt as
[Enter Student ID:].
Run (enter 10578) and then save the query. Close the query. 0
16 FlyerU wants to estimate the amount paid by each student
for each course he or she failed assuming a per credit fee of
$250. Create a query named Query5a
• to display the StudentID (from STUDENT), Name, CourseID
(from COURSE), Grade, and Credits (in that order)
• a calculated field named WastedFee that displays the result of
multiplying Credits by 250
• sorted in ascending order by CourseID
• where the Grade is F.
Run and then save the query. Close the query. 7
17 The Marketing department has received a donation, which
will result in $50 being added to the card balance of each
student whose major is Marketing. An estimate of the new
balance for each Marketing student is required. Create a query
named Query5b
• to display the StudentID, Name, Major, and Balance (in that
order)
• a calculated field named NewBalance that displays the result
of adding 50 to Balance
• sorted in ascending order by StudentID
• where the Major is MKT.
(Do not be concerned about the formatting of NewBalance.)
Run and then save the query. Close the query. 0
18 For allocating resources to academic departments, FlyerU
needs to calculate the sum of credit hours taken by students in
each major. Create a query named Query6a
• to display the Major and a field named TotalCredits that shows
the sum of Credits
• for all students within each Major.
Run and then save the query. Close the query. 3
19 As part of their monitoring of students' card balances,
Student Services needs to calculate the sum of the card balance
for all students in each major. They need a list of majors and
total card balance for each major. Create a query named
Query6b
• to display the Major and a field named TotalBalance that
shows the sum of Balance
• across all students within each Major.
Run and then save the query. Close the query. 0
20 In an increasingly technological world, FlyerU wants to
ensure that it offers some courses that involve computers.
Create a query named Query7a
• to display the CourseID, Title, Credits, and Category fields (in
that order, from COURSE)
• sorted in ascending order by CourseID
• for all courses where the Title field has some reference to
computer (or some variation of that word such as computing or
computation – specifically comput) anywhere in the Title.
Hint: Note that you may need to view the Title field in the
relevant table to decide how to write this query.
Run and then save the query. Close the query. 3
21 The chair of the MIS department is concerned that MIS
students may be only taking introductory courses and wants a
list of other courses taken. Create a query named Query7b
• to display the StudentID (from STUDENT), Name, Major, and
Title (in that order)
• sorted in ascending order by Title
• for all records where the Major is MIS and course Title field
value does not begin with Intro or some variation of Intro (e.g.,
Introduction, Introducing, etc. but assume that it is too tedious
to predict all the variations.)
Run and then save the query. Close the query. 0
22 The Dean needs to check if there are any students who
have not attempted any courses. Create a query named Query8a
• to display the StudentID, Name, Major, and Balance (in that
order, from STUDENT)
• for all students (StudentID, from TRANSCRIPT) who have not
taken any courses, i.e., have no transcript entries.
Run and then save the query. Close the query. 0
23 The Provost needs to check if there are any courses that
have not been taken by any students. Create a query named
Query8b
• to display the CourseID, Title, Credits, and Category (from
COURSE, in that order)
• for all courses attempted by no students, i.e., courses
(CourseID, from TRANSCRIPT) that have no transcript entries.
Run and then save the query. Close the query. 2
24 At the end, make sure you do the following in sequence:
1. Before you close the ACCESS window, make sure that the
database is still on your desktop (saved).
2. Close the database and then close Access.
3. Launch the MyITLab application and Log-in.
4. Return to the MyITLab Assignment and complete Step 3 by
Submitting/Uploading your completed database. NOTE: This is
the .accdb file and NOT the .laccdb file) Don't forget to
submit/upload!
5. Log out of MyITLab after successfully submitting the
assignment.
6. Email the database to your instructor before you leave the
classroom.
7. Do NOT delete the database from your desktop until the test
is graded or you receive confirmation from the instructor. 0
Updated: 11/15/2017 1 Current_Instruction.docx
Flyer University (FlyerU) uses a MS Access database (that you
will download) to track first-year students and to manage their
course offerings. You are asked to complete the below-
mentioned tasks to help FlyerU with their operating processes.
To begin, download, i.e., Save (do NOT Open), the test database
file named MIS 301_Access_Test.accdb from the course
MyITLab site, if you have not done so already. Logout of
MyITLab and close the browser window. Other than at the start
and end of the test as specified, do not open any windows
except ACCESS.
http://www.megafileupload.com/nbty/MIS301_Access_Test.acc
db
Instructions:
For the purpose of grading the project you are required to
perform the following tasks:
Step
Instructions
Points Possible
1
Start Access. Open the downloaded Access file named MIS
301_Access_Test.accdb.
0
2
FlyerU wants to keep data about course sections to be offered in
the upcoming term. Classrooms cannot seat more than 35
students. Create a table named SECTION to store the fields with
the properties as specified below:
Field Name
Data Type
Properties
RecID
Number
Description: Primary key
CourseID
Short Text
Field size of 6; Description: Foreign key
Section
Short Text
Field size of 2
Honors
Yes/No
Default value: No
Instructor
Short Text
Field size of 20
Capacity
Number
Must only allow a value <36
Set RecID as the Primary key field, save the table, and close the
table.
Hint: On the CREATE tab, in the Tables group, click Table
Design.
16
3
Create a one-to-many relationship between the CourseID fields
in the COURSE (primary) and SECTION (related) tables.
(Requirement: This relationship must be set up such that it is
not possible to enter a CourseID in the SECTION table that
does not already exist in the COURSE table.) Save the changes
and close the Relationships window.
4
4
Create one record in the SECTION table as follows with the
Instructor field value as your actual name:
Field Name
Value
RecID
1
CourseID
BUS201
Section
01
Honors
Yes
Instructor
Student Name
Capacity
30
Close the table.
6
5
Skip.
0
6
FlyerU staff often need to review class rosters. Create a form
named CourseRoster to display for each course its CourseID,
Title, Credits, and Category (in that order, from COURSE) as
well as the StudentID, Name, and Major (in that order, from
STUDENT) of all students in that course (in a subform). The
format should facilitate looking at all the information (as
specified) for a course on one screen, i.e., without tabs or
multiple pages, although there may be scroll bars. The
boxes/columns should be wide enough to display the data. Save
and close the form.
15
7
FlyerU needs a catalog of courses (suitable for printing) that
shows the CourseID, Title, and Credits (from COURSE) for
courses it offers. Use the Report Wizard to create the report
with the name Catalog. The list should be grouped by the
Category of the school (Arts, Professional, and Sciences) that
offers the courses and sorted by CourseID. It should also show
the total number (i.e., count) of courses within each category as
well as the total count across all categories (Hint: modify the
report as necessary to count the values in the Credits column).
In the Category Footer, to the left of the count, enter the label
Sum for Category. In the Report Footer, to the left of the total
count, enter the label Grand Total. Also, the report must contain
the date and page number (in N of M format) at the bottom of
each page and the preparer’s name (type Prepared By: Student)
to the right of the report title on the first page only. Save the
report as Catalog and close the report.
Hint: On the CREATE tab, in the Reports group, click Report
Wizard. To count the courses, in Layout view, click in the
Credits column, then on the DESIGN tab, in the Grouping &
Totals group, click Totals, and then click Count Records. To
add the label, in Design view, in the Controls group, click
Label, and then click in the Report Header section.
9
8
Skip.
0
9
FlyerU is interested in reviewing courses offered that are worth
only a small number of credits, i.e., fewer than the typical
number of 3. Create a query named Query1
• to display the Credits, CourseID, and Title fields (in that
order, from COURSE)
• sorted in descending order by Credits and within that in
ascending order by Title
• for all courses where Credits is less than 3.
Run and then save the query. Close the query.
10
10
The Accounting department needs to review the account balance
for its majors. Do not display the major itself in the results,
since they are all ACC. Create a query named Query2a
• to display only the Name and Balance (in that order, from
STUDENT)
• sorted in ascending order by Name
• for all students whose major is ACC.
Run and then save the query. Close the query.
10
11
Skip.
0
12
Skip.
0
13
The Provost is concerned that students are slacking off in Arts
courses or those that are only 1 credit. She needs a list of such
courses that students have failed. Create a query named
Query3b
• to display the Category, Title, Credits, and Grade (in that
order)
• sorted in ascending order by Title
• for all cases with a Grade of F and either Category is Arts or
Credits is 1.
Hint: Note that you may have the same course appear multiple
times in the output.
Run and then save the query. Close the query.
10
14
Periodically the Dean of Students meets with groups of students
by major. She wants to see a list of students by any major she
may specify. Create a query named Query4a
• to display the StudentID, Name, Major, and Balance fields (in
that order, from STUDENT)
• sorted in ascending order by StudentID
• for all students based on a Major supplied by the Dean when
the query is run; Create the prompt as [Enter Desired Major].
Run (enter BIO) and then save the query. Close the query.
Hint: In the Query Design grid, click the Criteria row for the
Major field and enter [Enter Desired Major].
5
15
Skip.
0
16
FlyerU wants to estimate the amount paid by each student for
each course he or she failed assuming a per credit fee of $250.
Create a query named Query5a
• to display the StudentID (from STUDENT), Name, CourseID
(from COURSE), Grade, and Credits (in that order)
• a calculated field named WastedFee that displays the result of
multiplying Credits by 250
• sorted in ascending order by CourseID
• where the Grade is F.
Run and then save the query. Close the query.
5
17
Skip.
0
18
For allocating resources to academic departments, FlyerU needs
to calculate the sum of credit hours taken by students in each
major. Create a query named Query6a
• to display the Major and a field named TotalCredits that shows
the sum of Credits
• for all students within each Major.
Run and then save the query. Close the query.
Hint: On the QUERY TOOLS DESIGN tab, in the Show/Hide
group, click Totals. Set the Credits field to TotalCredits:
Credits, then in the Total row, click the down arrow, and then
click Sum.
3
19
Skip.
0
20
In an increasingly technological world, FlyerU wants to ensure
that it offers some courses that involve computers. Create a
query named Query7a
• to display the CourseID, Title, Credits, and Category fields (in
that order, from COURSE)
• sorted in ascending order by CourseID
• for all courses where the Title field has some reference to
computer (or some variation of that word such as computing or
computation – basically comput) anywhere in the Title.
Hint: Note that you may need to view the Title field in the
relevant table to decide how to write this query.
Run and then save the query. Close the query.
5
21
Skip.
0
22
Skip.
0
23
The Provost needs to check if there are any courses that have
not been taken by any students. Create a query named Query8b
• to display the CourseID, Title, Credits, and Category (from
COURSE, in that order)
• for all courses attempted by no students, i.e., courses
(CourseID, from TRANSCRIPT) that have no transcript entries.
Run and then save the query. Close the query.
Hint: From the TRANSCRIPT table, add CourseID as the last
field in the query. In the Criteria row of the same field, enter Is
Null.
2
24
At the end, make sure you do the following in sequence:
1. Before you close the ACCESS window, make sure that the
database is still on your desktop (saved).
2. Close the database and then close Access.
3. Launch the MyITLab application and Log-in.
4. Return to the MyITLab Assignment and complete Step 3 by
Submitting/Uploading your completed database. NOTE: This is
the .accdb file and NOT the .laccdb file) Don’t forget to
submit/upload!
5. Log out of MyITLab after successfully submitting the
assignment.
6. Do NOT delete the database from your desktop until the test
is graded or you receive confirmation from the instructor.
0
Total Points
100

More Related Content

Similar to Office 2016 – myitlabgrader – InstructionsAccess ProjectMIS 30.docx

OracleFIT5195-2-Star Schema.pdfWeek 2 – Star SchemaSe.docx
OracleFIT5195-2-Star Schema.pdfWeek 2 – Star SchemaSe.docxOracleFIT5195-2-Star Schema.pdfWeek 2 – Star SchemaSe.docx
OracleFIT5195-2-Star Schema.pdfWeek 2 – Star SchemaSe.docx
amit657720
 
OracleFIT5195-2-Star Schema.pdfWeek 2 – Star SchemaSe.docx
OracleFIT5195-2-Star Schema.pdfWeek 2 – Star SchemaSe.docxOracleFIT5195-2-Star Schema.pdfWeek 2 – Star SchemaSe.docx
OracleFIT5195-2-Star Schema.pdfWeek 2 – Star SchemaSe.docx
vannagoforth
 
Control system for entry and exit
Control system for entry and exitControl system for entry and exit
Control system for entry and exit
controlEyS
 
Student Name CourseCIS339Session (month, year)032019.docx
Student Name CourseCIS339Session (month, year)032019.docxStudent Name CourseCIS339Session (month, year)032019.docx
Student Name CourseCIS339Session (month, year)032019.docx
cpatriciarpatricia
 
MISY 3331 Advanced Database ConceptsAssignment 3Dr. Sotirios .docx
MISY 3331 Advanced Database ConceptsAssignment 3Dr.  Sotirios .docxMISY 3331 Advanced Database ConceptsAssignment 3Dr.  Sotirios .docx
MISY 3331 Advanced Database ConceptsAssignment 3Dr. Sotirios .docx
altheaboyer
 
Page 1 of 11 A. Lab # BSBA BIS245A-5B B.docx
  Page 1 of 11     A. Lab #  BSBA BIS245A-5B  B.docx  Page 1 of 11     A. Lab #  BSBA BIS245A-5B  B.docx
Page 1 of 11 A. Lab # BSBA BIS245A-5B B.docx
joyjonna282
 
WEEK 5 PROBLEM SET Due week 5 and worth 200 points. Yo.docx
WEEK 5 PROBLEM SET Due week 5 and worth 200 points.   Yo.docxWEEK 5 PROBLEM SET Due week 5 and worth 200 points.   Yo.docx
WEEK 5 PROBLEM SET Due week 5 and worth 200 points. Yo.docx
cockekeshia
 
Charles WilliamsCS362Unit 3 Discussion BoardStructured Query Langu.docx
Charles WilliamsCS362Unit 3 Discussion BoardStructured Query Langu.docxCharles WilliamsCS362Unit 3 Discussion BoardStructured Query Langu.docx
Charles WilliamsCS362Unit 3 Discussion BoardStructured Query Langu.docx
christinemaritza
 
What every teacher should know
What every teacher should knowWhat every teacher should know
What every teacher should know
khajjiri
 
Marketing internship report guidelines mba bba
Marketing internship report guidelines mba bbaMarketing internship report guidelines mba bba
Marketing internship report guidelines mba bba
Furqan Fakhar
 

Similar to Office 2016 – myitlabgrader – InstructionsAccess ProjectMIS 30.docx (14)

OracleFIT5195-2-Star Schema.pdfWeek 2 – Star SchemaSe.docx
OracleFIT5195-2-Star Schema.pdfWeek 2 – Star SchemaSe.docxOracleFIT5195-2-Star Schema.pdfWeek 2 – Star SchemaSe.docx
OracleFIT5195-2-Star Schema.pdfWeek 2 – Star SchemaSe.docx
 
OracleFIT5195-2-Star Schema.pdfWeek 2 – Star SchemaSe.docx
OracleFIT5195-2-Star Schema.pdfWeek 2 – Star SchemaSe.docxOracleFIT5195-2-Star Schema.pdfWeek 2 – Star SchemaSe.docx
OracleFIT5195-2-Star Schema.pdfWeek 2 – Star SchemaSe.docx
 
Control system for entry and exit
Control system for entry and exitControl system for entry and exit
Control system for entry and exit
 
Student Name CourseCIS339Session (month, year)032019.docx
Student Name CourseCIS339Session (month, year)032019.docxStudent Name CourseCIS339Session (month, year)032019.docx
Student Name CourseCIS339Session (month, year)032019.docx
 
Using ExamSoft Rubrics to Assess Student Medical Research
Using ExamSoft Rubrics to Assess Student Medical Research Using ExamSoft Rubrics to Assess Student Medical Research
Using ExamSoft Rubrics to Assess Student Medical Research
 
Uniport
UniportUniport
Uniport
 
MISY 3331 Advanced Database ConceptsAssignment 3Dr. Sotirios .docx
MISY 3331 Advanced Database ConceptsAssignment 3Dr.  Sotirios .docxMISY 3331 Advanced Database ConceptsAssignment 3Dr.  Sotirios .docx
MISY 3331 Advanced Database ConceptsAssignment 3Dr. Sotirios .docx
 
Page 1 of 11 A. Lab # BSBA BIS245A-5B B.docx
  Page 1 of 11     A. Lab #  BSBA BIS245A-5B  B.docx  Page 1 of 11     A. Lab #  BSBA BIS245A-5B  B.docx
Page 1 of 11 A. Lab # BSBA BIS245A-5B B.docx
 
9 steps to a better gradebook in blackboard 9.1
9 steps to a better gradebook in blackboard 9.19 steps to a better gradebook in blackboard 9.1
9 steps to a better gradebook in blackboard 9.1
 
WEEK 5 PROBLEM SET Due week 5 and worth 200 points. Yo.docx
WEEK 5 PROBLEM SET Due week 5 and worth 200 points.   Yo.docxWEEK 5 PROBLEM SET Due week 5 and worth 200 points.   Yo.docx
WEEK 5 PROBLEM SET Due week 5 and worth 200 points. Yo.docx
 
Adding A Course Using Web Reg Revised
Adding A Course Using Web Reg RevisedAdding A Course Using Web Reg Revised
Adding A Course Using Web Reg Revised
 
Charles WilliamsCS362Unit 3 Discussion BoardStructured Query Langu.docx
Charles WilliamsCS362Unit 3 Discussion BoardStructured Query Langu.docxCharles WilliamsCS362Unit 3 Discussion BoardStructured Query Langu.docx
Charles WilliamsCS362Unit 3 Discussion BoardStructured Query Langu.docx
 
What every teacher should know
What every teacher should knowWhat every teacher should know
What every teacher should know
 
Marketing internship report guidelines mba bba
Marketing internship report guidelines mba bbaMarketing internship report guidelines mba bba
Marketing internship report guidelines mba bba
 

More from cherishwinsland

Based on your course reading assignments and your pending research p.docx
Based on your course reading assignments and your pending research p.docxBased on your course reading assignments and your pending research p.docx
Based on your course reading assignments and your pending research p.docx
cherishwinsland
 
Based on the readings titled ‘Lost Trust’, ‘Chinese Port Cities’ a.docx
Based on the readings titled ‘Lost Trust’, ‘Chinese Port Cities’ a.docxBased on the readings titled ‘Lost Trust’, ‘Chinese Port Cities’ a.docx
Based on the readings titled ‘Lost Trust’, ‘Chinese Port Cities’ a.docx
cherishwinsland
 

More from cherishwinsland (20)

Based on your course reading assignments and your pending research p.docx
Based on your course reading assignments and your pending research p.docxBased on your course reading assignments and your pending research p.docx
Based on your course reading assignments and your pending research p.docx
 
Based on yesterday Assignment  (Green Machine)1. Provide a Com.docx
Based on yesterday Assignment  (Green Machine)1. Provide a Com.docxBased on yesterday Assignment  (Green Machine)1. Provide a Com.docx
Based on yesterday Assignment  (Green Machine)1. Provide a Com.docx
 
Based on what youve learned from the material on incidental teachin.docx
Based on what youve learned from the material on incidental teachin.docxBased on what youve learned from the material on incidental teachin.docx
Based on what youve learned from the material on incidental teachin.docx
 
Based on what you have learned related to cybercrime and technol.docx
Based on what you have learned related to cybercrime and technol.docxBased on what you have learned related to cybercrime and technol.docx
Based on what you have learned related to cybercrime and technol.docx
 
Based on what you have learned in this class, write a letter to a fu.docx
Based on what you have learned in this class, write a letter to a fu.docxBased on what you have learned in this class, write a letter to a fu.docx
Based on what you have learned in this class, write a letter to a fu.docx
 
Based on what you have learned about using unified communication.docx
Based on what you have learned about using unified communication.docxBased on what you have learned about using unified communication.docx
Based on what you have learned about using unified communication.docx
 
Based on what you have learned about using cloud-based office pr.docx
Based on what you have learned about using cloud-based office pr.docxBased on what you have learned about using cloud-based office pr.docx
Based on what you have learned about using cloud-based office pr.docx
 
Based on week 13 reading assignment wh,describe an IT or simil.docx
Based on week 13 reading assignment wh,describe an IT or simil.docxBased on week 13 reading assignment wh,describe an IT or simil.docx
Based on week 13 reading assignment wh,describe an IT or simil.docx
 
Based on the video, how do we make ourselves vulnerable or not so vu.docx
Based on the video, how do we make ourselves vulnerable or not so vu.docxBased on the video, how do we make ourselves vulnerable or not so vu.docx
Based on the video, how do we make ourselves vulnerable or not so vu.docx
 
Based on the video (specifically Section 1 Understanding the Comm.docx
Based on the video (specifically Section 1 Understanding the Comm.docxBased on the video (specifically Section 1 Understanding the Comm.docx
Based on the video (specifically Section 1 Understanding the Comm.docx
 
Based on the texts by Kafka and Eliot, (writing on one or the other .docx
Based on the texts by Kafka and Eliot, (writing on one or the other .docxBased on the texts by Kafka and Eliot, (writing on one or the other .docx
Based on the texts by Kafka and Eliot, (writing on one or the other .docx
 
Based on the texts by Kafka and Eliot, (writing on one or the ot.docx
Based on the texts by Kafka and Eliot, (writing on one or the ot.docxBased on the texts by Kafka and Eliot, (writing on one or the ot.docx
Based on the texts by Kafka and Eliot, (writing on one or the ot.docx
 
Based on the techniques discussed for hiding data on a computer, w.docx
Based on the techniques discussed for hiding data on a computer, w.docxBased on the techniques discussed for hiding data on a computer, w.docx
Based on the techniques discussed for hiding data on a computer, w.docx
 
Based on the readings, there are specific components that encompass .docx
Based on the readings, there are specific components that encompass .docxBased on the readings, there are specific components that encompass .docx
Based on the readings, there are specific components that encompass .docx
 
Based on the readings titled ‘Lost Trust’, ‘Chinese Port Cities’ a.docx
Based on the readings titled ‘Lost Trust’, ‘Chinese Port Cities’ a.docxBased on the readings titled ‘Lost Trust’, ‘Chinese Port Cities’ a.docx
Based on the readings titled ‘Lost Trust’, ‘Chinese Port Cities’ a.docx
 
Based on the readings this week, answer the two following questions .docx
Based on the readings this week, answer the two following questions .docxBased on the readings this week, answer the two following questions .docx
Based on the readings this week, answer the two following questions .docx
 
Based on the readings for the week, discuss your opinion on the need.docx
Based on the readings for the week, discuss your opinion on the need.docxBased on the readings for the week, discuss your opinion on the need.docx
Based on the readings for the week, discuss your opinion on the need.docx
 
Based on the reading assignment, your experience, and personal r.docx
Based on the reading assignment, your experience, and personal r.docxBased on the reading assignment, your experience, and personal r.docx
Based on the reading assignment, your experience, and personal r.docx
 
Based on the reading assignment (and in your own words), why are MNE.docx
Based on the reading assignment (and in your own words), why are MNE.docxBased on the reading assignment (and in your own words), why are MNE.docx
Based on the reading assignment (and in your own words), why are MNE.docx
 
Based on the primary documents from chapter 23 of AmericanYawp, plea.docx
Based on the primary documents from chapter 23 of AmericanYawp, plea.docxBased on the primary documents from chapter 23 of AmericanYawp, plea.docx
Based on the primary documents from chapter 23 of AmericanYawp, plea.docx
 

Recently uploaded

SPLICE Working Group: Reusable Code Examples
SPLICE Working Group:Reusable Code ExamplesSPLICE Working Group:Reusable Code Examples
SPLICE Working Group: Reusable Code Examples
Peter Brusilovsky
 
會考英聽會考英聽會考英聽會考英聽會考英聽會考英聽會考英聽會考英聽會考英聽會考英聽
會考英聽會考英聽會考英聽會考英聽會考英聽會考英聽會考英聽會考英聽會考英聽會考英聽會考英聽會考英聽會考英聽會考英聽會考英聽會考英聽會考英聽會考英聽會考英聽會考英聽
會考英聽會考英聽會考英聽會考英聽會考英聽會考英聽會考英聽會考英聽會考英聽會考英聽
中 央社
 

Recently uploaded (20)

e-Sealing at EADTU by Kamakshi Rajagopal
e-Sealing at EADTU by Kamakshi Rajagopale-Sealing at EADTU by Kamakshi Rajagopal
e-Sealing at EADTU by Kamakshi Rajagopal
 
How To Create Editable Tree View in Odoo 17
How To Create Editable Tree View in Odoo 17How To Create Editable Tree View in Odoo 17
How To Create Editable Tree View in Odoo 17
 
OSCM Unit 2_Operations Processes & Systems
OSCM Unit 2_Operations Processes & SystemsOSCM Unit 2_Operations Processes & Systems
OSCM Unit 2_Operations Processes & Systems
 
VAMOS CUIDAR DO NOSSO PLANETA! .
VAMOS CUIDAR DO NOSSO PLANETA!                    .VAMOS CUIDAR DO NOSSO PLANETA!                    .
VAMOS CUIDAR DO NOSSO PLANETA! .
 
When Quality Assurance Meets Innovation in Higher Education - Report launch w...
When Quality Assurance Meets Innovation in Higher Education - Report launch w...When Quality Assurance Meets Innovation in Higher Education - Report launch w...
When Quality Assurance Meets Innovation in Higher Education - Report launch w...
 
SPLICE Working Group: Reusable Code Examples
SPLICE Working Group:Reusable Code ExamplesSPLICE Working Group:Reusable Code Examples
SPLICE Working Group: Reusable Code Examples
 
PSYPACT- Practicing Over State Lines May 2024.pptx
PSYPACT- Practicing Over State Lines May 2024.pptxPSYPACT- Practicing Over State Lines May 2024.pptx
PSYPACT- Practicing Over State Lines May 2024.pptx
 
24 ĐỀ THAM KHẢO KÌ THI TUYỂN SINH VÀO LỚP 10 MÔN TIẾNG ANH SỞ GIÁO DỤC HẢI DƯ...
24 ĐỀ THAM KHẢO KÌ THI TUYỂN SINH VÀO LỚP 10 MÔN TIẾNG ANH SỞ GIÁO DỤC HẢI DƯ...24 ĐỀ THAM KHẢO KÌ THI TUYỂN SINH VÀO LỚP 10 MÔN TIẾNG ANH SỞ GIÁO DỤC HẢI DƯ...
24 ĐỀ THAM KHẢO KÌ THI TUYỂN SINH VÀO LỚP 10 MÔN TIẾNG ANH SỞ GIÁO DỤC HẢI DƯ...
 
How to Send Pro Forma Invoice to Your Customers in Odoo 17
How to Send Pro Forma Invoice to Your Customers in Odoo 17How to Send Pro Forma Invoice to Your Customers in Odoo 17
How to Send Pro Forma Invoice to Your Customers in Odoo 17
 
TỔNG HỢP HƠN 100 ĐỀ THI THỬ TỐT NGHIỆP THPT TOÁN 2024 - TỪ CÁC TRƯỜNG, TRƯỜNG...
TỔNG HỢP HƠN 100 ĐỀ THI THỬ TỐT NGHIỆP THPT TOÁN 2024 - TỪ CÁC TRƯỜNG, TRƯỜNG...TỔNG HỢP HƠN 100 ĐỀ THI THỬ TỐT NGHIỆP THPT TOÁN 2024 - TỪ CÁC TRƯỜNG, TRƯỜNG...
TỔNG HỢP HƠN 100 ĐỀ THI THỬ TỐT NGHIỆP THPT TOÁN 2024 - TỪ CÁC TRƯỜNG, TRƯỜNG...
 
Trauma-Informed Leadership - Five Practical Principles
Trauma-Informed Leadership - Five Practical PrinciplesTrauma-Informed Leadership - Five Practical Principles
Trauma-Informed Leadership - Five Practical Principles
 
Sternal Fractures & Dislocations - EMGuidewire Radiology Reading Room
Sternal Fractures & Dislocations - EMGuidewire Radiology Reading RoomSternal Fractures & Dislocations - EMGuidewire Radiology Reading Room
Sternal Fractures & Dislocations - EMGuidewire Radiology Reading Room
 
MOOD STABLIZERS DRUGS.pptx
MOOD     STABLIZERS           DRUGS.pptxMOOD     STABLIZERS           DRUGS.pptx
MOOD STABLIZERS DRUGS.pptx
 
會考英聽會考英聽會考英聽會考英聽會考英聽會考英聽會考英聽會考英聽會考英聽會考英聽
會考英聽會考英聽會考英聽會考英聽會考英聽會考英聽會考英聽會考英聽會考英聽會考英聽會考英聽會考英聽會考英聽會考英聽會考英聽會考英聽會考英聽會考英聽會考英聽會考英聽
會考英聽會考英聽會考英聽會考英聽會考英聽會考英聽會考英聽會考英聽會考英聽會考英聽
 
FICTIONAL SALESMAN/SALESMAN SNSW 2024.pdf
FICTIONAL SALESMAN/SALESMAN SNSW 2024.pdfFICTIONAL SALESMAN/SALESMAN SNSW 2024.pdf
FICTIONAL SALESMAN/SALESMAN SNSW 2024.pdf
 
DEMONSTRATION LESSON IN ENGLISH 4 MATATAG CURRICULUM
DEMONSTRATION LESSON IN ENGLISH 4 MATATAG CURRICULUMDEMONSTRATION LESSON IN ENGLISH 4 MATATAG CURRICULUM
DEMONSTRATION LESSON IN ENGLISH 4 MATATAG CURRICULUM
 
An Overview of the Odoo 17 Knowledge App
An Overview of the Odoo 17 Knowledge AppAn Overview of the Odoo 17 Knowledge App
An Overview of the Odoo 17 Knowledge App
 
Supporting Newcomer Multilingual Learners
Supporting Newcomer  Multilingual LearnersSupporting Newcomer  Multilingual Learners
Supporting Newcomer Multilingual Learners
 
Graduate Outcomes Presentation Slides - English (v3).pptx
Graduate Outcomes Presentation Slides - English (v3).pptxGraduate Outcomes Presentation Slides - English (v3).pptx
Graduate Outcomes Presentation Slides - English (v3).pptx
 
Mattingly "AI & Prompt Design: Named Entity Recognition"
Mattingly "AI & Prompt Design: Named Entity Recognition"Mattingly "AI & Prompt Design: Named Entity Recognition"
Mattingly "AI & Prompt Design: Named Entity Recognition"
 

Office 2016 – myitlabgrader – InstructionsAccess ProjectMIS 30.docx

  • 1. Office 2016 – myitlab:grader – Instructions Access Project MIS 301 - Access Test Project Description: Flyer University (FlyerU) uses a MS Access database (that you will download) to track first-year students and to manage their course offerings. You are asked to complete the below- mentioned tasks to help FlyerU with their operating processes. To begin, download, i.e., Save (do NOT Open), the test database file named MIS 301_Access_Test.accdb from the course MyITLab site, if you have not done so already. Logout of MyITLab and close the browser window. Other than at the start and end of the test as specified, do not open any windows except ACCESS. Instructions: For the purpose of grading the project you are required to perform the following tasks: Step Instructions Points Possible 1 Start Access. Open the downloaded Access file named MIS 301_Access_Test.accdb. 0 2 FlyerU wants to keep data about course sections to be offered in the upcoming term. Classrooms cannot seat more than 35 students. Create a table named SECTION to store the fields with the properties as specified below: Field NameData TypePropertiesRecIDNumberDescription: Primary keyCourseIDShort TextField size of 6; Description: Foreign keySectionShort TextField size of 2HonorsYes/NoDefault value: NoInstructorShort TextField size of 20CapacityNumberMust only allow a value &lt;36 Set RecID as the Primary key field, save the table, and close the table. 16
  • 2. 3 Create a one-to-many relationship between the CourseID fields in the COURSE (primary) and SECTION (related) tables. (Requirement: This relationship must be set up such that it is not possible to enter a CourseID in the SECTION table that does not already exist in the COURSE table.) Save the changes and close the Relationships window. Hint: On the Database Tools tab, in the Relationships group, click Relationships. 4 4 Create one record in the SECTION table as follows with the Instructor field value as your actual name: Field NameValueRecID1CourseIDBUS201Section01HonorsYesInstru ctorStudent NameCapacity30 Close the table. 8 5 Advisors need to review information about students and courses they have taken. Create a form named StudentRecord to display the StudentID, Name, Major, and Balance (in that order, from STUDENT) for each student and the CourseID, Title, Credits (in that order, from COURSE), and Grade (from TRANSCRIPT) for all courses he or she has taken (in a subform). The format should facilitate looking at all the information (as specified) for a student on one screen, i.e., without tabs or multiple pages. The boxes/columns should be wide enough to display the data. Save and close the form. 0 6 FlyerU staff often need to review class rosters. Create a form named CourseRoster to display for each course its CourseID, Title, Credits, and Category (in that order, from COURSE) as well as the StudentID, Name, and Major (in that order, from STUDENT) of all students in that course (in a subform). The format should facilitate looking at all the information (as specified) for a course on one screen, i.e., without tabs or multiple pages, although there may be scroll bars. The boxes/columns should be wide enough to display the data. Save and close the form. 12
  • 3. 7 FlyerU needs a catalog of courses (suitable for printing) that shows the CourseID, Title, and Credits (from COURSE) for courses it offers. Use the Report Wizard to create the report with the name Catalog. The list should be grouped by the Category of the school (Arts, Professional, and Sciences) that offers the courses and sorted by CourseID. It should also show the total number (i.e., count) of courses within each category as well as the total count across all categories (Hint: modify the report as necessary to count the values in the Credits column). In the Category Footer, to the left of the count, enter the label Sum for Category. In the Report Footer, to the left of the total count, enter the label Grand Total. Also, the report must contain the date and page number (in N of M format) at the bottom of each page and the preparer's name (type Prepared By: Student) to the right of the report title on the first page only. Save the report as Catalog and close the report. 9 8 Student Services monitors the amount left on students' declining balance cards and alerts academic department chairs if the average balance for their majors seems low. It needs a statement (suitable for printing) that shows the StudentID, Name, and Balance (from STUDENT) for each student. Use the Report Wizard to create the report with the name Card Balance. The list should be grouped by Major and sorted by StudentID. Modify the report as necessary to show the average balance for each major as well as the overall average across all majors. In the Major Footer, to the left of the average, enter the label Avg. In the Report Footer, to the left of the average, enter the label Overall Average. Also, the report must contain the date and page number (in N of M format) on the bottom of each page and the preparer's name (type Prepared By: Student) on the top (toward the right) of the first page in the report. Save the report as Card Balance and close the report. 0 9 FlyerU is interested in reviewing courses offered that are worth only a small number of credits, i.e., fewer than the typical number of 3. Create a query named Query1 • to display the Credits, CourseID, and Title fields (in that
  • 4. order, from COURSE) • sorted in descending order by Credits and within that in ascending order by Title • for all courses where Credits is less than 3. Run and then save the query. Close the query. 10 10 The Accounting department needs to review the account balance for its majors. Do not display the major itself in the results, since they are all ACC. Create a query named Query2a • to display only the Name and Balance (in that order, from STUDENT) • sorted in ascending order by Name • for all students whose major is ACC. Run and then save the query. Close the query. 10 11 The Dean of Professional Programs needs to review the list of courses offered in his area. He does not need to see the course category itself in the results since it will be Professional for all his courses. Create a query named Query2b • to display only the course Title and Credits (in that order, from COURSE) • sorted in ascending order by Title • for all courses with Category as Professional. Run and then save the query. Close the query. 0 12 The Marketing department needs to identify its students who may be in trouble financially (i.e., balance less than $25) or academically (i.e., an F in any course). Create a query named Query3a • to display the StudentID, Name, Major, Balance (from STUDENT, in that order), CourseID, and Grade (from TRANSCRIPT in that order) • sorted in ascending order by StudentID • for all students whose major is MKT and either the Balance is less than 25 or Grade is F. Hint: Note that you may have the same student appear multiple
  • 5. times in the output. Run and then save the query. Close the query. 0 13 The Provost is concerned that students are slacking off in Arts courses or those that are only 1 credit. She needs a list of such courses that students have failed. Create a query named Query3b • to display the Category, Title, Credits, and Grade (in that order) • sorted in ascending order by Title • for all cases with a Grade of F and either Category is Arts or Credits is 1. Hint: Note that you may have the same course appear multiple times in the output. Run and then save the query. Close the query. 9 14 Periodically the Dean of Students meets with groups of students by major. She wants to see a list of students by any major she may specify. Create a query named Query4a • to display the StudentID, Name, Major, and Balance fields (in that order, from STUDENT) • sorted in ascending order by StudentID • for all students based on a Major supplied by the Dean when the query is run; Create the prompt as [Enter Desired Major]. Run (enter BIO) and then save the query. Close the query. 7 15 The Registrar frequently gets calls from students wanting to know their grades history. He wants to see a list of courses and grades for any student he may specify, i.e., the query must be flexible enough to accept a StudentID when he runs the query (Note that the Registrar does not know how to design queries). Create a query named Query4b • to display the StudentID (from STUDENT table), Name, CourseID (from TRANSCRIPT table), Title, and Grade fields (in that order) • sorted in ascending order by CourseID
  • 6. • for the student whose StudentID is entered by the Registrar when prompted on running the query; Create the prompt as [Enter Student ID:]. Run (enter 10578) and then save the query. Close the query. 0 16 FlyerU wants to estimate the amount paid by each student for each course he or she failed assuming a per credit fee of $250. Create a query named Query5a • to display the StudentID (from STUDENT), Name, CourseID (from COURSE), Grade, and Credits (in that order) • a calculated field named WastedFee that displays the result of multiplying Credits by 250 • sorted in ascending order by CourseID • where the Grade is F. Run and then save the query. Close the query. 7 17 The Marketing department has received a donation, which will result in $50 being added to the card balance of each student whose major is Marketing. An estimate of the new balance for each Marketing student is required. Create a query named Query5b • to display the StudentID, Name, Major, and Balance (in that order) • a calculated field named NewBalance that displays the result of adding 50 to Balance • sorted in ascending order by StudentID • where the Major is MKT. (Do not be concerned about the formatting of NewBalance.) Run and then save the query. Close the query. 0 18 For allocating resources to academic departments, FlyerU needs to calculate the sum of credit hours taken by students in each major. Create a query named Query6a • to display the Major and a field named TotalCredits that shows the sum of Credits
  • 7. • for all students within each Major. Run and then save the query. Close the query. 3 19 As part of their monitoring of students' card balances, Student Services needs to calculate the sum of the card balance for all students in each major. They need a list of majors and total card balance for each major. Create a query named Query6b • to display the Major and a field named TotalBalance that shows the sum of Balance • across all students within each Major. Run and then save the query. Close the query. 0 20 In an increasingly technological world, FlyerU wants to ensure that it offers some courses that involve computers. Create a query named Query7a • to display the CourseID, Title, Credits, and Category fields (in that order, from COURSE) • sorted in ascending order by CourseID • for all courses where the Title field has some reference to computer (or some variation of that word such as computing or computation – specifically comput) anywhere in the Title. Hint: Note that you may need to view the Title field in the relevant table to decide how to write this query. Run and then save the query. Close the query. 3 21 The chair of the MIS department is concerned that MIS students may be only taking introductory courses and wants a list of other courses taken. Create a query named Query7b • to display the StudentID (from STUDENT), Name, Major, and Title (in that order) • sorted in ascending order by Title • for all records where the Major is MIS and course Title field value does not begin with Intro or some variation of Intro (e.g., Introduction, Introducing, etc. but assume that it is too tedious to predict all the variations.)
  • 8. Run and then save the query. Close the query. 0 22 The Dean needs to check if there are any students who have not attempted any courses. Create a query named Query8a • to display the StudentID, Name, Major, and Balance (in that order, from STUDENT) • for all students (StudentID, from TRANSCRIPT) who have not taken any courses, i.e., have no transcript entries. Run and then save the query. Close the query. 0 23 The Provost needs to check if there are any courses that have not been taken by any students. Create a query named Query8b • to display the CourseID, Title, Credits, and Category (from COURSE, in that order) • for all courses attempted by no students, i.e., courses (CourseID, from TRANSCRIPT) that have no transcript entries. Run and then save the query. Close the query. 2 24 At the end, make sure you do the following in sequence: 1. Before you close the ACCESS window, make sure that the database is still on your desktop (saved). 2. Close the database and then close Access. 3. Launch the MyITLab application and Log-in. 4. Return to the MyITLab Assignment and complete Step 3 by Submitting/Uploading your completed database. NOTE: This is the .accdb file and NOT the .laccdb file) Don't forget to submit/upload! 5. Log out of MyITLab after successfully submitting the assignment. 6. Email the database to your instructor before you leave the classroom. 7. Do NOT delete the database from your desktop until the test is graded or you receive confirmation from the instructor. 0
  • 9. Updated: 11/15/2017 1 Current_Instruction.docx Flyer University (FlyerU) uses a MS Access database (that you will download) to track first-year students and to manage their course offerings. You are asked to complete the below- mentioned tasks to help FlyerU with their operating processes. To begin, download, i.e., Save (do NOT Open), the test database file named MIS 301_Access_Test.accdb from the course MyITLab site, if you have not done so already. Logout of MyITLab and close the browser window. Other than at the start and end of the test as specified, do not open any windows except ACCESS. http://www.megafileupload.com/nbty/MIS301_Access_Test.acc db Instructions: For the purpose of grading the project you are required to perform the following tasks: Step Instructions Points Possible 1 Start Access. Open the downloaded Access file named MIS 301_Access_Test.accdb. 0 2 FlyerU wants to keep data about course sections to be offered in the upcoming term. Classrooms cannot seat more than 35 students. Create a table named SECTION to store the fields with the properties as specified below: Field Name Data Type Properties RecID
  • 10. Number Description: Primary key CourseID Short Text Field size of 6; Description: Foreign key Section Short Text Field size of 2 Honors Yes/No Default value: No Instructor Short Text Field size of 20 Capacity Number Must only allow a value <36 Set RecID as the Primary key field, save the table, and close the table. Hint: On the CREATE tab, in the Tables group, click Table Design. 16 3 Create a one-to-many relationship between the CourseID fields in the COURSE (primary) and SECTION (related) tables. (Requirement: This relationship must be set up such that it is not possible to enter a CourseID in the SECTION table that does not already exist in the COURSE table.) Save the changes and close the Relationships window. 4 4 Create one record in the SECTION table as follows with the Instructor field value as your actual name: Field Name
  • 11. Value RecID 1 CourseID BUS201 Section 01 Honors Yes Instructor Student Name Capacity 30 Close the table. 6 5 Skip. 0 6 FlyerU staff often need to review class rosters. Create a form named CourseRoster to display for each course its CourseID, Title, Credits, and Category (in that order, from COURSE) as well as the StudentID, Name, and Major (in that order, from STUDENT) of all students in that course (in a subform). The format should facilitate looking at all the information (as specified) for a course on one screen, i.e., without tabs or multiple pages, although there may be scroll bars. The boxes/columns should be wide enough to display the data. Save and close the form. 15 7 FlyerU needs a catalog of courses (suitable for printing) that shows the CourseID, Title, and Credits (from COURSE) for courses it offers. Use the Report Wizard to create the report
  • 12. with the name Catalog. The list should be grouped by the Category of the school (Arts, Professional, and Sciences) that offers the courses and sorted by CourseID. It should also show the total number (i.e., count) of courses within each category as well as the total count across all categories (Hint: modify the report as necessary to count the values in the Credits column). In the Category Footer, to the left of the count, enter the label Sum for Category. In the Report Footer, to the left of the total count, enter the label Grand Total. Also, the report must contain the date and page number (in N of M format) at the bottom of each page and the preparer’s name (type Prepared By: Student) to the right of the report title on the first page only. Save the report as Catalog and close the report. Hint: On the CREATE tab, in the Reports group, click Report Wizard. To count the courses, in Layout view, click in the Credits column, then on the DESIGN tab, in the Grouping & Totals group, click Totals, and then click Count Records. To add the label, in Design view, in the Controls group, click Label, and then click in the Report Header section. 9 8 Skip. 0 9 FlyerU is interested in reviewing courses offered that are worth only a small number of credits, i.e., fewer than the typical number of 3. Create a query named Query1 • to display the Credits, CourseID, and Title fields (in that order, from COURSE) • sorted in descending order by Credits and within that in ascending order by Title • for all courses where Credits is less than 3. Run and then save the query. Close the query. 10 10
  • 13. The Accounting department needs to review the account balance for its majors. Do not display the major itself in the results, since they are all ACC. Create a query named Query2a • to display only the Name and Balance (in that order, from STUDENT) • sorted in ascending order by Name • for all students whose major is ACC. Run and then save the query. Close the query. 10 11 Skip. 0 12 Skip. 0 13 The Provost is concerned that students are slacking off in Arts courses or those that are only 1 credit. She needs a list of such courses that students have failed. Create a query named Query3b • to display the Category, Title, Credits, and Grade (in that order) • sorted in ascending order by Title • for all cases with a Grade of F and either Category is Arts or Credits is 1. Hint: Note that you may have the same course appear multiple times in the output. Run and then save the query. Close the query. 10 14 Periodically the Dean of Students meets with groups of students by major. She wants to see a list of students by any major she may specify. Create a query named Query4a • to display the StudentID, Name, Major, and Balance fields (in
  • 14. that order, from STUDENT) • sorted in ascending order by StudentID • for all students based on a Major supplied by the Dean when the query is run; Create the prompt as [Enter Desired Major]. Run (enter BIO) and then save the query. Close the query. Hint: In the Query Design grid, click the Criteria row for the Major field and enter [Enter Desired Major]. 5 15 Skip. 0 16 FlyerU wants to estimate the amount paid by each student for each course he or she failed assuming a per credit fee of $250. Create a query named Query5a • to display the StudentID (from STUDENT), Name, CourseID (from COURSE), Grade, and Credits (in that order) • a calculated field named WastedFee that displays the result of multiplying Credits by 250 • sorted in ascending order by CourseID • where the Grade is F. Run and then save the query. Close the query. 5 17 Skip. 0 18 For allocating resources to academic departments, FlyerU needs to calculate the sum of credit hours taken by students in each major. Create a query named Query6a • to display the Major and a field named TotalCredits that shows the sum of Credits • for all students within each Major.
  • 15. Run and then save the query. Close the query. Hint: On the QUERY TOOLS DESIGN tab, in the Show/Hide group, click Totals. Set the Credits field to TotalCredits: Credits, then in the Total row, click the down arrow, and then click Sum. 3 19 Skip. 0 20 In an increasingly technological world, FlyerU wants to ensure that it offers some courses that involve computers. Create a query named Query7a • to display the CourseID, Title, Credits, and Category fields (in that order, from COURSE) • sorted in ascending order by CourseID • for all courses where the Title field has some reference to computer (or some variation of that word such as computing or computation – basically comput) anywhere in the Title. Hint: Note that you may need to view the Title field in the relevant table to decide how to write this query. Run and then save the query. Close the query. 5 21 Skip. 0 22 Skip. 0 23 The Provost needs to check if there are any courses that have not been taken by any students. Create a query named Query8b • to display the CourseID, Title, Credits, and Category (from COURSE, in that order)
  • 16. • for all courses attempted by no students, i.e., courses (CourseID, from TRANSCRIPT) that have no transcript entries. Run and then save the query. Close the query. Hint: From the TRANSCRIPT table, add CourseID as the last field in the query. In the Criteria row of the same field, enter Is Null. 2 24 At the end, make sure you do the following in sequence: 1. Before you close the ACCESS window, make sure that the database is still on your desktop (saved). 2. Close the database and then close Access. 3. Launch the MyITLab application and Log-in. 4. Return to the MyITLab Assignment and complete Step 3 by Submitting/Uploading your completed database. NOTE: This is the .accdb file and NOT the .laccdb file) Don’t forget to submit/upload! 5. Log out of MyITLab after successfully submitting the assignment. 6. Do NOT delete the database from your desktop until the test is graded or you receive confirmation from the instructor. 0 Total Points 100