IT Final Exam
IT Final Exam
Information Processing
Example: If 10, 25, 15, 30 are grades from a test, and Alice,
Bob, Carol are student names, then presenting them as Alice:
10, Bob: 25, Carol: 15, David: 30 is information. If you add
"Average grade: 20", that's even more useful information.
Authority/Credibility:
Who is the author? Are they an expert in the field? What are
their qualifications?
Are there biases? Does the source have a clear agenda (e.g.,
political, commercial, ideological) that might influence the
information presented?
Accuracy:
Is the information verifiable? Can you cross-reference it with
other reputable sources?
Objectivity:
Currency:
Purpose:
Both are about ensuring data quality, but they do different things:
Range Check: Ensures data falls within a specified range (e.g., a test
score must be between 0 and 100).
Visual Check: A person manually compares the data entered into the
system with the original source document to spot any errors.
Client
Server:
Router:
Switch:
Modem (Modulator-Demodulator):
This section addresses the challenges and threats in the digital world and
how to protect against them.
Computer Security:
Cybersecurity:
Computer Misuse:
For Cyberbullying:
Job Displacement:
Software Developer/Engineer:
Role:
Network Administrator:
Role: Installs, configures, maintains, and troubleshoots an
organization's computer networks. Ensures network availability,
security, and performance.
Cybersecurity Analyst:
Data Scientist:
Cloud Engineer:
ICT has revolutionized nearly every field, bringing about profound changes:
Education:
Healthcare:
Business/Commerce (E-commerce):
Communication:
Agriculture:
Transportation:
4. DATABASE
Example: In
a Students table, StudentID, FirstName, LastName,
and DateOfBirth are fields.
Foreign Key: A field (or collection of fields) in one table that refers to
the primary key in another table. It establishes a link or relationship
between two tables.
Creating a Database:
1. Define the Purpose: What information will the database store? What
questions should it answer?
3. Define Fields (Columns) for Each Table: For each table, list the
attributes you need to store (e.g.,
for Students: StudentID, Name, Address, DOB).
6. Set Data Types: Assign appropriate data types to each field (e.g.,
Text, Number, Date/Time, Boolean).
7. Implement in a DBMS: Use a DBMS (like Microsoft Access, SQL
Server, MySQL) to create the database schema (tables, fields,
relationships).
SELECT: Retrieving data from one or more tables. This is the most
common operation.
Queries:
Examples:
Simple Selection: SELECT * FROM Products; (Retrieves
all columns and rows from the Products table).
Reports: