There are several national “sweepstakes” that deliver big prizes to winners. To be a part of these contests, you must register and provide your address (so they can deliver your check on national TV!). What potential privacy concerns are involved with such contests?

What will be an ideal response?

Many possible answers. The sweepstakes could be outright fraudulent (a phishing scheme). It could sell the personal information to others without individual consent. It could use the information internally to target individuals for further advertising or contests without individual consent.

Computer Science & Information Technology

You might also like to view...

Problems: Correcting Code ErrorsThe following samples of code contain errors. Rewrite the incorrect statements to correct all errors. Private Sub btnCalc_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles btnCalc.Click' calculates and displays the total amount owed for purchasing hats' user enters number of hats and price per hat' all hats are on sale for 25% off the priceDim dblNumHats As IntegerDim decHatPrice As DecimalDim decDiscount As DoubleDim decTotal As Decimal' assign number of hats and price to variablesInteger.TryPurse(txtNumHats.Text, intNumHats)Decimal.TryParse(txtHatPrice, decHatPrice)' calculate and display the total amount oweddecDiscount = decHatPrice * dblRATEdecTotal = (intNumHats + decHatPrice) - decDiscountTotal.Text = decTotal.ToString(C2)End Sub

What will be an ideal response?

Computer Science & Information Technology

The following sentence contains no errors. Do you know the comma rule for words and phrases in a series.?

Answer the following statement true (T) or false (F)

Computer Science & Information Technology