Information Systems and Data Management Flashcards

1
Q

What does dynamic scaling allow

A

It allows the cloud infrastructure to adapt and allocate resources based on demand. During peak hours, it ensures that the website can handle increased traffic effectively.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What does data transformation mean

A

Converts data from various sources into a common format and ensures consistency and compatibility.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What does data collection mean

A

The step where data is gathered but does not inherently ensure data consistency or compatibility.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What does data validation mean

A

Comes after data transformation and checks data quality but is not primarily focused on data consistency.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What does data analysis mean

A

Involves deriving insights from data but is not primarily about ensuring data consistency or compatibility.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What are the primary purposes of information systems in a business?

A

Support business operations, facilitate decision-making, and provide competitive advantage.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Name the types of information systems commonly used in organizations.

A

Transaction Processing Systems (TPS), Management Information Systems (MIS), Decision Support Systems (DSS), Executive Information Systems (EIS).

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

What are the main components of an information system?

A

Hardware, software, data, people, procedures, and networks.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

What are general controls in information systems?

A

Security management, access controls, and software development controls.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Define application controls in the context of information systems.

A

Controls that ensure the accuracy, completeness, and validity of data processing, including input, processing, and output controls.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

What are the three main principles of information security?

A

Confidentiality, integrity, and availability.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

What is the purpose of a firewall in information security?

A

To protect a network by controlling incoming and outgoing network traffic based on predetermined security rules.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

What is COBIT, and why is it important in IT governance?

A

COBIT (Control Objectives for Information and Related Technologies) is a framework for developing, implementing, monitoring, and improving IT governance and management practices.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

Describe the Systems Development Life Cycle (SDLC).

A

A process for planning, creating, testing, and deploying an information system, typically involving phases such as planning, analysis, design, implementation, and maintenance.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

What are the benefits and risks associated with cloud computing?

A

Benefits include scalability, cost-efficiency, and accessibility. Risks involve data security, privacy concerns, and potential downtime.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

What is the role of an IT audit?

A

To evaluate the controls, policies, and procedures of an organization’s IT systems to ensure data integrity, security, and alignment with business objectives.

17
Q

What are CAATs in the context of IT audits?

A

Computer-Assisted Audit Techniques, which are tools used by auditors to analyze large volumes of data efficiently.

18
Q

Describe IaaS (Infrastructure as a service)

A

provides the basic building blocks for cloud IT and typically provides access to IT assets from a cloud provider who charges on a pay-as-you-go basis.

19
Q

Describe PaaS (Platform as a service)

A

refers to cloud computing services that supply an on-demand environment for developing, testing, delivering, and managing software applications, allowing developers to focus on creating and delivering those applications rather than worrying about resource procurement, capacity planning, software maintenance, or infrastructure management.

20
Q

Describe SaaS (Software as a service)

A

delivers software applications over the internet, on demand, and typically on a subscription basis. With SaaS, cloud providers host and manage the software application and underlying infrastructure and handle maintenance, like software upgrades and security patching. Users connect to the application over the internet, usually with a web browser on their phone, tablet, or PC (personal computer).

21
Q

What is a warm site?

A

A warm site has telecommunications ready to be utilized and has partially configured IT infrastructure with network connections and essential peripheral equipment such as disk drives.

22
Q

What is a cold site?

A

A cold site is an empty shell facility equipped with environmental controls (e.g., heat, air conditioning) and electrical power.

23
Q

What is a hot site?

A

A hot site is a fully equipped facility ready to operate quickly.

24
Q

What database model is depicted using blocks and arrows?

A

Network data model

25
Q

What does a relational database model consist of?

A

consists of columns equal to data elements in a conventional file and rows equal to data records in a traditional file, represented in a table.

26
Q

What does an object-oriented database management system consist of?

A

contains objects which are basic entities that have data structures and operations. Every object has an object ID that is a unique, system-provided identifier. Classes describe generic object types.

27
Q

What does database reorganization do?

A

eliminates unused space between the valid records as a result of a deletion of some records.

28
Q

What does database restructuring involve?

A

Database restructuring involves performing logical and physical changes.

29
Q

What is the purpose of using performance reporting tools?

A

to maintain database efficiency.

30
Q

Job stream checkpoints are used for what?

A

to minimize data loss and to recover data after a system failure.

31
Q

What is a metadata repository?

A

A metadata repository is a data repository that catalogues and documents information about data assets. It contains information about the source of data, how it was captured, data definitions, and other relevant details.

32
Q

In SQL, what is the ‘HAVING’ clause used for?

A

The “HAVING” clause is used to filter grouped data based on aggregation conditions after aggregation has taken place. It allows you to filter results based on aggregate values, making it especially useful in scenarios involving aggregate functions like SUM, COUNT, or AVG.

33
Q

In SQL, what is the ‘GROUP BY’ clause used for?

A

The “GROUP BY” clause is used for grouping data, not for filtering data after aggregation.

34
Q

In SQL, what is the ‘SELECT’ clause used for?

A

The “SELECT” clause specifies the columns to retrieve but is not primarily focused on filtering data based on aggregate values.

35
Q

In SQL, what is the ‘FROM’ clause used for?

A

The “FROM” clause identifies the tables or views from which data is retrieved but is not used for filtering data after aggregation.