1) ECPA is D. Prohibits the government and law enforcement agencies from acquiring information about an individual through telephonic or digital media.
2) COPPA is C. Restricts websites from acquiring information from users below the age of thirteen.
3) OPPA is A. Directs company websites to declare their privacy policies and their expiration dates on their websites if the users are from California.
4) FCRA is B. Regulates credit ratings and how agencies view an individual's credit information.
Answer:
a. grep 'b[au]nk$' myLine
Explanation:
grep is a command used for searching a specified pattern in a given text.
Our goal is to match the character sequence - bank or bunk at the end of line in a given line referenced by myLine.
The regular expression for the specified match criterion is:
b[au]nk$
The second character can be either a or u.
$ indicates match at end of line.
So the overall grep command is :
grep 'b[au]nk$' myLine
Answer:
Mainframe Computer
Explanation:
The Mainframe Computers are designed for bulk data processing with high speed and storing huge data that can't be performed by other regular PCs. They can run multiple instances of operating systems at the same time. They are used for application such as accounting, business transaction, information retrieval, airlines for the seat reservation and engineering computation.
Answer:
1. A. True
2. A. True
3. B. Conceptual.
4. Three (3).
Explanation:
An Entity-Relationship Model is used in databases to describe the structure and relationship between data elements known as entities.
1. True: In the Entity-Relationship Model, relationships can have attributes.
2. True: Attributes are the smallest division of data in ER diagram.
3. Conceptual: the level of abstraction which the Entity-Relationship Model most concerned with.
4. Consider the following relationship involving two entities, students and classes: A student can take many classes. A class can be taken by many students. The number of tables which can be used to represent this relationship in a schema is 3 because we are having three (3) parameters which are simply the students and the two entities.
In database management, the term "schema" is used to denote a representation of data.
A database schema is a structure which is typically used to represent the logical design of the database and as such represents how data are stored or organized and the relationships existing in a database management system. There are two (2) main categories of a database schema; physical database schema and logical database schema.
/*
Since we have to check the first two options only as mentioned in last part of question the loop will work 2 times only and will compare the cost of first element and second and assign the healthoption accordingly
*/
for(int i =0;i<=1;i++){
if(annualCost[i]<annualCost[i+1]
best2 = healthOption[i]
else
best2 = healthOption[i+1]
}