Need help ASAP
Thanks+ BRAINLIST only for correct answer

What is the importance of protecting other’s personal information and privacy?

Answers

Answer 1
It is important to protect yours and others personal informations because some people might try to take advantage of them and use them for no good such as fraud, charging your card, taking your passwords, and so on
Answer 2

Hey,

So there are so many reasons to protect yours and others personal info online but  here are just a few.

1. Help stop credit card fraud. this is one of the biggest types of fraud in the internet.

2 stop identity theft.

3  prevent your social media accounts getting compromised .

Some fine advise.

change your login in info  more then not. it is more likely that someone will find your login info  online or thought a software then just guessing it.

-scav


Related Questions

The unique identifier for each record in a database table is called the

A. Record Id
B. Id number
C. Primary key
D. Row number

Answers

The answer is C. Primary Key. I hope this helps

Answer:

C

Explanation:

Thank the other person

These are the records and traces an individual leaves behind as they use the internet
1 point

Digital Path

Digital map

Digital foot

Digital footprints

Answers

Answer:

Option D. Digital footprints

Explanation:

Digital footprint is all the stuff you leave behind as you use the Internet.

Digital footprints fs it’s the best

Frankie is in charge of writing a script for a television show, along with six other writers. The script must be finished by the end of the week. Frankie’s co-workers all bring slightly different strengths to the table, but all are at least competent. Frankie wants to write the best possible script in the generous amount of time he has to work with. In this example, which style of leadership would be most effective for Frankie’s goals?
a.
Authoritarian
b.
Coaching
c.
Democratic
d.
Delegative

Answers

The best type of leadership for Frankie would be C, Democratic.

The style of leadership would be most effective for Frankie’s goals is Democratic. Thus, option C is correct.

What is Democratic leadership style?

This is known to be a form of government where the the people rule through their elected representative. Note that The style of leadership would be most effective for Frankie’s goals is Democratic as it is where one can listen to what the people has to say.

A good leader must be willing to adopt the style which suits the situation they are in. When dealing with inexperienced employees, an authoritarian style might be the best.

A scripting language or script language is a programming language for a runtime system that automates the execution of tasks that would otherwise be performed individually by a human operator.

Therefore, The style of leadership would be most effective for Frankie’s goals is Democratic. Thus, option C is correct.

Learn more about Democratic from

brainly.com/question/3710021

#SPJ5

Assignment 4: Evens and Odds
Instructions

Write a program that will ask a user for how many numbers they would like to check. Then, using a for loop, prompt the user for a number, and output if that number is even or odd. Continue doing this as many times as the user indicated. Once the loop ends, output how many even numbers were entered and how many odd numbers were entered.

Hint: For a number to be even, when the number is divided by 2, there should be no remainder - so you will want to use the modulus (%) operator.

Hint: You will need two count variables to keep track of odd and even numbers.

Sample Run 1
How many numbers do you need to check? 5
Enter number: 20
20 is an even number.
Enter number: 33
33 is an odd number.
Enter number: 4
4 is an even number.
Enter number: 77
77 is an odd number.
Enter number: 8
8 is an even number.
You entered 3 even number(s).
You entered 2 odd number(s).
Sample Run 2
How many numbers do you need to check? 3
Enter number: 10
10 is an even number.
Enter number: 3
3 is an odd number.
Enter number: 400
You entered 2 even number(s).
You entered 1 odd number(s).

Sample Run 2
How many numbers do you need to check? 3
Enter number: 10
10 is an even number.
Enter number: 3
3 is an odd number.
Enter number: 400
You entered 2 even number(s).
You entered 1 odd number(s).

Benchmarks
1. Create and initialize two count variables - one for odd and one for even.
2. Prompt the user to answer the question, “How many numbers do you need to check?"
3. Based on the previous input, create a for loop that will run that exact number of times.
1. Prompt the user to “Enter number: “
2.If that number is even, output “[number] is an even number.”
3.Update the even count variable.
4.Or else if the number is odd, output “[number] is an odd number.”
5.Update the odd count variable.
4.Output “You entered [number] even number(s).”
5.Output “You entered [number] odd number(s)."

Answers

Wow that is really long

Which are malicious codes?
Select all that apply.
Spyware
Serum
Key loggers
Worms
JavaScript​

Answers

Answer:

Spyware

Key Loggers

Worms

Issue: I don't know what Serum is.

7.4 code practice question 2 edhesive

Answers

Answer:

def GPAcalc(g, w):

   if g == "a" or g == "A":

       return 4 + w

   elif g == "B" or g == "b":

       return 3 + w

   elif g == "C" or g == "c":

       return 2 + w

   elif g == "D" or g == "d":

       return 1 + w

   elif g == "F" or g == "f":

       return 0 + w

   else:

       return "Invalid"

grade = input("Enter your Letter Grade: ")

weight = int(input("Is it weighted? (1 = yes, 0 = no)"))

gpa = GPAcalc(grade, weight)

print("Your GPA score is: " + str(gpa))

Explanation:

I hope this helps!

The code practice question illustrates the use of conditional statements.

The execution of a conditional statement depends on its truth value

The program in Python, where comments are used to explain each line is as follows:

#Start by initializing the dictionary

dict = {"a": 4, "b": 3, "c": 2, "d": 1, "f": 0}

#This gets input for grade

grade = input().lower()

#This gets input for the weighted average

weighted = int(input())

#If the weighted average is 1, and the grade is in the dictionary

if weighted == 1 and grade in dictionary:

   #This prints the GPA score

   print("Your GPA score is: "+str(dict[grade] + 1))

#If the weighted average is 0, and the grade is in the dictionary

elif weighted == 0 and grade in dictionary:

   #This prints the GPA score

   print("Your GPA score is : "+str(dict[grade]))

#Otherwise

else:

   #The grade is invalid

   print("Invalid")

Read more about similar programs at:

brainly.com/question/19117781

write a python program to convert a number entered by the user
the input is 985
the output is Nine Eight Five

Answers

Answer:

# Function to convert decimal number

# to binary using recursion

def DecimalToBinary(num):

if num >= 1:

DecimalToBinary(num // 2)

print(num % 2, end = '')

# Driver Code

if __name__ == '__main__':

# decimal value

dec_val = 24

# Calling function

DecimalToBinary(dec_val)

Explanation:

PowerPoint SAM Capstone Project 1 can PLEASE someone do it for me I have some directions like steps and you just have to do it in a powerpoint slide please I would really appreciate it

Answers

Answer:

Sooo what's the question??

Explanation:

Answer:

kk

Explanation:

please can somebody help me! i’m really stuck on this question

Answers

Answer:

import turtle

t = turtle.Turtle()

t.speed(0)

for x in range(1,10):

 for i in range(4):

   t.forward(20*x)

   t.right(90)

What are the limitations of the ASCII character set? State why it is limited in this way?

Answers

The problem with ASCII or extended ASCII is that the ASCII system can only represent up to 128 (or 256 for EASCII) different characters. The limitation on the number of character sets means representing character sets for several different language structures is not possible.

what is your opinion on gaming? do you think it has more positive or negative impacts

Answers

Answer:

positive bc you can learn from them wwhat to do what not to do mistakes that you wont make in. real life

Answer

Positive Impacts

Enhances the Cognitive Functions – The online gamers can improve their cognitive functions by playing online games. The combination of focus and the surges of neurotransmitters will strengthen the neural circuits that make the brain.

Decision-Making and Accuracy – The online gamers can able to make the quick decision. Online gaming trains the brain to take quick decisions without losing the precision. Without any doubt, you can play these games in order to make quick & accurate judgments.

Hand and Eye Function – It is needless to mention that, the online gamers will play their games with the utmost coordination of their hand and eyes. Every online game requires the players to use their hand and eye for the game to be successful.

Enhance the Teamwork – Multiplayer online games will enhance the teamwork among the gamers. The gamers will use the most of their skills to win the game for their team. The gamers will learn about winning the game as a team.

Negative Impacts

Aggressive Behavior – Every player would like to win the game and hence they develop aggressive behavior. The shooting games will induce bad vision to the gamers and the gamers see the society in the same vision.

Loner – Of course, the gamers that spend most of their time in playing online games cannot spend time with their friends and families. If the same thing continues, they want to be alone all the time.

Wrong Values – Certain online games teaches wrong values to the gamers. The online games depict women as weaker characters and sexually provocative characters. The gamers will take that and they do behave badly with the women in reality.

Impact on Health – Yes, the gamers that take part in playing the online games would not like to participate in any such activities that make them fit and fine. Not taking part in the fitness activities leads to health disorders like video induced seizures, obesity, skeletal and postural disorder, never compression, muscular disorder, numbness in shoulders, hands and elbows.

Bad Academic Performance – Playing online games for a long time will create a negative impact on your child’s academic performance. The more your children spend in playing online games, the sooner they fall asleep. Lack of concentration will be an issue to the children that spend more time in playing online games. Some children would fall to the online games and a kind of addiction will happen to them.

Explanation:

Now, I hope that you might have understood the optimistic and pessimistic effects of playing online games. Playing is not a bad one, but you should stick to your limits.

What is output? Select all that apply. c = 0 while (c < 5): c = c + 1 print(c) 6 5 2 4 3 0 1

Answers

Answer:

2 4 3 0 1

Explanation:

What stops the current loop and resumes execution at the next statement?
the break statement

the final statement

the pass statement

the infinite-loop statement

Answers

Answer:

break statement:))

Explanation:

The statement that stops the current loop and resumes execution at the next statement is known as the break statement. Thus, the correct option for this question is A.

What is the break statement?

The break statement may be defined as a type statement that effectively terminates the execution of the nearest enclosing do, for, switch, or while statement in which it considerably appears.

While performing the break statement control passes to this statement and follows the termination of the break statement very efficiently. The purpose of the break statement is to break or terminate a loop function as early as possible.  

Therefore, the break statement is the statement that stops the current loop and resumes execution at the next statement. Thus, the correct option for this question is A.

To learn more about Break statements, refer to the link:

https://brainly.com/question/14548592

#SPJ2

I need to change the subject before they get onto me. I am only revealing info today if you are a friend.

Let's change the subject to the Tillinghan Mystery (Totally not related to the Dad Mystery)

Who is Tillinghan, and what is his website?

Answers

Answer:

uuuuummmm i have no idea what your doing but tillingan is a doctor and his website is to sell children over internet

Explanation:

im scared of myself ik

Which of the following is the main cause of network failure?

A. cables that break
B. peripherals that get in the way
C. storms
D. human error

Answers

Answer:

Possibly A or C

Explanation:

Answer: human error is the right answer!!!!!

Explanation:

I took the quiz

Identify the causes of installation problems. (Choose all that apply)

Answers

Answer:

the last one

Explanation:

please mark brainliest

Answer: The answers are: A,B,D

edg.


dash+dash=100
Both dash and dashare prime numbers.
How many different solutions can you find​

Answers

Answer:

6

Explanation:

97+3 = 100

89+11 = 100

83+17 = 100

71+29 = 100

59+41 = 100

53+47 = 100

I counted them using excel, see pic.

Answer:

?

Explanation:

?

what steps should you take if your harassed online​

Answers

tell an adult and report the person harassing you
block them and if ur comfortable, tell ur parents

sunglasses sunglasses sunglasses sunglasses sunglasses sunglasses sunglasses sunglasses sunglasses sunglasses i am a failure sunglasses sunglasses sunglasses sunglasses sunglasses sunglasses sunglasses sunglasses sunglasses sunglasses sunglasses sunglasses sunglasses sunglasses

Answers

Answer:

SUNGLASSES!!!!! Also, side note, you're not a failure!

EISDHUOSHSD ITS WORLD WIDE HANDSOME

Which function is correctly written?
=Average(C4)
=Average(C2:010)
=Average(D5-D20)

Answers

Answer:

=Average(C2:010)

Explanation:

You us the ; between the numbers, and u need two numbers for average. Sorry if wrong.

Answer:

2:010

Explanation:

Will give 5 star and the mark brainleist

Answers

I think it’s “head”????
it would be
because it has to start and end with the same thing
and since it says student grades it has to end in

A. Fill in the blanks:
1.
is an effective way to display data in pictorial form.
2. Data series are the bars or slices that show the
3. Barchart displays data in the form of long
rods.
4.
is the vertical axis that is used to plot the values.
5.
is a key that is used to identify the colours, patterns, or symbol assigned to a data series.

Answers

Answer:

1. Charts.

2. Data series.

3. Rectangular.

4. Y-axis.

5. Legend.

Explanation:

1. Charts: is an effective way to display data in pictorial form. It includes the use of pie charts, bar charts, venn diagram, etc.

2. Data series: are the bars or slices that show the data values. It comprises of related data sets.

3. Barchart displays data in the form of long rectangular rods. Generally, bar charts are used for the comparison of informations obtained from a data collection by representing each value (information) with rectangular bars respectively. A bar chart has a x-axis and a y-axis used to represent the various categories of data collected.

4. Y-axis: is the vertical axis that is used to plot the values. The other axis for plotting values is known as X-axis.

5. Legend: is a key that is used to identify the colours, patterns, or symbol assigned to a data series.

Give me 4 examples of things to consider as a sound designer?
HURYYYYY IM TIMED

Answers

Answer:

Sound design components include sound effects or SFX sound design, mixing, Foley sound design, dialogue, and music.

Explanation:

When is it appropriate to delete an entire row or column as opposed to deleting the data in the row or column

Answers

Answer:

huh wdym

Explanation:

The ___ function can be entered by clicking the cell where you want to add the funtion such as cell J6. Then click the arrow next to the autosum button and choose averange

Answers

Answer:

The name of the function that can be added to a cell below a column of numbers or to the right of a row of numbers to find the average by clicking on the AutoSum button on the HOME tab is;

Average

Explanation:

The average function is the function used to quickly find the arithmetic mean, 'μ', or average of a number group, x₁, x₂, x₃, ...xₙ, which is given by dividing the sum of the numbers by the count, 'n', of the numbers, as follows;

μ = ∑x/n

The AutoSum can be used to find the average in Microsoft Excel by clicking on the next cell to row of cells to the right or immediately below the column of cells, then clicking on the down arrow on the right of the AutoSum button on the HOME tab and selecting Average from among the options, the average of the numbers in the column or row of cells will be displayed in the selected cell.

Therefore, we have;

The Average function can be entered by clicking the cell where you want to add the function such as cell J6. Then click the arrow next to the AutoSum button and choose average

1. What is the measure of muscle strength?

A. Number of repetitions in a set

B. Length of muscle stretch

C. Force against resistance

D. Time taken to complete a workout

Answers

Answer:

C. The force against resistance

What is 36 Denary in Binary?? PLEASE ANSWER I WILL GIVE U BRAINLY!!

Answers

Answer:

100100

Explanation:

Heres my answer i hope it helps

Answer:

100100

If you want to know the binary representation of any decimal number up to 7 digits, check out the Decimal to binary converter.

Explanation:

An audio recording has five minutes of silence at the beginning. Which audio-editing technique will delete this unwanted silence?

topping and tailing

normalizing

equalizing

dithering

Answers

Answer:

topping and tailing

Explanation:

Evaluate if the following function is a good candidate to be placed in a library. Why or why not?

Answers

Answer:

It cannot be a good candidate because the creator of the library is attempting to update the global variables player1Points and player2Points. The updated scores for each player won't be retained unless someone creates the global variables player1Points and player2Points in their program.

The updateScore function is meant to update the point of player1 and player2 ; since the variables player1 and player2 are only defined in the function, then they do not have a global scope. Hence, the function isn't right to be placed in a library.

Variables defined outside a function are called global variables ; hence, they can be referenced anywhere within the program.

Since the function references a global variable, then any program which intends to use the function must have the variables player1 and player2 must be defined globally in the program.

Hence, it is not a good candidate to be placed in a library.

Learn more:https://brainly.com/question/20720413

How does a passive attack differ from an active attack?

Answers

Active and Passive Attacks are security attacks. In Active attack, an attacker tries to modify the content of the messages. Whereas in Passive attack, an attacker observes the messages, copy them and may use them for malicious purposes. ... In Passive Attack, information remain unchanged. Hope this helped :)

Other Questions
W-20.5=8 please help me What where the causes of the insurrection that took place at the us capitol? Why does Commander Peary hire Henson?This assignment is past due please help PLS HURRYUse the protector to measure the angle. find the value of 9x+4y when x=4 and y=-3 16. Drug users of heroin may use unsterile needles or other equipment and acquirea. No side effectsb. Cancer, infection, and diseasesC. HIV, hepatitis, other bloodborne pathogensd. An addiction Marco is charged with kidnapping a young girl and carrying her across state lines. Marco is convicted of kidnapping and he wants to appeal. Does anyone know 3 + (12r2) - 16 / 4? What is the c-value for the data point that represents the outlier in the scatter plot?0 1950 1900 1700 160 Question 1 (1 point) The nullification crisis was about....Question 1 options:Georgia removing Native AmericansSouth Carolina wanting to trade with the Northern coloniesJackson wanting to nullify the presidency and become kingSouth Carolina wanting nullify the tariff and succeed from the UnionQuestion 2 (1 point) Jackson wanted to get rid of the bank because he felt like it only helped wealthy people. Question 2 options: True False The role of the daimyo under the Japanese feudal system is most similar to what role in the European feudal system mhhhhhhhhhh welppp i need help help if this right then ok if its wrong help fix it what is 7/8 x 4/7 in simplest form? A 16-ft-long ramp rises at an angle of 18.5 degree. How long is the base of the ramp to the nearest foot?pls include explanation Oslo Food Company distributes to consumers coupons which may be presented (on or before a stated expiration date) to grocers for discounts on certain products of Flavor. The grocers are reimbursed when they send the coupons to Oslo. In Oslo's experience, 55% of such coupons are redeemed, and generally one month elapses between the date a grocer receives a coupon from a consumer and the date Oslo receives it. During 2021 Oslo issued two separate series of coupons as follows: Consumer Amount Disbursed Issued On Total Value Expiration Date as of 12/31/18 1/1/18 $500,000 6/30/18 $236,000 7/1/18 840,000 12/31/18 350,000 The only journal entry recorded to date is: debit to coupon expense and credit to cash of $815,000. The December 31, 2018 balance sheet should include a liability for unredeemed coupons of:_____.a) $0.b) $70,000.c) $184,000.d) $420,000. Dominic earns $15 an hour working at a movie theater. last week he worked h hour at the concession stand and three times as many hours at the ticket counter. how much did Dominic earn last week What circumstance prevented the United States from destroying the shokaku. what did the department of war do Does an explicit formula for a sequence make sense assuming n = 2.5? ExplainChoose the correct answer belowO A. It makes sense, but only if the term for n = 2.5 is an integerOB. It does not make sense since n is the term number. It is not possible to have a term between the second and third terms.OC. It makes sense since n is a variable, and variables can be any real numberOD. It does not make sense since n can be negative or positive but must be an integer.