study deck Flashcards

1
Q

What does IEEE stand for?

A

Institute of Electrical and Electronics Engineers

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

What does the Family Educational Rights and Privacy Act do?

A

Gives U.S. students a right to their own protected records and prevents colleges from sharing student information without explicit authorization

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

What does the Digital Millennium Copyright Act do?

A

Specifies the rights of copyright owners and users of digital media

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

What does the Health Insurance Privacy Act do?

A

Provides U.S. federal protections for personal health information and gives patients rights with respect to their health information

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

What does the Section 508 of the Rehabilitation Act do?

A

Requires the U.S. Federal government’s information and communications be accessible to persons with disabilities

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

What does the Computer Matching and Privacy Protection Act do?

A

Requires written agreements between agencies before data for use in matching programs can be shared

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

What does HIPAA stand for?

A

Health Insurance Privacy and Accountability Act

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

What does FERPA stand for?

A

Family Educational Rights and Privacy Act

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

What does CMPPA stand for

A

Computer Matching and Privacy Protection Act

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

What does DMCA stand for

A

Digital Millennium Copyright Act

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

C, C++, C#, and Java are all languages that are compiled or interpreted?

A

Compiled

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

Python, PHP, JavaScript, Perl, TCL are all compiled or interpreted?

A

interpreted

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

What does the statement SELECT do in SQL?

A

Identifies the records that are being requested

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

What does the asterisk in SQL mean?

A

it means everything from the selected table

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

What does the parameter after FROM do?

A

identifies the table name

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

What is the keyword WHERE in SQL?

A

it is the condition the query is requesting

17
Q

What are the operations use to alter data within a relation of a database?

A

Update, Delete, Insert

18
Q

What keyword in SQL is used to inform the DBMS of the specific criteria the data should match to be returned as the output of the query?

A

WHERE

19
Q

In what OS is a forward slash (/) used to express directory paths?

A

Linux

20
Q

What keyword in SQL is used to inform the DBMS what fields or attributes are of interest (and where they are located, i.e. which table/relation they can be found in)?

A

SELECT

21
Q

What keyword in SQL is used to inform the DBMS what tables are to be interrogated by the query and, if more than one table contains the data of interest, how they are to be combined or joined?

A

FROM