How will I go about conducting the investigation on fake news

Answers

Answer 1

A person can go about conducting the investigation on fake news by:

Making personal researchMaking news verificationsComparing news with reputable outlets, etc

Fake news are those news or pieces of reporting which contains false information which is misleading to the general public.

With this in mind, it is important to verify information which you see anywhere and compare them to more reliable news outlet and also to make personal research which would be done without bias.

Read more here:

https://brainly.com/question/24560932


Related Questions

Can u guys report me as much as u can I’m trying to delete this account

Answers

Answer:

How-

Explanation:

Do you even report someone on here???? Can't you just delete this?

when the same default tracking code is installed on pages with different domains, what will result?

Answers

Answer:

When the same default tracking code is installed on pages with different domains, what will result?

Analytics will associate users and sessions with their respective domains

Explanation:

One of the first things you should know about when using and configuring Analytics is how the domain of the web property you are tracking is defined as a “site” for the purposes of viewing your reports. The default setup of the tracking code is designed to make it easy for you to track traffic to a single domain or subdomain (e.g. a single website URL) that does not share user data with other domains or sub-domains.

College entrance requirements are the expectations for admission.
O A. only
O B. least important
O C. maximum
O D. minimum

Answers

College entrance requirements are the expectations for admission.

O A. only

O B. least important

O C. maximum

O D. minimum

D.Minimum

College entrance requirements are the minimum expectations for admission.

Answer:

d.

Explanation:

just took the test

what is flame in ICT terms

Answers

Answer:

It is a posted or sent offensive message over the internet

Evaluate the merits of a hard disk drive or a solid state drive to use as the secondary storage
in a laptop computer

Answers

SSDs have a higher processing speed, shorter read and write times, and low latency. This is because they use electrical circuitry and have no moving parts, unlike HDDs. SSDs are smaller and more power-efficient because they have no external mechanics or motors attached to the drive.  SSDs have a higher bandwidth than HDDs. A typical HDD will deliver a read/write speed of 80-160MB/s. On the other hand, a typical SSD will deliver read/write speed of between 200 MB/s to 550 MB/s.

SSDs are quite reliable, since they have no moving parts and because of this can withstand some level of extreme and harsh environments and may even withstand accidental drops, shocks, or vibration but they have a finite number of reads and write before they fail. SSDs have a higher cost per GB (For example, a 1 TB SSD Samsung 870 EVO costs ~$100 but a 1TB HDD Seagate BarraCuda costs ~$45. In this case, the SSD costs $0.1 per GB and the HDD costs $0.045 per GB) and could not store as much data as HDDs (Comercial SSDs have a storage capacity of 120 GB to 4 TB max, HDDs could go from 250 GB to 14 TB).

HDDs have a lower cost per GB and higher storage than SSDs. However, HDDs are VERY fragile, they could fail if they are handled roughly or dropped they could fail. They are less reliable due to the possibility of mechanical failure, like head crash and susceptibility to strong magnets. They generate heat, use more power, are heavier, higher latency, lower speed, and lower bandwidth. Finally, HDDs usually suffer from disk fragmentation, which means files are divided into pieces and scattered around the hard drive. This will slowdown speed and  because the File System have to search through different parts of the hard drive to put together a single file. The cause of disk fragmentation is the frequent creating, deleting, and modifying of files. To fix you need to defragment your HDDs regularly.

I hope this helps <3

Why are financial records important? How does keeping organized financial records contribute to successful money manageme?

Answers

Answer:

Financial records are very important for any organization. There are many reasons to keep records such as knowing financial situation, meeting tax obligations

Explanation:

Firstly is knowing the financial situation of the company which help to further contribute with organization.

Secondly organization meet the ta obligations assign by the government.

Choose the comparison operator that will create a true statement in Scratch
O
Scratch 2021
Attribution-ShareAlike
20 Generic
O
Scratch 2021
Attribution-ShareAlike
2.0 Generic
O
85
Scratch 2021
Attribution-ShareAlike
20 Generic
O
90.85
Scratch 2021
Attribution-ShareAlike
20 Generic

Answers

Answer:

The second option

90 > 85

The statement above means 90 is more than 85 which is true.

What are some advantages to having ads tailored to your data?

Answers

Answer:

That you will find something, that you need or just something you find useful. And something that might take your interest.

12 / 4 * 3 div 2 tin học

Answers

Answer:

9/2 is the answers for the question

Explanation:

please mark me as brainlest

A type of memory address that identifies the actual physical location of a specific data element in
memory is known as:

Answers

Answer:

Memory Adress Register (MAR)

The shortcut for the move gizmo is

W
Enter
Space bar
M

Answers

Answer:

Pressing "G-G" will activate the move gizmo.

Anything a person writes or creates is __________

Answers

Answer:

an artist

Explanation:

Anything from writing, singing, painting, etc. is considered art because it takes creativity.

:) Have a good day.

To enter data from the keyboard, what command do we use?

Answers

Type the numbers or text that you want to enter, and then press ENTER or TAB. To enter data on a new line within a cell, enter a line break by pressing ALT+ENTER.

Can anyone fix this code for me?


// This function has karel move across a world of 14 columns, moving if the

// front is clear, or jumping a hurdle if it is blocked.

function start(){

for(var i = 0; i <= 13; i++){

if(frontIsBlocked()){

jumpHurdle();

}else (frontIsClear()){

move();

}

}

}


// This function has karel jump a hurdle and end up on the other side.

// Precondition: Karel is facing east in front of a hurdle (one wall high)

// Postcondition: Karel is facing east on the other side of the hurdle

function jumpHurdle(){

turnLeft();

move();

turnRight();

{

move();

turnRight();

}

move();

turnLeft();

}

Answers

Answer:

function start(){

move();

for(var i = 0; i < 2; i++){

move();

move();

jumpHurdle();

if(frontIsClear()){

move();

}

}

move();

move();

move();

function jumpHurdle(){

turnLeft();

move();

turnRight();

move();

turnRight();

move();

The corrections are =

1) Added curly braces.

2) Removed the unnecessary curly braces.

3) Added semicolons.

Given is an incorrect code we need to make corrections in it,

The corrected code is,

// This function has Karel move across a world of 14 columns, moving if the

// front is clear, or jumping a hurdle if it is blocked.

function start() {

 for (var i = 0; i <= 13; i++) {

   if (frontIsBlocked()) {

     jumpHurdle();

   } else {

     move();

   }

 }

}

// This function has Karel jump a hurdle and end up on the other side.

// Precondition: Karel is facing east in front of a hurdle (one wall high)

// Postcondition: Karel is facing east on the other side of the hurdle

function jumpHurdle() {

 turnLeft();

 move();

 turnRight();

 move();

 turnRight();

 move();

 turnLeft();

}

Here are the changes I made:

Added curly braces {} after the else statement to define the block of code to be executed when the condition is met.

Removed the unnecessary curly braces {} after the turnRight() statement in the jumpHurdle() function.

Added semicolons ; at the end of each statement to terminate them properly.

Learn more about Coding click;

https://brainly.com/question/31517409

#SPJ6

Hi there! I am writing a code to make a square using a drone, however I’m having trouble doing so. The website that I’m writing code for my is called: robolink.com/blocky I was wondering if someone could help me write the code.

(Use senior mode)

Answers

Answer:

i might

Explanation:

what do you need to effectively colaborate

Answers

Answer:

Efficiency. Meetings are an essential element to collaboration but over the years, they’ve gotten a bad rap. After...

Trust. People need to feel safe to give and receive genuinely constructive feedback, be inspired by a common goal,...

Empathy. Every team member has an important part to play. Nevertheless, collaboration...

Explanation:

On the new iOS version, can you save photos from ‘review confirmed photos’? If so, how? Thanks!

Answers

Answer:

No i dont think you can i was searching on ios websites for info cause i dont own one but it doesnt seem like you can ive been searching for quite a while now doesnt look like it tho

''/--//.I want a new account///.--/'''

Answers

Answer:

nice cause nice

Explanation:

it's nice due to you wanting a new account

Answer:

Instead of signing into this account, you can click on "sign up" and then create a new account..

Explanation:

If that doesn't work, then I'm sorry.

Have a great day, or night, wherever your at, and always know that I'm here if you need someone to talk to if something or someone is bothering you.

Nathan just read a short story for his literature class. It took him a long time, and he had to look up a number of words. What would help to improve his reading fluency?

He could read the short story a second time.
He could try to read a more-challenging text.
He could work to slow his reading rate.
He could try to read a less-difficult text.

Answers

he could try to read a less difficult text.

Answer:The answer is A

Explanation:

Nathan just read a short story for his literature class. It took him a long time, and he had to look up a number of words. What would help to improve his reading fluency?

He could read the short story a second time. makes more sense than the other options hope this helps. :D

which shortcut can you use to rename a worksheet?

Answers

Use the keyboard shortcut Alt+H > O > R, and type the new name.

What is a Teacher a. verbal linguistic b. musical ryhtmic c. logical math intrapersonal

Answers

The answer would be A verbal linguistic

RAM is temporary memory?​

Answers

Answer:

No

Explanation:

Ram isn't temporary memory

Answer:

RAM is both used for temporary storage, and from a technical perspective it is only capable of temporary storage. The hard drive is capable of storing information after the computer turns off, but RAM is not. Once your computer turns off, any data that was in your RAM sticks is lost.

Explanation:

Merging refers to dividing a single cell into multiple cells. *TrueFalse

Answers

Answer: False

Explanation: Because merging refers to something coming together as one, not to something such as a cell dividing into multiples.

the ____ is a temporary storage area that holds items copied from any office program.

Answers

Answer:

Clipboard

Explanation:

1.
Desmond is buying a new computer for editing photos and videos. A friend says that he
will need a large amount of primary and secondary storage.
(a) Define what is meant by 'primary storage'.
Define what is meant by ‘primary storage’

Answers

Answer:

Primary storage is the component of the computer that holds data programs and instructions that are currently in use

The line of the code to the right, will create an array that carries values from 0 to 10 with step size 2.

Answers

Answer:

true

Explanation:

add it in the python

information literacy refers only to complex and detailed communication — not things such as text messages.

Answers

The statement about information literacy being only about complex and detailed communication — not things such as text messages;

The statement is False

We want to know whether the given statement in the question is true or false;

Information literacy is simply defined as the ability to find, interpret, and make good use of information.

Now, this information that information literacy seeks to make people understand could be in different forms like on the internet, Television, Social media, newspapers, books e.t.c. In a nutshell, it is any means of finding information including calls and text messages.

Thus, since getting information and even interpreting could be gotten via text messages, then the statement in the question is false.

Read more at; https://brainly.com/question/14963241

when faxing sensitive compartmented information what actions should you take

Answers

Sensitive Compartmented information are highly classified documents in which it's information are meant to be kept extremely secure. Hence, when faxing sensitive such documents, it should be encrypted.

Due to the volatility of sensitive Compartmented files, as most of them has to do with issues of national security, it's content are extremely precious and are meant to be kept safe.

Hence, when the need to fax these documents are required, they should be encrypted such that only those with the necessary security clearance have the decryption keys.

Therefore, the SCIF should be encrypted when faxed.

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

HELP ME ⚠️‼️⚠️‼️ DUE IN EXACTLY 27 MINUTES

Answers

Answer:

the binary for the first one is 1101

and the binary for the second one is 10100

Explanation:

Which type of data storage allows computers to read and write to the memory while the computer is powered on?

Hard drive
RAM
ROM
Virtual memory

Answers

Answer:

RAM

Explanation:

RAM is Random Access Memory, which means you can access whenever as long as it is powered on.

Other Questions
What does Leotas syntax reveal about her? A line y intercept is 4 and its slope is 1/6 what its equation in slope intercept from 1.A building has a height of 125 meters and a length of 80 meters. On a scale drawing of thebuilding, the height is 25 centimeters.What is the length of the building on the scale drawing in centimeters?2. HELP ME PLZZZ Jurisdiction refers to: Group of answer choices A defendants interest in having an impartial jury preside over a case The plaintiffs interest in having a case heard in district court. The courts power to render binding decisions on parties before them. The power of the plaintiff to file a lawsuit in any court of his choosing. The power of a defendant to have a case removed to an unbiased court. Is the verb of the following sentence Transitive or Intransitive?The captain yelled loudly. Hasta la raz COMMONLIT ANSWERS FREE BRAINLIESTselect all that apply What is the answer to 4(-x + 4) =12 can someone help me out with this? How long does Victor study at the university before he begins his project? (Frankenstein)one dayone summera few monthstwo years pls anyone help!!! i cant do this Why is it important to push a dolly instead of pulling it? What does Newton's second law describe?A. How inertia affects the motion of an objectB. The relationship between force, mass, and accelerationC. Action-reaction pairsD. How friction and the normal force are related 1. The federal government creates the laws that govern the entire nation. Comparethe role each branch of government plays in this process and explain which branchplays the most important role in creating laws. (3 points) How to find the factor of 6+x-x^(2)PLS ANSWER TOT bakit ang bababoy ninyo 35 in the ratio 3:4 How to do q6 (a) and (b)? please help!!!ignore my draft haha the population of Nigeria is 150million to the nearest 10 million find the range of value Help me and there will be an apple at your doorstep. (There might be some shipping issues)Fill in the blank.