Intro to Comp Sci Chapter 12

0.0(0)
studied byStudied by 1 person
0.0(0)
full-widthCall Kai
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/43

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

44 Terms

1
New cards

information system

software that helps the user organize and analyze data.

2
New cards

spreadsheet

a program that allows the user to organize and analyze data using a grid of cells.

3
New cards

cell

An element of a spreadsheet that can contain data or a formula.

4
New cards

data stored in a cell can be

text, numbers, or “special” data such as dates

5
New cards

spreadsheet function

A computation provided by the spreadsheet software that can be incorporated into formulas.

6
New cards

range

a set of contiguous cells specified by the endpoints.

7
New cards

A circular reference

a set of formulas that ultimately, and erroneously, rely on each other to compute their results.

8
New cards

A what-if analysis

Modifying spreadsheet values that represent assumptions to see how changes in those assumptions affect related data.

9
New cards

database

a structured set of data; Data structured in a logical form

10
New cards

database management system (DBMS)

a combination of software (key components of a database) and data made up of the physical database, the database engine, and the database schema.

11
New cards

Physical Database

the collection of files that contain the data.

12
New cards

database query

A request to retrieve data from a database.

13
New cards

database schema

a specification of the logical structure of data in a database; not physical, but laid out logically; shows users how they relate to one another.

14
New cards

Database Engine

a software that supports access to and modification of the database contents.

15
New cards

A relational model

a database model in which data and the relationships among them are organized into tables.

16
New cards

Tables

a collection of database records.

17
New cards

Records (or object, or entity)

a collection of related fields that make up a single database entry. 

18
New cards

Field(attributes)

a single value in a database record; lowest level of a database system

19
New cards

Record Key

one or more fields of a database record that uniquely identify it among all other records in the table.

20
New cards

Structured Query Language

a comprehensive relational database language for data management and queries.

21
New cards

Entity-relationship (ER) modeling

 A popular technique for designing relational databases.

22
New cards

ER diagram

a graphical representation of an ER model; Important information of record types, attributes and relationships and puts it in a graphical form making it easy to read)

23
New cards

cardinality constraint

the number of relationships that may exist at one time among entities in an ER diagram.

24
New cards

important part of ER diagram

cardinality constraint

25
New cards

cardinality constraints

Either 1:1, 1 : many, many:many relationship

26
New cards

Electronic commerce

the process of buying and selling products and services using the World Wide Web.; ex: Ebay, Amazon

27
New cards

Cryptocurrency

digital currency used for financial transactions without government backing or institutional intermediaries.

28
New cards

Digital Wallet

used to conduct transactions using cryptocurrency

29
New cards

Non-Fungible Token (NFT)

a certificate of authenticity for digital assets such as art

30
New cards

blockchain

an incorruptible public ledger of transactions.

31
New cards

block

a record of new transactions. Once verified using established algorithms and encryption technology, creates new transaction is added to a block, and the block is added to the chain of ongoing sequential transactions

32
New cards

big data

 large data sets that defy conventional management (too large) solutions such as spreadsheets and databases.

33
New cards

benefits to big data

numerous for business, health care, law enforcement, and public safety

34
New cards

challenges to big data

  • Large data sets, including multimedia elements

  • Memory space needed (not only images, but also videos)

  • Organizing and analyzing the data so that it can be used effectively (into a product)

  • Protecting the data

35
New cards

SUM(val1, val2 …) / SUM(range)

sum of specified set of values

36
New cards

COUNT(val1, val2, …) , COUNT(range)

count of the number of cells that contain values

37
New cards

MAX(val1, val2, …) / MAX(range)

largest value from the specified set of values

38
New cards

SIN(angle)

The sine of the specified angle

39
New cards

PI()

The value of pi

40
New cards

STDEV(val1, val2, ..) / STDEV(range)

The standard deviation from the specified sample values

41
New cards

TODAY()

Today’s date

42
New cards

LEFT(text, num_chars)

The leftmost characters from the specified text

43
New cards

IF(test, true_val, false_val)

If the test is true, it returns the true_val; otherwise, it returns the false_val

44
New cards

ISBLANK(value)

Returns true if the specified value refers to an empty cell