How can you tell that a website is valid and reliable?

Answers

Answer 1
Answer: If there is an about page where it tells whom made the website, as well as a copyright 2016 on the bottom of the page. This basically means the website is useful and updated by the creators. Another factor which the site doesnt always need but if it has an https at the beginning of the url then it should be good and valid because that means the site is secured. Also factor in the sections where articles are present, if they have a date and an author towards the bottom or top of the article, then it can be trusted as well. Theres a lot more you can look for in a site and validating if it is an okay site but these are a few examples. Hope this helped!:)

Related Questions

What means to create an uncompressed copy of a compressed file or folder
An unwanted program that can spread itself to other computers is called what? marketing an attachment spam a virus
If the Spelling and Grammar checker suspects you have a misspelled word, it will _____.a. offer suggestions for the correct spelling b. pull up the Dictionary for you to search for the correct spelling c. supply you with Internet search results on the word d. automatically replace the word with the one it believes is correct
Which console was invented by Ralph H. Baer?
The agency responsible for maintaining a database of all operational continuity facilities is:

Identify the parts of a spreadsheet by using the drop-down menus to select the part that corresponds to the labeled diagram to the right.A

B

C

D

E

Answers

Answer:

A- Row

B- Column

C- Workbook

D- Cell

E- Sheet

Explanation:

Got a 100% on this, the person above is incorrect.

I believe d is the answer !

Ms. Rogers wants to see the names of all the students who scored below 25 on the test. Which of these custom options will help her do so?A. Equals
B. Is less than
C. Is greater than

Answers

B Is less than because it says below

Identify the components of documents merging

Answers

There are 3 components of documents merging :

- input 1  , which contain the data source

- Input 2, which contain the main document

and

- Output 3, which contained the merged the documents

You've just done a search in an online reference tool, and your results are as follows: canine, cur, doggie, hound, mutt, mongrel, pooch, and puppy. What kind of online reference tool are you using?a. thesaurus
b. atlas
c. dictionary
d. translation

Answers

The correct answer is letter a. thesaurus. You've just done a search in an online reference tool, and your results are as follows: canine, cur, doggie, hound, mutt, mongrel, pooch, and puppy. The kind of online reference tool you are using is the Thesaurus. It groups similar words together.

Who are the people who direct traffic, give speeding tickets, fight crime, and even keep schools safe?

Answers

Answer:

law enforcement

Explanation:

they do all these aspects

Write the definition of a method dashedLine, with one parameter, an int. If the parameter is negative or zero, the method does nothing. Otherwise it prints a complete line terminated by a newline to standard output consisting of dashes (hyphens) with the parameter's value determining the number of dashes. The method returns nothing

Answers

Answer:

The following are the program in the Java Programming Language.

//define a function

public void dashedLine (int x)

{  

//check the variable 'a' is greater than 0

if (x>0)

{

//declare integer data type variable

int i;

//set the for loop that iterates from 1 to variable 'a'

for (i=1;i<=x;i=i+1)

{

//print the following dashes

System.out.print("-");

}  

//for empty space

System.out.println("");

}

}

Explanation:

The following are the description of the program.

  • Define a function 'dashedLine()' and pass an argument 'x' in the function's parameter.
  • Then, set the if conditional statement that check the argument x is greater than 0 or not.
  • Then, declare the variable 'i' and set the for loop statement that iterates from 1 to the variable x then, print the dashes and print the empty spaces after every loop statement.