Find two examples of data/security breaches that resulted in theft/loss/exposure of confidential data, preferably data related to health care. Describe the incidents and explain what could have been done to prevent or mitigate them.

Answers

Answer 1

Answer:

Question: Find two examples of data/security breaches that resulted in theft/loss/exposure of confidential data, preferably data related to health care.

Answer:

1. TRICARE United States, in 2011:

2. University of Washington Medicine, in 2018

Question: Describe the incidents

Answer:

1. TRICARE:

As a  health care program of the United States Department of Defense Military Health System, TRICARE being overseen by Science Applications International Corporation (SAIC), the defense break also came through an employee of SAIC, the tapes that stores vital information of personnel were physically stolen, and these tapes contain vital information such as the Social Security numbers, phone numbers, prescriptions, of millions of active and retired military personnel.  

2. University of Washington Medicine:

Database which contains important data of over hundred thounsands patients were exposed as a internal files were able to be accessed to the public when searched on the internet as those files appeared saved in search results on search engine.

Question: explain what could have been done to prevent or mitigate them

Answer:

The following would prevented or mitigated the attack:

1. For security breach on TRICARE:

i. The security software should be updated.

ii. Data should be encrypted to further protect it.

iii. The data protection security policies should be reviewed to prevent future attacks.

2. For security breach on University of Washington Medicine:

i. There should be effective risk assessment that would data vulnerabilities.

ii. There should be a limit on internal human error, and sharing of data without adequate protection, encryption should be stoped.


Related Questions

Which one is the answer for the question.

Answers

Answer:

if/else statement

Explanation:

If the condition specified in the if statement is true, the block of code at the if statement is run. If not, the code at the else statement is run.

what is MIS when it refers to the dat base

Answers

A management information system (MIS) is a computerized database of financial information organized and programmed in such a way that it produces regular reports on operations for every level of management in a company. It is usually also possible to obtain special reports from the system easily.

Answer: A management information system (MIS) is a computerized database of financial information organized and programmed in such a way that it produces regular reports on operations for every level of management in a company. It is usually also possible to obtain special reports from the system easily.

HOPE THIS HELPS

Consider the following code segment, where num is an integer variable.int[][] arr = {{11, 13, 14 ,15},{12, 18, 17, 26},{13, 21, 26, 29},{14, 17, 22, 28}};for (int j = 0; j < arr.length; j++){for (int k = 0; k < arr[0].length; k++){if (arr[j][k] == num){System.out.print(j + k + arr[j][k] + " ");}}}What is printed when num has the value 14 ?
a. 14 14
b. 18 19
c. 16 17
d. 17 16
e. 19 181/1

Answers

Answer:

c. 16 17

Explanation:

Given

[tex]num = 14[/tex]

The above code segment

Required

The output

In the code segment, we have the following iterations:

for (int j = 0; j < arr.length; j++) and for (int k = 0; k < arr[0].length; k++)

The above iterates through all the elements of the array.

The if condition is true, only on two occasions

(i) When i = 0; j = 2

(ii) When i = 3; j = 0

i.e.

arr[0][2] = 14

arr[3[0] = 14

So, the result of the print statement is: j + k + arr[j][k]

(i) When i = 0; j = 2

j + k + arr[j][k]  = 0 + 2 + 14 = 16

(ii) When i = 3; j = 0

j + k + arr[j][k]  = 3 + 0 + 14 = 17

Hence, (c) 16 17 is true

what happens when you run a program in Python? ​

Answers

Explanation:

The python virtual machine executes the byte codes. The Python interpreter performs following tasks to execute a Python program : Step 1 : The interpreter reads a python code or instruction. Then it verifies that the instruction is well formatted, i.e. it checks the syntax of each line.

Answer:

Hello There!!

Explanation:

It doesn't convert the code into a machine code instead it converts it to a byte code.The python virtual machine executes the byte codes.

hope this helps,have a great day!!

~Pinky~

3. Comparing the Utopian and dystopian views of Technology according to Street (1992) which one in your view is more applicable to your society? Give at least three reasons for your answer.[15marks]

Answers

Answer:

Following are the explanation to the given question:

Explanation:

The impact of a social delay in the debate around this one is serious, real perceptions of technology. It higher employment brings a political use of new information technology to further fragmentation and anomaly amongst their representatives with the ability for the same technology. They explain this dichotomy in utopian or dystopian positions inside the following portion.

Perhaps the most important aspect of the utopia was its implicit idea that solutions to social problems are available technically. The technological effects on the community or populist forms of democratic engagement were defined often that is solutions.

Its claim from the group indicates that perhaps the Internet can promote political participation by enabling citizens to communicate easily across geographic and social frontiers. The claim suggests that this exchange would in turn promote the creation of new consultative spaces or new modes of collective activity. By comparison, the authoritarian model emphasizes the role of technology in transforming citizens' and policy interactions. Ward (1997) states which online referenda and proposals are typically described as mechanisms of change.

Nothing less prevalent today are futuristic internet interpretations. Privacy as well as material on the Internet was a topic of genuine responsibility and formed two of the biggest discussions on the possible negative effects of this technology. Cyber-tumblers' tales and facts about oneself are prevalent across the web. Online entertainment questions confront Web users from all segments of society. Online entertainment questions

I assume that technology's Dystopian perspectives are relevant to society.

Even though people from every side of the issue claim that this technology would have a utopian or dystopian effect on business or community, society will be adapted to cultural underperformers and much more rational interpretations become. The demands for the impact on society were less severe when society had used technology capabilities, such as phones, television, and even phone line.If they regard the web and all its technological trappings as just a panacea for democracy problems or not, that truth about the capabilities of the internet lies between these utopian or dystopian definitions, like most of the truth.To grasp this technology which is practically transforming society, we have to consider its extreme impact as goods that are culturally incomplete between social diffusion of the Web and digital adoption of technology.

what is the full form of the OS?​

Answers

Answer:

OS: Operating System

The operating system performs all the basic tasks of any computer or mobile, such as memory management, file management, input and output handling, process management, etc.

Explanation:

ik its a dead game but who wants to play agar.io with me? the code is agar.io/#UMDX3A and my name on there is cohen

Answers

Answer:

I git banned lol

Explanation:

A cookie recipe calls for the following ingredients:
• 1.5 cups of sugar
• 1 cup of butter
• 2.75 cups of flour
The recipe produces 48 cookies with this amount of ingredients. Write a program that asks the user how many cookies they want to make and then displays the number of cups of each ingredient needed for the specified number of cookies in the following format:

You need 5 cups of sugar, 3 cups of butter, and 7 cups of flour.

Note: Don’t worry about formatting the numbers in the output.

Answers

def cookie_Recipe(recipe):

   

   sugar=(0.03125*recipe)

   butter=(0.02083333333*recipe)

   flour=(0.05729166666*recipe)

   LF1=round(sugar, 2)

   LF2=round(butter,2)

   LF3=round(flour, 2)

   print("You will need:")

   print(LF1, "cups of sugar")

   print(LF2, "cups of butter")

   print(LF3, "cups of flour")

   print("To make", recipe, 'cookies')

recipe=int(input("How many cookies do you want to make?\n"))

cookie_Recipe(recipe)

The program is a sequential program and does not require loops, iterations, and conditions.

What is python?

Python is a general-purpose programming language.

The Python program that uses comments to clarify each line is as follows:

#This gets the number of cookies

cookies = float(input("Number of cookies: "))

#This calculates the amount of sugar

sugar = (1.5 * cookies) / 48.0

#This calculates the amount of butter

butter = cookies / 48

#This calculates the amount of flour

flour = (2.75 * cookies) / 48

#This prints the amount of sugar, butter and flour needed

print("You need ", format(sugar, '.2f'), " cups of sugar, ", format(butter, '.2f'), " cups of butter and ", format(flour, '.2f'), " cups of flour", sep='')

Therefore, the program is written above.

To learn more about python, refer to the link:

https://brainly.com/question/12867701

#SPJ2

Select the correct answer from each drop-down menu. What is the purpose of the domain name?

The domain name BLANK is an example of a service provider. The domain name.gov.nz is an example of a BLANK government website.

Awnser the blanks

the first blanks options are .net, .com, .gov,.org.
options for blank 2 are New York, New Zealand, news, commercial
Hurry pls

Answers

Answer:

First Blank: .net

Second Blank: New Zealand

A person wants to buy a house that cost $100,000 but she only has about 20,000 in her savings account she goes to a bank to see if they can help her the bank agrees to lend her enough money to buy the house but she has to pay the money back overtime. This situation best illustrates which function of money?

A. Measure of value
B.Medium of exchange
C.Standard of deferred payment
D.Store of value



Someone please help me ASAP.

Answers

Answer:

B

Explanation:

Since she is exchanging

What are the vitamins used for DNA Synthesis and Repair?​

Answers

Answer:

Vitamins C & E

Vitamin D

Vitamin B3

What is meant by a balanced budget?

A. inflows are greater than outflows

B. inflows are less than outflows

C. inflows are equal to income

D.inflows are greater than or equal to outflows.

Answers

Answer:

D.inflows are greater than or equal to outflows.

Explanation:

A budget is a financial plan used for the estimation of revenue and expenditures of an individual, organization or government for a specified period of time, often one year. Budgets are usually compiled, analyzed and re-evaluated on periodic basis.

A balanced budget is a type of budget in which inflows are greater than or equal to outflows. Thus, when cash inflows (income) is greater than or equal to cash outflows (expenses), a budget is said to be balanced.

The first step of the budgeting process is to prepare a list of each type of income and expense that will be integrated or infused into the budget.

This ultimately implies that, before preparing a budget, it is of utmost importance to know total income (inflows) and expenses (outflows).

The final step to be made by the management of an organization in the financial decision-making process is to make necessary adjustments to the budget.

In conclusion, the benefits of having a budget is that it aids in setting goals, earmarking revenues and resources, measuring outcomes and planning against contingencies. It is typically used by individuals, government, organizations or companies due to the fact that, it's tied directly to the strategy and tactics of a company on an annual basis. Also, it is used to set a budget for marketing efforts while anticipating on informations about the company.

All software, services and protocols not required by the system or necessary being disabled or not installed is called:____.
a. simplicity.
b. isolation.
c. encapsulation.
d. minimization.

Answers

Answer: Minimization

Explanation:

All the software, services and protocols

that's not required by the system or necessary being disabled or not installed is referred to as minimization

Minimization simply has to do with the uninstalling of the software that's useless and that's not using up the protocols as well.

Therefore, the correct option is D.

The following truth table matches which boolean condition?
A B ?
1 1 1
1 0 1
0 1 0
0 0 1
A && ( A || B)
A || ( !A && !B)
A && ( A && B)
!A && ( A || !B)
A || ( A || B)
Consider the following class:
public class Thingy implements Comparable {
private int val;
public Thingy() {
this(0);
}
public Thingy(int t) {
val = t;
}
}
Which of the following methods must be included so this class can be instantiated?
a. compareTo
b. equals
c. indexOf
d. size
e. toString
Assume that x and y are boolean variables and have been properly initialized.
(x || y) && !(x && y)
The result of evaluating the expression above is best described as:_____.
A. Always true
B. Always false
C. True only when x is true and y is true
D. True only when x and y have the same value
E. True only when x and y have different values
You have created the following set of classes: Bus, Car, Scooter, Train, and Vehicle. Which would you choose to be the abstract class?
A. Bus
B. Car
C. Scooter
D. Train
E. Vehicle
Consider the method definition:
public static String analyzeTemps(int temps [], int avg) {
int above = 0;
int below = 0;
for(int i =0; i < temps.length; i++) {
if (temps[i] > avg)
above++;
if (temps[i] < avg)
below++;
}
if (above > below)
return "Hotter than normal";
if (above < below)
return "Cooler than normal";
return "Temperatures normal";
}
What is returned by the following?
int temps [] = {82 , 73 , 77 , 79 , 86 , 88 , 76 , 78 , 83};
System.out.println(analyzeTemps(temps, 81));
4
5
Cooler than normal
Hotter than normal
Temperatures normal
Consider the following code:
int list [] = /* missing code */;
int val = /* missing code */;
int n = -1;
for (int i = 0; i < list.length; i++) {
if (val == list[i]) {
n = i;
break;
}
}
What algorithm is shown?
A. Binary Search
B. Insertion Sort
C. Merge Sort
D. Selection Sort
E. Sequential Search
Suppose a child class has overridden a method of its parent class. What key word does the child class use to access the method in the parent class?
a. child
b. parent
c. static
d. super
e. this
What two methods from Object are often overridden?
a. add, compareTo
b. add, remove
c. toString, add
d. toString, equals
e. toString, compareTo
Consider the following class:
public class FrozenDesert{
public FrozenDesert() {
System.out.println("Yum");
}
}
You write a class, FrozenYogurt, which extends FrozenDesert. Which of the following is a correct implementation of the constructor for FrozenYogurt?
I. public FrozenYogurt() {
System.out.println("I'm the new ice cream");
super();
}
II. public FrozenYogurt() {
super();
System.out.println("I'm the new ice cream");
super();
}
III. public FrozenYogurt() {
super();
System.out.println("I'm the new ice cream");
}
a. I only
b. II only
c. III only
d. I and II
e. I, II and III
The constant in the Integer wrapper class that represents the smallest int value is ______.
A. MIN
B. MIN_VALUE
C. SMALL_INT
D. SIZE
E. Integer.MAX

Answers

Answer:

1 a

2 c

3 a

4 a

5c

6 b

7 a

8 c

Explanation:

The mass percent of hydrogen in CH₄O is 12.5%.Mass percent is the mass of the element divided by the mass of the compound or solute.

What is the mass percent?

Mass percent is the mass of the element divided by the mass of the compound or solute.

Step 1: Calculate the mass of the compound.

mCH₄O = 1 mC + 4 mH + 1 mO = 1 (12.01 amu) + 4 (1.00 amu) + 1 (16.00 amu) = 32.01 amu

Step 2: Calculate the mass of hydrogen in the compound.

mH in mCH₄O = 4 mH = 4 (1.00 amu) = 4.00 amu

Step 3: Calculate the mass percent of hydrogen in the compound.

%H = (mH in mCH₄O / mCH₄O) × 100%

%H = 4.00 amu / 32.01 amu × 100% = 12.5%

The mass percent of hydrogen in CH₄O is 12.5%.

CO2 = 1.580 grams H2O = 0.592 grams Lookup the molar mass of each element in the compound Carbon = 12.0107 Hydrogen = 1.00794 Oxygen = 15.999 Calculate the molar mass of CH4O by adding the total masses of each element used. 12.0107 + 4 * 1.00794 + 15.999 = 32.04146 Now calculate how many moles of CH4O you have by dividing by the molar mass. m = 1.15 g / 32.04146 g/mole = 0.035891 mole Now figure out how many moles of carbon and hydrogen you have. Carbon = 0.035891 moles Hydrogen = 0.035891 moles *

Therefore, The mass percent of hydrogen in CH₄O is 12.5%.

Learn more about mass percent here:

https://brainly.com/question/5295222

#SPJ5

Part 3 (The stunner)

Answers

Answer:

nice :)

Explanation:

Answer: Once again, levers where we cant see.

write a flow chart for lcm and its algorithim​

Answers

Answer: flowchart linked as an image

Explanation:

what are the six command groups in powerpoint

Answers

Answer:

Clipboard, Slides, Font, Paragraph, Drawing, and Editing

StringReverser
Given the following code that creates a Scanner and gets a String from the user, finish the code so that the program will:
Output the provided String, input, backwards
Note that the answer should be one phrase - the reverse of input.
The use of an additional method is optional.
SAMPLE OUTPUT
======================
Enter a word or phrase:
this is a test
REVERSED:
tset a si siht

Answers

Answer:

Explanation:

The following code is written in Java, it uses the scanner import to take in a string from the user. Then it uses the string builder import to use the input string and reverse it. Finally outputting the reversed string. The output can be seen in the attached picture below.

import java.util.Scanner;

class Brainly

{

   public static void main(String[] args) {

       Scanner in = new Scanner(System.in);

       System.out.println("Enter a string: ");

       String answer = in.nextLine();

       StringBuilder sb=new StringBuilder(answer);

       sb.reverse();

       System.out.println("Reversed: \n" + sb.toString());

   }

}

marianne needs to create a version of her slide presentation that does not include all the slides and will be used for a particular audience. what is the best way for her to achieve this ?

Answers

Answer:

Marianne needs to create a version of her slide presentation that does not include all the slides and will be used for a particular audience. What is the best way for her to achieve this? A.) Use the Custom Show dialog box to create a new custom show

Why is it easier to spot a syntax error than a logical error?​

Answers

Answer:

Even small typos that do not produce syntax errors may cause logic errors. ... The logic error might only be noticed during runtime. Because logic errors are often hidden in the source code, they are typically harder to find and debug than syntax errors.Explanation:

Overview
To understand and make use of any database system, you must learn various techniques associated with the fundamental operations of create, read, update, and delete (CRUD). For this assignment, you will begin by creating databases of document collections and performing basic reading or querying operations to retrieve specific documents from the database system. You will also gain practice updating documents and subdocuments, and removing documents from a database. You will use the mongo shell and mongoimport commands to complete this assignment. Note: Since this is the only assignment for Module Two, it is longer than a typical assignment. Be sure to begin working on this early in the week.
Prompt
After completing the textbook reading and reviewing the mongoimport tool documentation in the module resources, complete the following tasks using the mongo shell in Apporto.
1. The data set for this assignment, city_inspections.json, has already been loaded into the Apporto environment for you. Using the mongoimport tool, load the database "city" with documents found in the city inspections.json file into the "inspections" collection. Complete this by typing the following commands in the Linux terminal to perform the import in the right directory:
cd /usr/local/datasets/ #change into the Apporto directory with the data sets mongoimport --db city --collection inspections ./city_inspections.json #mongo import utility
TIP: In any Linux systems, commands must be exact and use proper syntax and case sensitivity.
2. Verify your load by switching to the "city" database and issuing the following queries in the mongo shell:
a. db. inspections.find({"id" : "10021-2015-ENFO"})
b. db. inspections.find({"result": "Out of Business"}, {"business_name":1}). limit(10)
Provide screenshots of the results as evidence.
3. Using the appropriate commands in the mongo shell, insert a document to the database named "city" within the collection named "inspections." Use the following key-value pairs as data for your document.
Key Value
id "20032-2020-ACME"
certificate number 9998888
business name ACME Explosives"
date Today's date
result "Business Padlocked"
sector "Explosive Retail Dealer-999"
address number -> 1721
street-> Boom Road
city -> BRONX
zip -> 10463
Be sure the address is inserted as a sub-document, and use the JavaScript function Date() for "Today's date." Verify your database creation and insertion using the findOne() function in the mongo shell. Provide a screenshot as evidence.
4. Answer the following questions using MongoDB queries.
a. What is the distinct list of inspection "sector in the current inspections collection? How many are in the list? Do not count by hand.
b. What is the difference in the date data type for the business named "AUSTIN 2012" versus your business document insertion of "Acme Explosives"?
c. How many businesses have a "Violation Issued"? (See Value column above).
Verify by providing screenshots of the queries and results as evidence.
5. Using the appropriate command in the mongo shell, update the document with the ID "20032-2020-ACME" in the collection "inspections" in the database "city" with the information below.
Key Value
business_name "New ACME Flowers"
result "Business Re-opened"
comments "Flowers after the explosion"
Verify your database update using the appropriate find() function in the mongo shell. Provide a screenshot as evidence.
6. Using the database "City" with documents found in the "inspections" collection, perform the tasks listed below. Verify by providing screenshots of the results as evidence.
a. Update all the documents that contain the key-value pair "city": "ROSEDALE" in the address subdocument by changing the zip code in the address subdocument to "76114".
b. Remove the first document with the key-value pair "result":"Violation Issued."
Guidelines for Submission
Submit a Word document containing all of your screenshots. Use a screenshot tool, such as the Snipping Tool, for your screenshots and be sure to enlarge the images in the Word document before submitting. This will help make sure that your screenshots are an appropriate size for your instructor to be able to read them. Refer to this Use Snipping Tool to Capture Screenshots guide for help with taking screenshots.

Answers

Answer:

Overview To understand and make use of any database system, you must ... system, you must learn various techniques associated with the fundamental ... you will begin by creating databases of document collections and performing ... You will use the mongo shell and mongoimport commands to complete this assignment.

Explanation:

Implement a class that simulates a traffic light. The next function advances the color in the usual way, from green to yellow to red, then again to green. Provide two constructors, of the public interface. Also supply a member function that yields the number of times that this traffic light has been red.

Answers

Answer:

Explanation:

The following is written in Java. It creates the trafficLight class which holds the currentLight string variable and a int count variable for the number of times the light has been red. It also contains two constructors one that takes the currentLight as a parameter and one that does not. Finally, it has the next() method which analyzes the currentLight status and changes it to the next light. Output can be seen in the attached picture below.

class Brainly

{

   public static void main(String[] args)

   {

       trafficLight traffic_light = new trafficLight();

       System.out.println("Current Light: " + traffic_light.currentLight);

       traffic_light.next();

       System.out.println("Current Light after change: " + traffic_light.currentLight);

       

   }

}

class trafficLight {

   String currentLight;

   int count = 0;

   public trafficLight(String currentLight) {

       this.currentLight = currentLight;

   }

   public trafficLight() {

       this.currentLight = "red";

       count++;

   }

   public void next() {

       if (this.currentLight == "green") {

           this.currentLight = "yellow";

       } else if (this.currentLight == "yellow") {

           this.currentLight = "red";

           count++;

       } else {

           this.currentLight = "green";

       }

   }

}

Examine about the Internal & External Fragmentation methods give an example for each. essay​

Answers

Internal Fragmentation occurs when a process needs more space than the size of allotted memory block or use less space. External Fragmentation occurs when a process is removed from the main memory. Internal Fragmentation occurs when Paging is employed. External Fragmentation occurs when Segmentation is employed.

Internal Fragmentation

A bigger chunk of RAM is set aside for the process. Some memory is left unused because it cannot be utilised by another function. By properly allocating the smallest division that is yet large enough for the process, internal fragmentation can be reduced.

When there is a mismatch between the quantity of memory needed and the amount of memory that is actually available, internal fragmentation becomes a problem.

When paging is used, internal fragmentation occurs.

When memory allocations are made but chunk sizes are fixed, internal fragmentation follows.

Internal process fragmentation occurs when a process consumes less memory or uses more than the allocated memory block can hold.

External Fragmentation

Although the total RAM is large enough to accommodate a process or handle a request, we are unable to use it since it is not contiguous. To lessen external fragmentation, we can condense or shuffle memory to free up a substantial amount of space. For compaction to be useful, relocation must be dynamic.

Internal fragmentation is largely controlled via Best Fit Block Search.

External fragmentation is fixed through compaction.

When the size of the allotted memory blocks fluctuates, external fragmentation occurs.

When segmentation is used, external fragmentation happens.

When small, non-contiguous memory blocks cannot be assigned to any process, external fragmentation results.

An affected process is deleted from the main memory as a result of external fragmentation.

Imagine that you decided to film a video in SD because the video will mostly be shared on social mediaand you want it to be able to load quickly. What considerations do you need to take into account in order to make the video successful?

Answers

The considerations do you need to take into account in order to make the video successful are:

Select your video types.Decide on the platform(s) to us in sharing the video.Use prominent faces or celebrities on the video, etc.

How do one make a  video successful?

This can be done by:

Create goals for video marketingPlan content productionKnow the post-production detailsSchedule and also promote the videosKnow  and analyze metrics

Therefore, The considerations do you need to take into account in order to make the video successful are:

Select your video types.Decide on the platform(s) to us in sharing the video.Use prominent faces or celebrities on the video, etc.

Learn more about social media from

https://brainly.com/question/3653791

#SPJ1

public static void main(String[] args) { // TODO Auto-generated method stub
int [] values = new int[5];
for (int = i; i < 5; i++) { values[i] = i + values[i - 1] * 3; }
values[0] = values[1] + values[4];
for (int i = 0; i < 5; i++)
System.out.print(values[i] + ""); }
}

Answers

Answer:

59 1 5 18 58

Explanation:

Suppose that three different processes, P1, P2, and P3, share the variables x and y and execute the following code fragments concurrently, and that the initial value of y is 8. The instructions to add and subtract in memory are not atomic.

P1: P2: P3:
x = y; x = y; x = y;
x = x + 1; x = x - 1; x = x - 1;
y = x; y = x; y = x;

Which of the following values of y are possible after all three processes finish executing their code fragments?

a. 5
b. 6
c. 7
d. 8
e. 9
f. 10

Answers

Answer:

c. 7

Explanation:

The initial value of the y is 8. When the instructions are inserted in the memory the coding will change its value and the new value for the y will be different from the initial value.  The different is due to the instruction in the memory which are not atomic and the process finishes the execution of the command. The new value will be y - 1 which means 8 -1 = 7.

(a)
The computer network that covers the whole city is called​

Answers

Answer:

A metropolitan area network, or MAN, consists of a computer network across an entire city, college campus or small region. A MAN is larger than a LAN, which is typically limited to a single building or site. Depending on the configuration, this type of network can cover an area from several miles to tens of miles.

Explanation:

The World Health Organization decided that addiction to video games is considered a mental health disorder. Do you agree or disagree?

What responsibility, if any, do game designers have to ensure that users do not misuse their games?

(I’m mainly looking for an answer to the second bit, thank you! ^^)

Answers

Answer:

I disagree and I will tell you why because there was study based on video games and seniors and the theory was that they play games to keep there minds active. I will give you an example let's say you were in a situation and you learned how to make or create something from playing video games, in closeur video games can help us in problems

Match the header file to the description of the functionality that it brings into your program.
A. Standard I/O [ Choose ]
B. I/O Stream manipulators fstream
C. String types and associated functions string
D. File input and output [ Choose ]
E. C utility functions such as rand(), srand() [ Choose ]

Answers

Answer:

A. iostream

B. iomanip

C. string

D. fstream

E. cstdlib

Explanation:

Required

Match each header file with their description

The options are not given. However, the question can still be answered.

A: The header file for this is iostream (i.e. standard input-output stream)

B: The header file for this is iomanip (i.e. input and output manipulators)

C: The header file for this is string

D: The header file for this is fstream (i.e. file stream)

E: The header file for this is cstdlib (i.e. C++ standard library)

To import each of this function, you use the include keyword

E.g. #include<iostream>

Name the processes that the information processing cycle consist of:​

Answers

Answer:

Hello Dear!...

Explanation:

The information-processing cycle consists of four basic operations: input, processing, output, and storage.

Hope that helps you Buddy..

Buhbye!

Take care!

Other Questions
Choose the letter of the pronoun that best completes each sentence.-Vas a comprar las joyas para tu amiga? - S, voy a comprar --para ella.laleslaslos the position vectors of points A and B of a line AB are (1 2) and (5 8) respectively . find the position vector of mid poind M of AB. Which of the following has been important impact of the globalization? can you guys help me on number 18 pls So I have an F in science, and everything is due today. Am I going to fail 9th grade because I didn't pass that class? Please help me please please help please The forces between ________ are examples of electric forces.A.charged particlesB.neutronsC.massesD.photons Into what language did Islamic scholars translate Greek, Persian, and Indian literature andscientific texts?D - ArabicB - GermanC - HebrewA - Latin the yearly cost of a life saving cancer treatment is growing exponentially if the current cot is $3500 per year which of the following funtions could represent the annual cost of this cancer treatment in x amount of years A x= 3,500^ 3/4 )^ x ( fraction as a exponent plus x the exponet )B x= 3500x C x= 3500 + 1000xD 3500^ 5/2^x ( fraction as a exponent plus x the exponet ) Complete the statement with equal to, greater than, or less than. 1/3 x 2 1/6 will be 2 1/6 Read the excerpt from "The Lottery.""Bill," Mr. Summers said, and Bill Hutchinson reached into the box and felt around, bringing his hand out at last with the slip of paper in it.The crowd was quiet. A girl whispered, "I hope it's not Nancy," and the sound of the whisper reached the edges of the crowd."It's not the way it used to be." Old Man Warner said clearly. "People ain't the way they used to be.""All right," Mr. Summers said. "Open the papers. Harry, you open little Dave's."Which line from the excerpt indicates a conflict between an individual and society?1 Bill Hutchinson reached into the box and felt around.2 A girl whispered, "I hope it's not Nancy.3 "It's not the way it used to be." Old Man Warner said clearly.4 "All right," Mr. Summers said. "Open the papers Mark has $5. He buys six ping pong balls. When he gets home he has $2.15. How much did Mark spend? Why would you need a system to exchange currency between Japan and China? A. They speak different languages. B. Their currencies have different values. C. Japan has a stronger economy than China. D. China has a stronger economy than Japan. ANSWER THIS NOW!!!!!!!!!!!!!!Which of the following best demonstrates Newton's Third Law?Gravity is a force pulling down on you.The ahrder you hit a volleyball the faster it will get over the netAir resistance slows down a parachutistYour foot pushing on the floor and the floor pushing back hello this is two step equations.2 = c/4 -1(the c/4 is a fraction if thats confusing) The semester final for Mr. Garcia's science class required students to design and conduct an investigation that would answer the question "Isstyrofoam a better insulator than plastic?"Which experiment would be most effective in helping students obtain evidence to use in answering this question?100 mL of 70 C water placed in 200 mL plastic cupO A. 100 mL of 10 C water placed in 250 mL plastic cupwait 20 minutes, remeasure temperatures50 mL of 70 C water placed in 250 mL styrofoam cupOB. 100 mL of 70 C water placed in 250 mL plastic cupwait 20 minutes, remeasure temperatures100 mL of 70 C water placed in 200 mL plastic cupOC. 100 mL of 70C water placed in 200 mL styrofoam cupwait 20 minutes, remeasure temperatures100 mL of 70C water placed in 250 mL styrofoam cupOD. 100 mL of 20 C water placed in 200 mL styrofoam cupwait 20 minutes, remeasure temperatures100 mL of 70 C water placed in 200 mL plastic cupO E. 100 mL of 70 C water placed in 250 mL styrofoam cupwait 20 minutes, remeasure temperatures What is the surface area of the right rectangular prism below?25030 A. 130 in.2 B. 154 in.2 C. 308 in.2 D. 312 in.2 Can you please answer the questions below? What was one consequence of the Protestant Reformation? PLZ HELP!The tallest man ever recorded wasRobert Wadlow, who was 272 cm tall.The tallest woman on record was ZengJinlian. Her height was 91 % ofWadlow's height. How tall was ZengJinlian? (Round to the nearest cm.)