0% found this document useful (0 votes)
173 views

Final 2024 Information Technology SBA - Mod

The document provides requirements for creating a spreadsheet and database to store applicant data for the University of People's 2024 academic year. [1] The spreadsheet must include worksheets to store program course costs, applicant details, and filters. Formulas and formatting are required. [2] The database must include tables for applicant details, application details, and course details. Relationships between tables and a form with sub-form must be created. [3] Queries must generate lists of female applicants, approved applicants from Sept-Dec, and apply a 25% discount to fees. [4] A report must show approved applicants grouped by course with average age and total fees received for each course

Uploaded by

malique hodge
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
173 views

Final 2024 Information Technology SBA - Mod

The document provides requirements for creating a spreadsheet and database to store applicant data for the University of People's 2024 academic year. [1] The spreadsheet must include worksheets to store program course costs, applicant details, and filters. Formulas and formatting are required. [2] The database must include tables for applicant details, application details, and course details. Relationships between tables and a form with sub-form must be created. [3] Queries must generate lists of female applicants, approved applicants from Sept-Dec, and apply a 25% discount to fees. [4] A report must show approved applicants grouped by course with average age and total fees received for each course

Uploaded by

malique hodge
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 6

DSS 2024 Information Technology SBA

Spreadsheet requirements
University of the People has asked Information Technology specialists design a spreadsheet that will
record relevant application and course data of the university for the 2024 academic year. The
Spreadsheet file should be named “UOP Applicants”.

Create worksheet named “Course Cost” to record the cost for each program offered by the university.

Cost for Each Program


Computer Science $ 200,000.00
Information Technology $ 170,000.00
Information Systems $ 180,000.00
Artificial Intelligence $ 225,000.00

1. Create another worksheet named “Application Details” to store details of students applying and
course details for the different programs. The worksheet should include:
a. Application number should be entered using the formats: UoP-24-CS-01 for the
computer science, UoP-24-IT-01 for information technology, UoP-24-IS-01 for
Information systems, and UoP-24-CS-01 for artificial intelligence programs respectively.
Each student should receive a unique application (the last two digits of the application
number should be in the format: 01, 02, 03, 04 etc.)
b. Personal information for 40 students should be inserted, including: First Name, Last
Name, DOB (date of birth), Gender, Age
c. Date of application (applications forms will be available from September 1st 2023 to
March 31st 2024.
d. Nationality (Students apply have four different Caribbean countries including:
Bahamian, Saint Lucian, Grenadian, Guyanese. Students from each nationality will apply
for all four of the different programs)
e. Application fee (should be inserted from “Course Cost” worksheet).
f. Course applied for (Computer Science, Information Technology, Information Systems or
Artificial Intelligence)
g. Course code - CS-1001 (for computer science), IT-1001 (for Information Technology), IS-
1001(for Information Systems), and AI-1001 (for Artificial Intelligence)
h. Passed Math & English (data should be YES or NO. Most of the students applying for
each program will pass Math and English, while a few students will fail them – between
2 to 5)
i. Number of subjects Passed (a few students from each country will have between 2 to 4
subjects)

2. Make a copy of “Application Details” worksheet and rename it as “Filter for late application” to
filter for late applications. The worksheet should be filtered to show “Date of Application” that is
after March 31st 2024.
DSS 2024 Information Technology SBA
3. Make another copy of “Application Details” worksheet and rename it as “Mod_Application
Details”

a. The application fee has increased by 15%, add the appropriate formula to reflect the
change
b. Modify all money values to one decimal point
c. Insert a column named “Approved Status” after the last column that contains data. The
information is the column should be, “Approved” or “Not Approved”. An applicant will
be approved for IF they have five (5) or more subjects AND “Passed Math & English).
d. Sort the “Mod_Application Details” worksheet in descending order by “Nationality” and
then in ascending order by “Course Applied for” (insert a screenshot of the sort criteria
6 rows below the data in the worksheet)
e. Insert a column named “Cost of Course” after “Application Fee” to store the cost for
course from the prices in the “Course Cost” worksheet
f. Insert another column named “Total Fees To Be Paid” after “Approval Status”. Use a
function to insert the value from “Application Fee” for applicants that are NOT
APPROVED or “Application Fee” ADDED to “Cost of Course” for APPROVED applicants.
g. Insert a function two (2) rows below the “Application Number” that counts the number
of persons that applied for a course

4. Create a pivot table showing the “Total Fees to be Paid” by “Nationality”. The pivot table should
also show the subjects applied for by each “Nationality”

5. Create a chart showing the percentage of the “Total Fees to be Paid” for each nationality. The
chart should include an appropriate title and show the percentage of each nationality.
DSS 2024 Information Technology SBA
Database requirements
Using data from the “Mod_Application” worksheet of your spreadsheet, you are required to design and
populate a database to store and manage information on applicants. Use the following information to
create tables and assist in the population of tables; creation of queries, forms and reports.
Appropriate field names and data types. Ensure that the correct primary key has been applied to each
table.

Task A
Table 1: Applicant_Details
Required personal data on applicants should include the following fields: Application number (primary
key), Last Name, First Name, Gender, Date of Birth, Age, Contact Number, Address Line 1, Address Line 2
and Nationality.

Table 2: Application_Details
a. Application number (primary key), Application Fee, Course Code, Pass Math & Eng, Subjects
Passed (Number of subjects passed), Application Date, Cost of Course, Total Fees (Total fees To
Be Paid) and Approval Status.

Table 3: Course_Details
a. Course code (primary key)
b. Courses

Task B
a. Create a relationship between the tables using appropriate fields of to join them together.
b. Create a form with a sub-form using the Course_details, Application_details tables.

Task C
a. Create queries to accomplish the following tasks:
I. Create a list of all female applicants. The query should include: First and last name,
nationality, gender and Age. Name the query: Female_Applicants.
II. Create a list of all approved applicants who have applied between September 1st 2023
and December, 31st 2023. The query should include: Last name, Age, Application
number, Course, Total fees and Approval Status. Name the query: Approved_Applicants.
III. Use the Approved_Applicants query to create new query that would insert all the fields
from ‘Approved_Applicants’ and a new field. Name the new field: ‘New Total’. The
information stored in ‘New Total’ would be the application of a ‘25% discount to ‘Total
Fees’. Name the query: 25%_Discount.

Task D
a. Create a report using the following fields: First name, last names, age, gender, Approved Status,
Course name and Total Fees.
b. Group the report by course name and sort it be ‘Last Name’ in descending order.
c. The report should show the average age of students that applied for each course and the sum of
the amount of money received for each course.
d. Name the report (The report title should be on two lines, as show below):

Report of Approved Candidates


Who Applied for courses
DSS 2024 Information Technology SBA

Word Processing
Task A: Letterhead
Create a letterhead that would be inserted in the fillable form and the mail merge. The letterhead
should include the following information:
a. A logo for UOP (have to be created)
b. The name of the university
c. Contact information of the university: address, email, phone#

Task B: Fillable Form


Create a fillable to capture the application details of each applicant. The layout of the form should be
clear and easy to follow. Applicants who are filling out the form should be able to add the following
items:
a. Personal information: First name, Last name, DOB, Age, gender, Nationality
b. Contact information including: phone#, address, country.
c. A place to upload a picture of the applicant
d. Course information: Name of Course, Cost of Course, Course code, Passed Math and English; date
applied.

Task C: Mail Merge


a. Using suitable feature of your word processing application to create letters that would be sent to
all approved applicants. Appropriate data from your database should be used to personalize the
notices.
b. The page margin of the letters should be 0.9'' on the left and the right.
c. Below is a sample letter that should be used to create the letters. The appropriate field names
should replace the placeholder symbols (less than < and more than >):

Letterhead (header section)

Date
Name and address
To: (Name of Applicant)

We are pleased to inform you that you have within five (5) weeks from the date of this
been admitted to our university to pursue letter.
studies in <<course name>> for the
academic year 2024-2025. <<First name>> <<last name>> we would
like to congratulate you for being
Attached to this admission letter you will
find a full admission package. It includes all
accepted to our instruction, we look
the documents needed to follow up the forward to seeing you at our noble
registration, which have to be submitted institution.

Include a table with the name of the subjects offered and the cost of each subject. The table
should be formatted to show the table borders, column the header should bolded and each
row should have a different colour.
Regards,
John Smith (you can change this name)
Admission Officer
DSS 2024 Information Technology SBA

Web Page Design

The UOP has requested that you design a web page to display information
about the university. The web page should include the following:
a) The UOP’s logo and other appropriate graphics
b) information about the university, including a brief history of the university
c) the courses offered and the cost of each course
d) hyperlinks to:
i. the UOP’s email address and
ii. the UOP’s alumni webpage

Problem Solving and Programming

The UOP has also requested that you to utilizes your problem solving and programming skills to:
a) create an algorithm using pseudocode to process applications. The pseudocode should:
i. accept the applicant’s name, course name, number of subjects passes, if they
passed Math & English, and the application date.

ii. If student passed more than five (5), including Math & English, then they will be
approved for the course of their choice.

iii. The algorithm should calculate the overall cost that the applicant will have to
pay. Applicant who are “Not Approved” will only have to pay the application fee
($10,000). Approved Applicants will have to pay:
 The application fee ($10,000)
 The course cost (CS: $200,000, IT: $170,000, IS: $180,000, AI: $225,000)
 Late fee of $3,000 (if applied after March 31st 2024)

iv. The pseudocode should then display the following information on the screen:
 Name of applicant:
 Course:
 Approval status:
 Total fee:

b) Design and execute a trace table that will test to ensure that the pseudocode is working
as expected.
i. Test data of eight applicants should be used in the trace table. A copy of the trace
table along with the test data used in the trace table should be submitted to the
university.
c) Using the PASCAL programming language:
i. Write the source code for the pseudocode written for UOP (the author/s name,
date created, and brief comments should be included in the pseudocode)
DSS 2024 Information Technology SBA

ii. Run the program and provide evidence that the program is working as expected
(use screenshots of program after it has been executed as evidence).

NB:
The following documents be submitting for the problem solving and programming section:
 a copy of the Pseudocode
 a copy of the trace table
 test data used to execute the program and run the program

You might also like