The European Union requires companies to:

a
erase user data when requested.
b
keep all data open source.
c
never sell data.
d
delete all personal customer data after two years.

Answers

Answer 1

Answer:

C is the correct

Explanation:


Related Questions

Write a program that asks the user to enter the size of a triangle (an integer from 1 to 50). Display the triangle by writing lines of asterisks. The first line will have one asterisk, the next two, and so on, with each line having one more asterisk than the previous line, up to the number entered by the user. On the next line write one fewer asterisk and continue by decreasing the number of asterisks by 1 for each successive line until only one asterisk is displayed. (Hint: Use nested for loops; the outside loop controls the number of lines to write, and the inside loop controls the number of asterisks to display on a line.) For example, if the user enters 3, the output would be:_______.a. *b. **c. ***d. **e. *

Answers

Answer:

Implemented using Python

n = int(input("Sides: "))

if(n>=1 and n <=50):

    for i in range(1,n+1):

         for j in range(1,i+1):

              print('*',end='')

         print("")

       

    for i in range(n,0,-1):

         for j in range(i,1,-1):

              print('*',end='')

         print("")

else:

         print("Range must be within 1 and 50")

Explanation:

This line prompts user for number of sides

n = int(input("Sides: "))

The line validates user input for 1 to 50

if(n>=1 and n <=50):

The following iteration uses nested loop to print * in ascending order

   for i in range(1,n+1):

         for j in range(1,i+1):

              print('*',end='')

         print("")

The following iteration uses nested loop to print * in descending order        

    for i in range(n,0,-1):

         for j in range(i,1,-1):

              print('*',end='')

         print("")

The following is executed if user input is outside 1 and 50

else:

         print("Range must be within 1 and 50")

Mrs Jones had p hens then she decided to buy p more hens. how many hens does she have in all?​

Answers

Answer:

2p

Explanation:

if she had p, then she got p again, she got two p amounts. p+p = p*2 = 2p

what is the output? there are no answer options and I'm completely lost.

>>>answer = "five times"

>>>answer[2:7] ​

Answers

The string answer = "five times"

All strings start at index 0 and end at the length of the string minus 1

So, if we count appropriately, index 2 is v and index 7 is m

answer[2:7] goes from v to m including v but not m, therefore,

answer[2:7] = "ve ti"

When viewing the Mail Merge Recipients dialog box, what kinds of actions can you perform? Check all that apply. find recipient filter recipients print recipients sort column headings select/deselect recipients

Answers

Answer:

a,b,d,e on edg 2020

Explanation:

Answer:

Everything is correct except option 3/letter C.

Explanation:

A, B, D, and E

1) An employer has decided to award a weekly pay raise to all employees by taking the square root of the difference between his weight and the employee’s weight. For instance, an employee who weighs 16 pounds less than the employer will get a $4 per week raise. The raise should be in whole dollars (an int). Write a class file that prompts the user for the employee and the employer weight. Please output the correct raise amount making sure that all inputs are included in the output statement.

Answers

Answer:

Written in C++

#include <iostream>

#include<cmath>

using namespace std;

int main(){

   int weight1, weight2, diff;

   cout<<"Employees Weight: ";

   cin>>weight1;

   cout<<"Employers Weight: ";

   cin>>weight2;

   diff = abs(weight1 - weight2);

   float pay = round(sqrt(diff));

   cout<<pay;

   return 0;

}

Explanation:

I've added the source file as an attachment where I used comments as explanation

THIS IS PYTHON QUESTION
d = math.sqrt(math.pow(player.xcor() - goal.xcor(), 2) + math.pow(player.ycor()-goal.ycor(), 2))

here is the error message that I am getting when I run this using the math module in python: TypeError: type object argument after * must be an iterable, not int

Answers

Answer:

ok

Explanation:yes

Xcode, Swift, and Appy Pie are all tools for doing what?

writing code in C#

creating smartphone apps

creating apps to run on a desktop or laptop

writing code in Java

Answers

Answer:

creating smartphone apps

Explanation:

Xcode, Swift, and Appy Pie are all tools for creating iOS applications.

These tools are used for app development in the iOS platform which is a rival to the Android platform.

They are used to build the apps from scratch, develop and test them,

Answer:

smart phone apps

Explanation:

1. Discuss data processing concepts and the representation of data in the computer


2. Explain how they work together to process data

Answers

Answer:

gkvjbdsvjnmfbhui jgbfdshjcxvabgsuciusgBFIULWGSfuRyt vqwyrgfgweVGYGTV7BWUIEGDWYUGDCYg

Explanation:

Explain the following terms as used in word processin
(a)
Drop cap
(b) A superscript
An indent​

Answers

Answer:

A drop cap (dropped capital) is a large capital letter used as a decorative element at the beginning of a paragraph or section. The size of a drop cap is usually two or more lines.

a superscript is a character(s) half the height of a standard character and printed higher than the rest of the text.

In word processing, the word indent is used to describe the distance, or number of blank spaces used to separate a paragraph from the left or right margins.

Other Questions
Why couldnt the thirteen united states fight for independence against Britain before the Articles of Confederation? What role did the Stono Rebellion play in the resistance to slavery? When a doctor writes you a prescription, ...A. it does not mean you can go on with all your usual activities.B. you can start taking doses and go on with all your usual activities.C. you can go on with your usual activities after a couple weeks. Write a short paragraph using 1st person narration to describe a country/natural setting. Your description should use imagery. Reminder: Imagery is using vivid description using the 5 senses. What would be the acceleration of a 80 kg box that is being pushed with a force of 20 N but has 5 N of friction on it elements of socialization Why do isotopes of the same element have the same atomic size? . Let x = 20: Evaluate x + x *2 - x/5 Aspirin (acetyl salicylic acid) is a weak acid with the chemical formula HC9H7O4. The solubility of aspirin is 4.6 g per 1.00 L solution, and a saturated solution of aspirin has a pH of 2.56. Write the expression (chemical equation) that describes the saturated solution. what is orange fruit or color. give me just one answer The table (below) shows the amount of fuel left in your RV while driving. What type of function can you use to model the data? Estimate the amount of fuel left in your tank after driving for 90 minutes.Im a lil confused someone help explain the problem please :) Which theories had an almost mythical explanation for leadership, claiming that leaders were born and would arise when the world needed them? Contingency theories Behavioral theories " Great Man" theories. Situational theories 1. In boxing, fighters wear padded gloves to protect their hands. Which statement explains why a fighters hands need protection?A. There is an equal and opposite velocity impact the hand.B. There is an equal and opposite acceleration impact the hand.C. There is an equal and opposite momentum impacting the hand.D. There is an equal and opposite force impacting the hand.2. Two balls collide. Under which circumstances will they exert equal and opposite forces on each other?A. If the sustem is closedB. in all situationsC. If both are moving at the same speed when they collideD. if they have the same mass3. In a closed system, how does an increase in mass change the velocity of an impacted object?A. Velocity decreases to conserve momentum.B. Velocity may increase or decrease depending on acceleration.C. Velocity may increase or decrease depending on force.D. Velocity increases to conserve momentum.4. Which of the following provides the correct equation for calculating the momentum of an object?A. p= mvB. m= DVC. F= maD. m= vp5. An object with a mass of 50 kg is moving at a velocity of 2 m/s. What is the momentum of the object?A. 2 kg*m/sB. 0.04 kg*m/sC. 100 kg*m/sD. 25 kg*m/s6. A large train car moving along a horizontal track rolls into a smaller stationary train car, causing the cars to attach. Which statement best describes the motion of the cars after the connection?A. The train cars move in the opposite directions from each other.B. The train cars move together in the opposite direction the large car was moving.C. The train cars move together in the direction the large car was moving.D. The train cars both stay stationary.7. Which equation correctly represents conservation of momentum for two colliding objects?A. m1a1+m2a2=0B. m1v1-m2v2=0C. m1a1-m2a2=0D. m1v1+m2v2=08. How can the sum of two vectors be found?A. by drawing the vectors perpendicular to each otherB. by adding the numbers representing the vectors' magnitudesC. by subtracting the numbers of the vectors' magnitudesD. by drawing the vectors one right after the other9. How could a closed system be changed without changing the net force on that system?A. decrese the acceleration onlyB. increase the mass and decrease the acceleration by the same numeric valuesC. decrease the acceleration and decrease the mass by the same numeric valuesD. increase the mass only10. Which phrase best describes acceleration?A. the produce of mass and velocityB. the change in position over timeC. the product of force and distance traveledD. the change in velocity over time11. A ball rolls down a hill at constant velocity. Which of the following conditions must be true?A. The ball will accelerate as gravity pulls it down the hill.B. The ball has no net force acting on it.C. There are no forces acting on the ball.D. The momentum of the ball increases over time.12. In an experiment, objects 1 and 2 with masses m1 and m2, respectively, collide with each other. The objects have initial velocities v1i and v2i and final velocities v1f and v2f, respectively. Which result would prove conservation of momentum?A. m1v1i+m2v2i=m1v1f+m2v2fB. m1v1i+m1v1f=m2v2i+m2v2fC. m1v1i+m2v2i+m1v1f+m2v2f>0D. m1v1i+m2v2i+m1v1f+m2v2f=0 pleeeesae help What geographic areas did Sargon of Akkad unite?Upper and Lower Egyptnorthern and southern MesopotamiaChinathe Indian subcontinent Compare/Contrast: Kashgar & Samarkand Write a paragraph proof for the following conjecture:Given: m1 +m2=m4Prove: m3 +m1 +m2=180 Most flowers are supported upright by:a) soft cell wallsb)stiff cell membranesc)woody cellulose stemsd)osmotic pressure Jolie uses childcare facilities at her gym. Her monthly dues are $32, and childcare is $9 per visit this month she does not wish to spend more than $122 for both dues and childcare. If x represents the number of times she can use childcare services Which of the following inequalities symbolizes this situation?x can some one tern this in to a fraction problem pliz17.60+17.60+23.80+26.40=85.40 what a sonnet poem..........................................?