What is the importance of internet safety?

Answers

Answer 1

Answer:

1. Identity theft

2. Safety for you and your family and personal info

3. Harrasement and bullying prevention

Some things never to share on the internet with strangers...

1. Full name

2. Birthday

3. State or city of home

4. Pictures of yourself

5. Personal info about you or your family members

6. Personal social media links and tags

Explanation:

hOPE THIS HELPS!! I think some people need a reminder of this sometimes! you didnt give any options so i hope this helps you!


Related Questions

Write the interface (.h file) of a class Player containing: A data member name of type string. A data member score of type int.A member function called setName that accepts a parameter and assigns it to name . The function returns no value.
A member function called setScore that accepts a parameter and assigns it to score . The function returns no value.
A member function called getName that accepts no parameters and returns the value of name .
A member function called getScore that accepts no parameters and returns the value of score .
My start code:
class Player
{
string name;
int score;
void setScore (int playerScore)
{
score = playerScore;
}
int getScore()
{
return score;
}
}

Answers

Answer:

Following are the class definition to this question:

class Player//defining a Player class  

{

private://use access specifier

string name;//defining string variable  

int score;//defining integer variabl  

public://use access specifier

void setName(string par_name);//declaring the setName method with one string parameter

void setScore(int par_score);//declaring the setScore method with one integer parameter

string getName();//declaring string method getName

int getScore();//declaring integer method getScore

};

Explanation:

In the above-given code, a Player class is defined, that hold a method and the variable which can be defined as follows:

It uses two access specifier, that are public and private. In private, a string and an integer variable "name, score" is declared, which holds their respective value. In public, it declares the get and set method, which holds the value from its parameters.

Which button in the Sort & Filter gallery of the Data tab would alphabetize from A to Z quickly?
Sort
AZ down arrow
AZ up arrow
Filter

Answers

Answer:

B AZ down arrow

Explanation:

got it right

Answer:

B. AZ down arrow

Explanation:

I'ts right on Edge

Have a good day!!!

The literals in the following statement are Blank 1 and Blank 2.
a = 3.14*r*r/2;

Answers

The awancer is 5.856 because you to the math and militarily

A. Write a class that declares a variable named inches that holds a length in inches,
and assign a value. Display the value in feet and inches; for example, 86 inches
becomes 7 feet and 2 inches. Be sure to use a named constant where appropriate.
Save the class as InchesToFeet.java.
B. Write an interactive version of the InchesToFeet class that accepts the inches
value from a user. Save the class as InchesToFeetInteractive.java.

Answers

Answer:

A.

public class Main{

public static void main(String[] args) {

 final int divisor = 12;

 int inches = 86 ,feet;

 feet =inches/divisor;

 inches = inches%divisor;

 System.out.print(feet+" feets "+inches+" inches");

}

}

B.

import java.util.*;

public class InchesToFeetInteractive{

public static void main(String[] args) {

 Scanner input = new Scanner(System.in);

 final int divisor = 12;

 int inches,feet;

 System.out.print("Measurement in Inches: ");

 inches = input.nextInt();

 feet =inches/divisor;

 inches = inches%divisor;

 System.out.print(feet+" feets "+inches+" inches");

}

}

Explanation:

Both classes use the same algorithm; however, the slight difference is that

(A) assumes a values of inch measure while (B) prompts user for input

That is show in the differences below

A)

int inches = 86 ,feet; ---> This initializes inches to 86;

B)

This prompts user for measurement in Inches

 System.out.print("Measurement in Inches: ");

This gets the measurement

 inches = input.nextInt();

The next lines are common in both classes

This declares and initializes a constant which is used in the conversion

 final int divisor = 12;

This calculates the number of feet in the user input

 feet =inches/divisor;

This gets the remainder inches, if any. It uses % to calculate the remainder

 inches = inches%divisor;

This prints the required output

 System.out.print(feet+" feets "+inches+" inches");

ATTENTION MODERATORS

User "69PierNeedsAnswers69" has been spamming the same message on multiple questions, likely point farming. I request that you time him out as soon as possible.

Link to his profile: https://brainly.com/app/profile/27562423

Answers

Answer: lol

Explanation:

On tool hackers use to get sensitive information from victims is/are:
A. Loggerware
B. Keyloggers
C. Robots
D. Phishing

Answers

Pretty sure it’s keyloggers because it’s the only one that makes sense to me but I’m not 100% sure on that one
Absolutely c is the correct!

help ma??!! please please

Answers

hey what do you need help with?

give us a picture and we will try to help.

Create a query that shows columns employee last name, job title and hire date for those employees who joined the company on or after the first day of December 2016. Do not display job title of stock clerk. Show records in descending order by job title (Z to A).

Answers

Answer:

SELECT last_name, job_title, hire_date FROM employee WHERE hire_date>="01-12-2016" AND job_title != "STOCK CLERK" ORDER BY job_title DESC;

Explanation:

The SQL code queries the employee table returning records of the last_name, job_title, and hire_date columns matching the employees hired on or after December 2016 and job titles that are not stock clerks in the employee table.

The WHERE and AND clause is responsible for the condition while the ORDER BY clause returns the query result in the of the job title in descending order.

please tell fast plzzzzzzz​

Answers

Answer:

True

Explanation:

I just check on my computer

Answer:

True

Explanation:

u use this to do the symbols liek the at symbole or dollar sign.  just to name a few

Two of the most popular web servers are Apache and Microsoft IIS. Discuss some of the tools and techniques used to secure these web servers.

Answers

Answer:

Answered below

Explanation:

Various tools and techniques are used to secure web servers and they include;

- Network firewalls which are systems used to prevent unauthorized access to a server from external networks.

- Antiphishing tools used to prevent phishing.

- Encryption tools which use cryptography to encode sensitive data.

- Penetration testing softwares are used to test the vulnerability of network security.

- Antivirus softwares.

A network technician has made a UTP cable that is terminated as T586A on one end and T586B on the opposite end. What type of cable has been constructed?

Answers

Answer:

CROSSOVER CABLE

Explanation:

Crossover Cable is used to connect same types of device.

Crossover Cable is very similar to straight-through, except that they have pair of

wires that crisscross. This allows the two devices to communicate at the same

time.

TIA/EIA 568A: White/Green-Green, White/Orange-Blue, White/Blue-Orange,

White/Brown-Brown

TIA/EIA 568B: White/Orange-Orange, White/Green-Blue, White/Blue-Green,

White/Brown-Brown

Read a list of PowerPoint tasks.

Creating a new presentation
Opening a saved presentation
Printing a presentation
Saving a presentation

Which parts of PowerPoint can help to complete all the tasks on the list? Check all that apply.

ribbon
Status bar
Backstage view
Windows control
Quick Access toolbar

Answers

Answer:

ribbon

Backstage view

Quick Access toolbar

Explanation:

Given the IPv4 address, 200.245.10.150/28, how many subnets are possible and how many hosts can be supported by each subnet?
a. 228 = 268 subnets, 24 -2 = 14 hosts per subnetwork
b. 24 = 16 subnets, 228 - 2 = 268E6 hosts per subnetwork
c. 24 - 2 = 14 subnets, 24 = 16 hosts per subnetwork
d. 24 = 16 subnets, 24 - 2 = 14 hosts per subnetwork

Answers

Answer:

d. 24 = 16 subnets, 24 - 2 = 14 hosts per subnetwork

Explanation:

When four bits are borrowed from the fourth octet of class C IP address 200.245.10.150, the IP address is subnetted to 16 subnets, where the number of subnets is equal to two raised to the number of borrowed bits (ie, 2^ number of borrowed bits), and 14 assignable host IP address gotten from the formula;

  = 2^(number of host bits in the fourth octet) - 2

  = (2^4) - 2

  = 16 - 2 = 14 host addresses

Why should you try to contact the technical support staff of a web hosting provider before you become one of its customers?

Answers

Answer: Contacting technical support can give you a general idea of the responsiveness of the web host provider to issues and problems. If the technical support staff is slow getting back to you at this point, don't be surprised if you get the same type of service when you have a problem and need immediate help. While not fail-safe, a quick response to a simple question at least gives the appearance of a well-organized, professional, and responsive technical support staff.

What is the best definition of a network?

Answers

Answer:

like tv or wifi

Explanation:

A technology or a computer or a phone !

Write a statement that takes a variable named open_file that contains a file object and reads the next 12 characters into a variable named description.

Answers

Answer:

description=open_file.read(12)

Explanation:

A programming language in computer is a set formal languages that comprises a set of instruction which produce various kinds of output. It is used ti implement algorithms in computer programming.

In the context,  description=open_file.read(12) is the statement given to the computer as input which takes a variable named as open_file containing a file object and which reads the next 12 characters into the variable named as description.

Your classmate constructs a simple computer that adds numbers. There are 5 wires for inputting the first
number, and the wires are currently "on","on", "off, "on", "off", or 11010 in binary.
What decimal number does that represent?

Answers

Answer:

26

Explanation:

Clay wants to print T-shirts and sell them online. What printing press would be the best for him to use?

Answers

Answer:

I think is screen printing press.

Explanation:

Screen printing requires you to go through a multi-step, back-breaking process to print your t-shirt.

please choose odd one out please tell fast ​

Answers

Answer:

cpu

Explanation:

Answer:

CPU bc A-Z is the first to the last also with the one digit numbers 0-9 so there for there is  no connection with CPU as the other ones.

Explanation:

Hoped I helped have an amazing day. Please consider marking this brainliest thank you in advanced if you do!

Three of the following values could be stored as strings. When would you NOT use a string command? O To store a word. O To store values NOT used for calculations. O To store decimal values. O To store a list of colors.​

Answers

Answer:

To store decimal values

Explanation:

Decimal values are considered a float data type, not a string, so if the question is asking for the only thing that couldn't be stored as a string, it would be a decimal value.

Decimals can be stored as a string in certain situations, but it would have no value in a mathematical equation.

why do we need the system requirements for Adobe photoshop?

Answers

I’m sorry and I do not know I just need credits thank have a nice day

Tools is used to collect the animal manure from the grounds

Answers

Answer:

The options are

A. bolo. B. hole C. rake. D. shovel.

The answer is D. Shovel

Explanation:

The most suitable option is a Shovel which can be used to collect the animal manure from the grounds.

Using a shovel will make the job easier as a result of its very firm handle to lift the manure appropriately and also the curved base to enable proper transfer of the manure from the soil to where it’s needed.

The name of the tool which is used to collect the animal manure from the grounds is:

D. Shovel

According to the complete question, we can see that there are a variety of options to select from that would be most suitable for a farmer to collect manure from the ground.

As a result of this, the name of the farm tool which is used to collect animal manure from the grounds is a shovel.

This is because, a shovel has a long handle and a curved base which can be used to pack things off the ground and it is especially useful in the farm when packing animal manure.  

Therefore, the correct answer is option D

Read more here:

https://brainly.com/question/22488611

Provide an example where a company has demonetized a market or industry.

Answers

Companies are shut down if copyrighted

who here has a crush on jk from bts but feels more mature than him

Answers

Answer:

Nope not K-pop fan

Explanation:

Write a statement that defines an array of four integers named miles. The array should be initialized with the values 1, 5, 9, and 22.

Answers

Answer:

int miles[4] = {1, 5, 9, 22};

Explanation:

Given:

Initialized values = 1, 5, 9, and 22

Find:

Defines an array of four integers

Computation:

int miles[4] = {1, 5, 9, 22};

Why is it important to turn your work in on time? How does submitting your work on time demonstrate academic integrity? How do you plan to ensure your academic success by turning your work in on time?

Answers

Answer:

It is important to turn the work on time for two fundamental reasons: first, because it allows the student to organize their time more efficiently, without delays in his presentations; and second, because it shows the responsibility of the student in front of his obligations, which gives a positive concept in front of teachers and managers.

In addition, the delivery of work in a timely manner is a clear sample of academic integrity: it shows that the student has his academic career as his main priority, over other alternatives such as work or leisure. That is, it realizes that the student is applied and integral when considering his academic responsibilities.

In my case, I seek to ensure my academic success by submitting my work in advance, which gives me time to receive corrections from the teachers and to be able to modify my mistakes.

Select the correct text in the passage.

Which statement in the paragraph indicates that a data storage problem exists with an enterprise system?

[Once implemented, enterprise systems have a lifespan of 10 to 20 years. After that, organizations can upgrade them or scale them up.] Although this seems like a long time, [data within organizations accumulates exponentially and may be too difficult to manage and store on a single software system.] [Data overflow and a subsequent slowdown in one department will have a ripple effect on other functions of an organization. ]This affects the performance of the entire system.

Answers

its C, sorry if im wrong but im pretty sure.

Explanation:

Answer:data within organizations accumulates exponentially and may be too difficult to manage and store on a single software system.

Explanation:

The the concept of plug-and-play is demonstrated by which of the following scenarios

Answers

Answer:

What are the Scenarios

I will update this when you give us them

Explanation:

Answer: Farrah has completed a post-secondary education program and is now ready to begin working, without additional training, on her first day.

Explanation:

please tell fast plzzzzzz​

Answers

Answer:

heyyy

your answer is false

HOPE IT HELPS YOU OUT PLEASE MARK IT AS BRAINLIEST AND FOLLOW ME PROMISE YOU TO FOLLOW BACK ON BRAINLY.IN

Answer:

false..................

What framework uses CSS to access and manipulate HTML elements?

____ uses CSS to access and manipulate HTML elements

Answers

Answer:

The correct answer is JQuery

Explanation:

JQuery uses CSS to access and manipulate HTML elements.

Answer:

the answer is:

JQuery

Other Questions
Do you think the Ten Commandments changed how the Hebrews lived their daily lives? Is yes, how did it change? If no, why not? PLEASE HELP!!!I don't understand how it works...if possible, please explain how you got your answer.Thanks!!! WILL GIVE BRAINLYEST PLZ ANSWER!!!!1. The five events listed below are steps the U.S. and Minnesota governments took to expand the growing nation. Find the years for each event and number them in order, starting with the oldest.________Minnesota becomes a state. (Year: ________)________The Dakota and U.S. government sign the treaties of Traverse des Sioux and Mendota. (Year: ________ )________Minnesota becomes a territory. (Year: ________)________Minnesota approves a constitution. (Year: ________)________European Americans outnumber American Indians in Minnesota for the first time. (Year: ________) The piecewise function f(x) has opposite expressions.2x - 1,x < 0f(x) = 0,x = 0-2x + 1 x > 0Which is the graph of f(x)?Tyt5322021-5 -4 -3 -2 -112345-5-4-3-22345-3-2-2 -9 + 1/4x - 6 - 1/8x What led to a revival of bushido beliefs in the 1930s? The era of feudalism ended in Japan The shogun wanted to restore bushido to Japan.Japan fought under the bushido code to victory in key conflictsJapan wanted to be a world power and thoguht the code would help. Need help please. Help me please! paragraph 3 Heyyyyy! Need Help with this! I will give brainliest to correct answer!! What kind of land feature is shown at point on this topographic map?ABO A. A lakeOB. A mountaintopO c. A depressionO D. Aflat area how do you ask a question Match the sentence to the correct meaning of the bolded word.Match Term DefinitionI went to the optometrist and got new glasses. A) offering assistance to othersIt is important to always maintain your oral hygiene. B) not moving and remaining sedentaryMy brother was very helpful at my birthday party. C) the practices done to stay healthy and prevent disease, especially through cleanlinessThe lions at the zoo were inactive. D) a doctor who specializes in eyesight Lisa hikes 9 miles in 2 hours. At this rate, how far does she hike in hours?O 2 milesO4 milesO 3 milesO 3 miles 4. John gets a new job and receives a $700 signing bonus. After that, he makes $250 a dayWhat is the y intercept of the equation that describes the situationI need to know if the answer is y=700 Joe, you are wrong." This example is written in third person. AsapTrue or False HElp AsAp ^^^^^^^^^z Preserved animal tracks are calledfossils,remainsfossilmoldhardmissing layertraceradioactive decaycarbon-14 9 x -5=help!!! I am stuck What is the value of x2 -9,when x = 10? What were the opposing parties in the Battle of Lexington and Concord. Politician Alec and Candidate Simeon are running for governor. The latest surveys show that Politician Alec has 47% of the vote, while Candidate Simeon has 42% of the vote. The news report, however, states that this survey has a 6 % margin of error. What interval describes Politicians Alec's chances of winning the election?