Why would an organization need to be aware of the responsibilities of hosting

personal data in its platforms?

Answers

Answer 1

Answer:

Providing transparent services for platform customers. Following data protection regulations to avoid disruptions from lack of compliance.


Related Questions

User ideas for ro blox? I prefer no numbers or underscores.

Answers

do what the other person said

How does computer hardware and software work together?

Answers

Answer:

Computer software controls computer hardware which in order for a computer to effectively manipulate data and produce useful output I think.

Explanation:

A colleague has written a section of the main body of the same financial report. He has a long paragraph with lots of numbers. You suggest that he make this section easier to read by adding _____.


graphics

a reference

columns

a table

Answers

Answer:

a table

Explanation:

Answer: a table

Explanation:

What is a key consideration when evaluating platforms?

Answers

Answer:

The continuous performance of reliability data integrity will lead to the benefit and profit of the platform's regular structure changes. Cleanliness in the platform whereas addresses the straightforward structure of task performance and adequate data integrity.

. Which of these perform real-world activities such as eating, sleeping, walking, and running in virtual worlds?

Answers

Answer:

all

Explanation:

Answer:

avatars

Explanation: I just took the test

Which option in a Task element within Outlook indicates that the task is scheduled and will be completed on a later
date?
O Waiting on someone else
O In Progress
O Not started
O Deferred

Answers

I think it’s in progress

Answer: D: Deferred

Explanation:

took test

1. Add the following method to the Point class:
public double distance(Point other)
Returns the distance between the current Point object and the given other Point object. The distance between two points is equal to the square root of the sum of the squares of the differences of their x- and y-coordinates. In other words, the distance between two points (x1, y1) and (x2, y2) can be expressed as the square root of (x2 - x1)2 + (y2 - y1)2. Two points with the same (x, y) coordinates should return a distance of 0.0.
public class Point {
int x;
int y;
// your code goes here
}
2. Create a class called Name that represents a person's name. The class should have fields named firstName representing the person's first name, lastName representing their last name, and middleInitial representing their middle initial (a single character). Your class should contain only fields for now.
3. Add two new methods to the Name class:
public String getNormalOrder()
Returns the person's name in normal order, with the first name followed by the middle initial and last name. For example, if the first name is "John", the middle initial is 'Q', and the last name is "Public", this method returns "John Q. Public".
public String getReverseOrder()
Returns the person's name in reverse order, with the last name preceding the first name and middle initial. For example, if the first name is "John", the middle initial is 'Q', and the last name is "Public", this method returns "Public, John Q.".
4. Add the following method to the Point class:
public int quadrant()
Returns which quadrant of the x/y plane this Point object falls in. Quadrant 1 contains all points whose x and y values are both positive. Quadrant 2 contains all points with negative x but positive y. Quadrant 3 contains all points with negative x and y values. Quadrant 4 contains all points with positive x but negative y. If the point lies directly on the x and/or y axis, return 0.
public class Point {
private int x;
private int y;

// your code goes here
}

Answers

Answer:

Explanation:

The following code is written in Java and creates all of the methods that were requested in the question. There is no main method in any of these classes so they will have to be called from the main method and call one of the objects created method for the code to be tested. (I have tested it and it is working perfectly.)

class Point {

   private int x, y;

   public void Point(int x, int y) {

       this.x = x;

       this.y = y;

   }

   public double distance (Point other) {

      double distance = Math.sqrt(Math.pow((other.x - this.x), 2) + Math.pow((other.y - this.y), 2));

      return distance;

   }

   

   public int quadrant() {

       if (this.x > 0 && this.y > 0) {

           return 1;

       } else if (this.x < 0 && this.y > 0) {

           return 2;

       } else if (this.x < 0 && this.y < 0) {

           return 3;

       } else if (this.x > 0 && this.y < 0) {

           return 4;

       } else {

           return 0;

       }

   }

}

class Name {

   String firstName, lastName;

   char middleInitial;

   

   public String getNormalOrder() {

       String fullName = firstName + " " + middleInitial + " " + lastName;

       return fullName;

   }

   

   public String getReverseOrder() {

       String fullName = lastName + ", " + firstName + " " + middleInitial;

       return fullName;

   }

}

NO LINKS OR I WILL DELETE YOUR FORTNITE ACCOUNT
What can you do with the free version of the splice editor

Answers

Answer:

can i have ur fortnite account if u hav one and dont use it :) i only say that cuz u mentioned fortnite

Explanation:

with the free version you can add effects (cheap effects) cut the video, crop some parts. and posting leaves a watermark until u buy money

Answer:

It has a 7 day free trial while your using the free version

Explanation:

What Are the Components of a Web Address? *​

Answers

Answer:

What Are the Components of a Web Address?

1.Protocol. The first component of a web address is the protocol, which is also known as the scheme. ...

2.Domain Name. The domain name part of the web address is the unique identifier for the website on the internet. ...

3.Domain Extension. ...

4.Path & Filename.

An administrator wants to restrict access to a particular database based upon a stringent set of requirements. The organization is using a discretionary access control model. The database cannot be written to during a specified period when transactions are being reconciled. What type of restriction might the administrator impose on access to the database

Answers

Answer:

Time of the day and object restrictions

Explanation:

From the question, we understand that the database is not allowed to be accessed at a certain period of time.  

Because this has to do with time (period), the administrator will need to set a time of the day object restriction on the database in order to prevent the users from accessing the database objects

how to learn python ?

Answers

Answer:

See below.

Explanation:

To learn python programming language, first, you have to know the basic. Surely, you may recognize this function namely print()

print(“Hello, World!”) — output as Hello, World!

First, start with familiarizing yourself with basic function such as print. Then step up with arithmetic and declare or assign variable then list.

Here are example of functions:

1.) print(argument) — If argument is a string (word-typed), make sure to use “” or ‘’ or else it’ll output an error and say the argument is not defined.

print(“Hi, Brainly”) will output Hi, Brainly

print(2+3) will output 5

Numerical data or numbers do not necessarily require “ “ or ‘ ‘

print(3+3) will output 6 but print(“3+3”) will output 3+3 which is now a string.

2.) type(argument) - this tells you which data/argument it is. There are

< class ‘str’ > which is string, meaning it contains “ “ or ‘ ‘< class ‘int’ > which is integer< class ‘float’ > which is decimal (20.0 is also considered as float, basically anything that contains decimal is all float type)< class ‘list’ > which is a list. List is something that contains elements within square brackets [ ]

etc.

Make sure you also do print(type(argument)) as well so it will print out the output.

3.) Arithmetic

+ is addition

Ex. print(1+3) will output 4

   2. - is subtraction

Ex. print(5-4) will output 1

   3. * is multiply

Ex. print(4*5) will output 20

   4. ** is exponent

Ex. print(5**2) will output 25

   5. / is division

Ex. print(6/3) will output 2 — sometimes will output the float type 2.0

   6. % is modulo or remainder

Ex. print(7%2) will output 1

4.) Variables

To assign a variable, use =

An example is:

x = 2

y = 5

print(x+y) will output 7

print(type(x)) will output the < class ‘int’ >

These are examples of what you’ll learn in basic of python - remember, programming depends on experience and always focus on it. Keep practicing and searching will improve your skill at python.

See the lseek_example.c file. Modify the lseek_example.c, such that it reads from an input file (named "start.txt") and will print to an output file (named "end.txt") every (1+3*i)th character, starting from the 1st character in the input file. In other words, it will print the 1st character, then skip 2 characters and print the 4th one, then skip 2 characters and print the 7th one, and so on.
For instance, for input file:
ABCDEFGHIJKLM
It will output:
ADGJM
Iseek_example.c file contant:
// C program to read nth byte of a file and
// copy it to another file using lseek
#include
#include
#include
#include
void func(char arr[], int n)
{
// Open the file for READ only.
int f_read = open("start.txt", O_RDONLY);
// Open the file for WRITE and READ only.
int f_write = open("end.txt", O_WRONLY);
int count = 0;
while (read(f_read, arr, 1))
{
// to write the 1st byte of the input file in
// the output file
if (count < n)
{
// SEEK_CUR specifies that
// the offset provided is relative to the
// current file position
lseek (f_read, n, SEEK_CUR);
write (f_write, arr, 1);
count = n;
}
// After the nth byte (now taking the alternate
// nth byte)
else
{
count = (2*n);
lseek(f_read, count, SEEK_CUR);
write(f_write, arr, 1);
}
}
close(f_write);
close(f_read);
}
// Driver code
int main()
{
char arr[100];
int n;
n = 5;
// Calling for the function
func(arr, n);
return 0;
}

Answers

Answer:

See the lseek_example.c file. Modify the lseek_example.c, such that it reads from an input file (named "start.txt") and will print to an output file (named "end.txt") every (1+3*i)th character, starting from the 1st character in the input file. In other words, it will print the 1st character, then skip 2 characters and print the 4th one, then skip 2 characters and print the 7th one, and so on.

For instance, for input file:

ABCDEFGHIJKLM

It will output:

ADGJM

Iseek_example.c file contant:

// C program to read nth byte of a file and

// copy it to another file using lseek

#include

#include

#include

#include

void func(char arr[], int n)

{

// Open the file for READ only.

int f_read = open("start.txt", O_RDONLY);

// Open the file for WRITE and READ only.

int f_write = open("end.txt", O_WRONLY);

int count = 0;

while (read(f_read, arr, 1))

{

// to write the 1st byte of the input file in

// the output file

if (count < n)

{

// SEEK_CUR specifies that

// the offset provided is relative to the

// current file position

lseek (f_read, n, SEEK_CUR);

write (f_write, arr, 1);

count = n;

}

// After the nth byte (now taking the alternate

// nth byte)

else

{

count = (2*n);

lseek(f_read, count, SEEK_CUR);

write(f_write, arr, 1);

}

}

close(f_write);

close(f_read);

}

// Driver code

int main()

{

char arr[100];

int n;

n = 5;

// Calling for the function

func(arr, n);

return 0;

}

Explanation:

Libby’s keyboard is not working properly, but she wants to select options and commands from the screen itself. Which peripheral device should she use?
A.
voice recognition
B.
microphone
C.
mouse
D.
compact disk

Answers

C. mouse is the answer
Other Questions
Help ASAP! use the second image attached to answer! plz help me with this its hard :( Which writer wore a long beard to cover scars suffered in a fire A spotlight is mounted on a wall 9.8 feet above a security desk in an office building. It is used to light an entrance door 14.5 feet from the desk. To the nearest degree, what is the angle of depression from the spotlight to the entrance door? How did other countries respond to the civil war in Russia? On April 1, Townsley Company sold merchandise with a selling price of $10,000 on account to Trout Company, with terms 3/10, n/30. On April 5, Trout Company returned merchandise with a selling price of $1,000. Trout Company paid the amount due on April 9. What journal entry did Townsley Company prepare on April 9 assuming the gross method is used As you grow older, you will need to remain physically active to keep a good level of physical fitness.Please select the best answer from the choices provided.TFMark this and retumSave and ExitNextSubmit Helppp pleaseeee which one 6. Which line from the poem best illustrates the theme of rebellion as an act of bravery?a. Hardly a man is now aliveWho remembers that famous day and year.Explain:b. One, if by land, and two, if by sea;And I on the opposite shore will be,Explain:C.A cry of defiance and not of fear,A voice in the darkness, a knock at the door,Explain:d. The people will waken and listen to hearThe hurrying hoof-beats of that steedExplain: define the term change and state one negative change you may encounter as a student or as an employee in the future How did Marta feel after meeting with her principal?surprised and sadB) embarassed and afraidC excited and triumphantDworried and confused solve pleasedue very soon need done asap a company acquired a truck for 130,000 residual value was estimated to be $20,000 the truck can be driven for 50,000 miles or a useful life of four years. Actual usage of the truck was recorded as 10,000 miles for the first year. What is the amount of depreciation expesne for the first year calculated by the double You are joining the Science Fair and your teacher asked you to present yourproposal for your investigative project (IP). She told you to present the procedureof your IP. What graphic organizer should you use? Explain briefly. Factor the expressions using the GCF 54-30 1. A finance company charges $55 simple interest on a sum of money which isborrowed for five months. Given that the rateof interest is 12% per annum, find the sum ofthe money.Options: 1) $12002) $1100 Find the coordinates of the point (a, b).a = ?(0, 1)0 12(a, b)O v2O v22.1(-1,0)45DONE(1,0)b= ?1O v2O v22.2(0, -1) Write two fractions that have a sum of 1 and have different denominators. A red pool ball is rolling directly east before it collides with thewhite cue ball moving directly north. Due to conservation ofmomentum the total momentum of both objects after thecollision would be in which direction? The following is the ending balances of accounts at June 30, 2021, for Excell Company.Account Title Debits CreditsCash $ 93,000 Short-term investments 75,000 Accounts receivable (net) 290,000 Prepaid expenses (for the next 12 months) 42,000 Land 85,000 Buildings 330,000 Accumulated depreciationbuildings $ 165,000 Equipment 270,000 Accumulated depreciationequipment 125,000 Accounts payable 178,000 Accrued liabilities 50,000 Notes payable 110,000 Mortgage payable 240,000 Common stock 150,000 Retained earnings 167,000 Totals $ 1,185,000 $ 1,185,000 Additional information:The short-term investments account includes $23,000 in U.S. treasury bills purchased in May. The bills mature in July, 2021.The accounts receivable account consists of the following:a. Amounts owed by customers $ 232,000 b. Allowance for uncollectible accountstrade customers (18,000 )c. Nontrade notes receivable (due in three years) 70,000 d. Interest receivable on notes (due in four months) 6,000 Total $ 290,000 The notes payable account consists of two notes of $55,000 each. One note is due on September 30, 2021, and the other is due on November 30, 2022.The mortgage payable is a loan payable to the bank in semiannual installments of $4,800 each plus interest. The next payment is due on October 31, 2021. Interest has been properly accrued and is included in accrued expenses.Eight hundred thousand shares of no par common stock are authorized, of which 300,000 shares have been issued and are outstanding.The land account includes $55,000 representing the cost of the land on which the company's office building resides. The remaining $30,000 is the cost of land that the company is holding for investment purposes.