COMP1750 Business Information Systems Exam Flashcards

0.0(0)
Studied by 0 people
call kaiCall Kai
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/79

flashcard set

Earn XP

Description and Tags

A complete set of 80 vocabulary flashcards derived from the COMP1750 Business Information Systems lecture notes, covering IS components, Porter's Five Forces, database management, cloud hosting, Excel functions, Microsoft Access, and HTML/CSS web fundamentals.

Last updated 1:18 AM on 6/6/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai

No analytics yet

Send a link to your students to track their progress

80 Terms

1
New cards

Five Components of an Information System

Hardware, Software, Data, Procedures, and People.

2
New cards

Overlooked IS Components

People and Procedures

3
New cards

Data in the Information System Framework

Raw facts stored and processed by the system (e.g. customer names, sales figures).

4
New cards

Procedures in the context of an IS

Rules and instructions for using the system (e.g. log out after use, backup policies).

5
New cards

Five Characteristics of Good Information

Accurate, Timely, Relevant, Just sufficient, Worth its cost.

6
New cards

Just sufficient Information Quality

Not too much and not too little — only what is needed for the decision at hand.

7
New cards

Worth its cost (Information)

The value the information provides must outweigh the cost to produce it.

8
New cards

Competitive Advantage

Doing something better than rivals so customers choose you — through lower cost, better service, or unique capabilities.

9
New cards

Porter's Five Forces

11) Rivalry among competitors 22) Threat of new entrants 33) Threat of substitutes 44) Bargaining power of buyers 55) Bargaining power of suppliers.

10
New cards

Impact of Strong Five Forces

Profitability is lower — the industry is highly competitive and harder to succeed in.

11
New cards

Reducing Buyer Bargaining Power via IS

By creating loyalty programs or switching costs that make it harder for customers to leave.

12
New cards

Thick Client

A computer that does most processing locally on the device and needs powerful hardware (e.g. a desktop running installed software).

13
New cards

Thin Client

A simple device that relies on a central server for processing; cheap and easy to maintain.

14
New cards

Thin Client Maintenance Advantage

You only update the server once instead of updating every individual device.

15
New cards

Virtualisation

Running multiple virtual machines on one physical machine — saves cost and improves hardware resource use.

16
New cards

Difference between HTML and CSS

HTML defines structure (headings, links, images) and is the skeleton; CSS defines styling (colours, fonts, layout) and is the clothing.

17
New cards

Web Accessibility Practices

Adding alt text to images for screen readers and ensuring sufficient colour contrast for visually impaired users.

18
New cards

Business Importance of Web Accessibility

Legal obligations, wider audience reach, and a better experience for all users.

19
New cards

DBMS

Database Management System — software that stores, retrieves, and organises data (e.g. Microsoft Access, MySQL).

20
New cards

Primary Key

A field that uniquely identifies each row in a table where no duplicates and no blanks are allowed (e.g. StudentID).

21
New cards

Foreign Key

A field in one table that links to the Primary Key of another table, creating a relationship between them.

22
New cards

Referential Integrity

A rule ensuring Foreign Key values always match a valid Primary Key so no orphan records can exist.

23
New cards

Advantages of Cloud Hosting

Lower upfront cost, easy to scale, vendor handles maintenance, accessible from anywhere, and automatic backups.

24
New cards

Disadvantages of Cloud Hosting

Ongoing subscription costs, dependent on internet, less control over data, security/privacy risks, and vendor lock-in.

25
New cards

Vendor lock-in

Becoming so dependent on one cloud provider that switching to another is costly or difficult.

26
New cards

Information Silo

When departments use separate systems that don't share data, leading to incomplete decisions and duplicated effort.

27
New cards

CRM

Customer Relationship Management — manages customer interactions, tracks sales, support and marketing to improve retention.

28
New cards

ERP

Enterprise Resource Planning — integrates all core business processes into one system to eliminate information silos.

29
New cards

EAI

Enterprise Application Integration — middleware connecting separate systems to share data without replacing them, which is cheaper than a full ERP.

30
New cards

Customer Life Cycle Five Stages

11) Reach 22) Acquire 33) Develop 44) Retain 55) Lose.

31
New cards

Social Capital (Business IS context)

Value created from relationships and networks; IS, especially social media, builds this by connecting people and fostering trust.

32
New cards

Business Intelligence (BI)

Using data to make better business decisions through collection, analysis, and reporting.

33
New cards

Four Main BI Activities

11) Data acquisition 22) Data analysis 33) Publishing results 44) Decision making.

34
New cards

Three Categories of IS Safeguards

Technical safeguards, Data safeguards, and Human safeguards.

35
New cards

Technical Safeguards

Firewalls, encryption, antivirus, strong passwords, and multi-factor authentication.

36
New cards

Human Safeguards

Staff security training, security policies, background checks, and data handling procedures.

37
New cards

Biggest Security Threat to an IS

People — through phishing, weak passwords, or insider threats — rather than just external hackers.

38
New cards

Outsourcing in IS

Hiring an external company to manage IT infrastructure or develop software that could be done internally.

39
New cards

Advantages of IS Outsourcing

Cost savings, access to specialist expertise, focus on core business, flexibility, and scalability.

40
New cards

Disadvantages of IS Outsourcing

Loss of control, security/privacy risks, communication issues, vendor dependency, and hidden costs.

41
New cards

Systems development life cycle

a structured process for building information systems.

42
New cards

Five Phases of the SDLC

11) Planning 22) Analysis 33) Design 44) Implementation 55) Maintenance.

43
New cards

Direct Cutover System Conversion

Switching from old to new system overnight; fast and cheap but risky as there is no fallback.

44
New cards

Parallel Running Conversion

Running old and new systems simultaneously; safe but expensive and resource-heavy.

45
New cards

Phased System Conversion

Rolling out the new system gradually by module or department to reduce risk.

46
New cards

Pilot System Conversion

Testing the new system with one group first before full rollout to limit risk to a small audience.

47
New cards

Relative Cell Reference

A reference like =A1=A1 that shifts relative to where it is pasted when you copy the formula.

48
New cards

Absolute Cell Reference

A reference like =$A$1 that is fully locked and always points to the same cell no matter where the formula is copied.

49
New cards

Mixed Cell Reference

A reference with one part locked and one part moving, such as =$A1 (locks column) or =A$1 (locks row).

50
New cards

Single Cell vs. Range Reference

A single cell reference (e.g., =A1=A1) refers to one cell, while a range reference (e.g., =A1:A10=A1:A10) refers to a block of cells.

51
New cards

COUNT Function

Counts cells containing numbers; empty cells and text are ignored.

52
New cards

COUNTIF and COUNTIFS

COUNTIF applies one condition; COUNTIFS applies multiple conditions simultaneously.

53
New cards

SUMIF and SUMIFS Syntax

SUMIF: (range, criteria, sum_range). SUMIFS: (sum_range, criteria_range1, criteria1, …), putting the sum_range first.

54
New cards

AVERAGE and Empty Cells

Empty cells are ignored and not included in the count used for the average calculation.

55
New cards

AVERAGEIFS Usage

Used when you need to average values that meet two or more conditions at the same time.

56
New cards

MINIFS and MAXIFS Functions

Find the smallest (MINIFSMINIFS) or largest (MAXIFSMAXIFS) value in a range that meets multiple conditions.

57
New cards

Filter Tool

Hides rows that don't match criteria; data still exists but is not visible.

58
New cards

Filtering by Values vs. Rules

By values: ticking specific items from a list. By rules: setting conditions like 'greater than 100100' or 'contains Sales'.

59
New cards

Sort Tool

Rearranges rows in ascending or descending order based on a chosen column.

60
New cards

Multilevel vs. Single-column Sort

In single-column sort, each new sort overwrites the previous one; multilevel sort applies all criteria together to break ties.

61
New cards

Conditional Formatting

Highlights cells based on rules (e.g., red if value <0< 0) to change visual appearance without changing data.

62
New cards

Pivot Table

Used for dynamically summarising large datasets by grouping, counting, summing, or averaging data by category.

63
New cards

Common Chart Information

Title, axis labels, legend, and data labels (though pie charts have no axes and scatter charts need two value axes).

64
New cards

Four Objects in Microsoft Access

Table (stores data), Form (data entry interface), Query (retrieves/filters data), and Report (formats data for printing).

65
New cards

Access Field criteria

A column in a table representing one attribute of the data, such as CustomerName or OrderDate.

66
New cards

Access Data Type

Defines what kind of data a field holds (text, number, date, currency, etc.) to prevent errors and ensure correct calculation.

67
New cards

Access Query Criteria

A condition used to filter records, such as 'Sydney', >100>100, or values between two dates.

68
New cards

Query Design View Layout

The top half shows tables; the bottom half shows fields, sort order, visibility, and criteria applied.

69
New cards

Query Design View Columns

Each column represents one field, with rows specifying the sort, visibility, and criteria for that specific field.

70
New cards

Referential Integrity in Access

Ensures every Foreign Key value matches a valid Primary Key so you cannot point to a non-existent record.

71
New cards
73
New cards

Numbered List HTML Tags

The

    tag wraps the list while each item uses
  1. inside it.

74
New cards

HTML Table without Column Headings

A table created using

, , and
tags only, omitting the tags.

75
New cards
vs.
is a bold, centred header cell; is a regular data cell.
76
New cards

Dual Use of HTML and CSS

HTML defines structure while CSS defines appearance; separating them allows for restyling without touching content.

77
New cards

Three Types of CSS Priority

External (lowest) -> Internal (overrides external) -> Inline (highest priority).

78
New cards

Inline CSS Usage

Used for a one-off style change on a single element to override external and internal styles.

79
New cards

Default Webpage Loading

Servers are usually configured to load index.html automatically when no filename is specified in the URL.

80
New cards

Tag Requirements for HTML

Requires a src attribute for the image path and an alt attribute describing the image for accessibility.