What does it mean to be a good cyber citizen?
A. being born in this country and having a computer at home
B. following the rules of online communication, using the Internet appropriately, and avoiding unsafe websites
C. showing friends the best places to visit online
D. helping senior citizens use the Internet correctly

Answers

Answer 1

Answer:

B

Explanation:

Answer 2
The answer is B. Following the rules of online communication using the internet appropriately, and avoiding unsafe websites

Related Questions

On a circuit board, 1 corresponds to on, and 0 corresponds to off. True False

Answers

Answer:

The answer is true

Explanation:

Have a great day

The answer is true because if 1 corresponds it will turn on and if it’s 0 than nothing will turn on it will be off

Find out the names of at least 20 programming languages and their developers.

Answers

Answer:

lala

Explanation:

I don’t understand da question

Question 2 of 3
Based on the descriptions below, which website is most appropriate?
A. a site that asks you to send $10 to help schoolchildren in Uganda
B. a site that describes violent behavior
C. a site that asks for your personal information to enter a contest to win a new bike
D. a site sponsored by a government agency that gives you factual information

Answers

Answer: D

Explanation: You don't need to give money, information, or watch any inappropriate content on the gov website. It's safe and all you do is read.

D, it's for information and you don't actually have to look at anything other than just reading about it (that's if it's actually for reading) It's just a harmless website, but the other ones would make you pay or maybe risk your safety.

Question 1 of 3
Multiple Choice
How do cyber communities differ from communities in the real world with regard to safe behavior?
A. It can be more difficult to identify unsafe behavior in a cyber community.
B. They are not different in any important ways.
C. People usually behave more safely online than offline.
D. Communities in the real world are always safer.

Answers

Answer:

i would say a.)

Explanation:

hope i was helpful

It’s either A or D but I’d go with A

How should a table be aligned if it will be printed on a page by itself?

A) Placed at the top of the page
B) Left Aligned
C) Right Aligned
D) Horizontally and Vertically Centered

Answers

Answer:

b

Explanation:

B Left aligned I believe

Can somebody help me? Thank you. ASAP

Answers

Home tab, paragraph group, and multilevel icon. :)
You are correct I think

Rock, Paper, Scissors
In this unit, you expanded your Python skills, and now you can really have some fun! In this lab, you are going to create a game that allows the user to play Rock, Paper, Scissors against the computer. If you aren’t familiar with this classic game, here’s how it works: two people (or a person and a computer!) each select either rock, paper, or scissors. The player who chooses the stronger object wins. Here is how the winner is determined:

Rock beats scissors because a rock can break scissors.
Paper beats rock because paper can cover a rock.
Scissors beats paper because scissors can cut paper.
Go to https://repl.it/ to write your program.

Your program should do the following:

Randomly choose rock, paper, or scissors for the computer
Ask the user to choose rock, paper, or scissors
Compare the computer’s choice to the player’s choice
Announce whether the computer or the human won
Here are two hints to help you write this program:

Test parts of your program to see if they work before moving on to work on other parts. For example, you will need to have the computer select a random number and then choose for that number to correspond to rock, paper, or scissors. You can write just that portion of the program and then test it by having the program print the word “rock,” “paper,” or “scissors” before you even begin working on the part of the program where the user inputs their choice. (Of course, don’t forget to erase the line of code that prints the computer’s choice when you are finished testing—otherwise the game will be just a bit too easy for the user!)
On a piece of paper, draw a chart that shows all nine possible outcomes of the game and use that chart to design and test the program. The chart might look like this:
TABLE 1 Rock paper scissors outcomes
Computer chooses rock Computer chooses paper Computer chooses scissors
User chooses rock

Tied game

Computer wins

User wins

User chooses paper


User chooses scissors


Run several tests on your program to be sure that the correct winner is announced.

When your program works properly, take a screenshot of your code to turn in.

Answers

import random

computer_choice = random.choice(['rock', 'paper', 'scissors'])

player_choice = input('Choose rock, paper, or scissors: ')

if player_choice == computer_choice:

   print('Tie. Both players chose '+player_choice)

elif (player_choice == 'rock' and computer_choice == 'scissors') or (player_choice == 'paper' and computer_choice == 'rock') or (player_choice == 'scissors' and computer_choice == 'paper'):

   print('You won! '+player_choice +' beats '+computer_choice)

else:

   print('You lost! '+computer_choice+' beats '+player_choice)

I wrote my code in python 3.8. I hope this helps. Note the elif statement is actually one line of code but it looks like it takes up more than one line.

I actually think I might have forgor

Why is it important to create smart cities?

Answers

A smart city, powered by innovation and Internet of Things, is built on the foundation of improving residents' quality of life, enhancing business competitiveness and ensuring environmental sustainability.Aug 1, 2018
This helps Enhance things in the future in order to improve for the better and etc

Please help me on this I need u to write it if u can I will give brainlies and if your answer is not about this then I will report.​

Answers

Answer:

Life is a rollercoaster

Why did you choose to compare life to _____a roller coaster____

How are they alike?:

Life has it's up and downs like a roller coaster does. (You can elaborate on this if you want)

Explanation:

Can I have brainliest? It would help me out, if not thanks anyways! Hope this helped and have a nice day!

Life is a ball sometimes someone kick us and sometimes we succeed which we call it as a goal

Please help me on this I don't know which one they are​

Answers

Hi, the photo doesn’t show the question on what to answer, all I see are empt boxes, if you message me the question I will answer it for you!
I’m sorry I don’t understand the question no no no which means I don’t know what the answer would be so please include a different picture maybe I could help you and I think this might be here in a different subject I’m not sure because I don’t know what the question is I’m sorry I really wish I could help

LINKS!

Help! Is there a way to make them not show up??

Answers

No you can report it tho it’s annoying

Which involves more human input, basic algorithms, or machine learning?

Answers

Answer:

Machine learning

Explanation:

Machine learning involves more human input. Check more about machine learning below.

Does machine learning needs human input?

Note that as  long as AI technology is invoke and there are new applications that are made for AI to learn, AI will need to have human input.

Therefore, Machine learning involves more human input as AI. needs to learn more about humans so as to function well.

Learn more about human input from

https://brainly.com/question/24953880

#SPJ2

Could u help me on this u just have to compare how its alike please help ​

Answers

It is unpredictable there’s no way for me to figure it out

Rock, Paper, Scissors
In this unit, you expanded your Python skills, and now you can really have some fun! In this lab, you are going to create a game that allows the user to play Rock, Paper, Scissors against the computer. If you aren’t familiar with this classic game, here’s how it works: two people (or a person and a computer!) each select either rock, paper, or scissors. The player who chooses the stronger object wins. Here is how the winner is determined:

Rock beats scissors because a rock can break scissors.
Paper beats rock because paper can cover a rock.
Scissors beats paper because scissors can cut paper.
Go to https://repl.it/ to write your program.

Your program should do the following:

Randomly choose rock, paper, or scissors for the computer
Ask the user to choose rock, paper, or scissors
Compare the computer’s choice to the player’s choice
Announce whether the computer or the human won
Here are two hints to help you write this program:

Test parts of your program to see if they work before moving on to work on other parts. For example, you will need to have the computer select a random number and then choose for that number to correspond to rock, paper, or scissors. You can write just that portion of the program and then test it by having the program print the word “rock,” “paper,” or “scissors” before you even begin working on the part of the program where the user inputs their choice. (Of course, don’t forget to erase the line of code that prints the computer’s choice when you are finished testing—otherwise the game will be just a bit too easy for the user!)
On a piece of paper, draw a chart that shows all nine possible outcomes of the game and use that chart to design and test the program. The chart might look like this:
TABLE 1 Rock paper scissors outcomes
Computer chooses rock Computer chooses paper Computer chooses scissors
User chooses rock

Tied game

Computer wins

User wins

User chooses paper


User chooses scissors


Run several tests on your program to be sure that the correct winner is announced.

When your program works properly, take a screenshot of your code to turn in.

Answers

Answer:

umm...ok? update: im too young to understand coding stuff i tried to make a dancing stickman with code but its too hard, so...

yup o-o

Other Questions
line passes through points (-1,-2) and (1,4). What is the equation of the line?Write the linear equation (No linkssss)Pls help me if your good at math Ill mark brainliest if correct Two wirestether a balloon to the ground, as shown. Howhigh is the balloon above the ground? (Must Use RightTriangle Trigonometry) 2. Find the sum of the 7th term of thegeometric series. 3+1+1/3+ ...How do I find it, must show work What is fiat money and why does it have value? Which word in this excerpt from act II, scene IV, of Shakespeare's Twelfth Night is a reference to a color-changing gemstone, hinting at Orsino's inconsistent nature? The single most important part of personal hygiene for a food handler is A. removing jewelry. B. restraining hair. C. washing hands. D. wearing a clean uniform. In which economic system would you expect the widest selection of consumer goods? O traditional free enterprise O socialist O communist Which two expressions are equivalent? B. A 4(2 + x) 4.2 +2.x 4 + 2 + x (4 + 2) + X D. C. 4. X + 2 4. (x + 2) 4 = (2-x) 4- 2 = X Help!! NO LINKS! Below is the graph of y= f(x). Graph y = -f(x). what is the measure of m Which element of a short story can be supported by details?a. characterb. settingC. themed. main idea how is the system formed Solve for x, given: x24x+29=0 Only producers/autotrophsProducts are carbon dioxide and water.Products are glucoseand oxygen.Reactants are carbon dioxide and water.Reactants are glucose and oxygen.PhotosynthesisBothCellular Respiration A student is comparing the three types of celestial bodies, comets, asteroids, and meteor. Which questions would yield the mostinformation about a celestial body passing close by the Earth and why? Select ALL that apply.A)Is the object larger than 5 km in width? If so, it is a meteor.B)Is the object made of ice and dust? If so, it is likely a comet.Is the object comprised of mostly gas? If so, it is likely an asteroid.D)Is the object between Mars and Jupiter? If so, it is likely an asteroid.Is the objecta smaller piece broken from a larger body? If so, it is likely aE)meteor PLEASE HELP I NEED THIS BAD I NEED HELP!!!!!!!!!Read the following prompt and type your response in the space provided.Review the media elementYou will write a two-paragraph response.In the first paragraph identify the message of conveyed by the media piece and decide whether it is effective or not. Explain, using specific examples, why the media piece is or is not effective.In the second paragraph, analyze, with specific examples how graphic elements, such as titles, headings, and layout impact the meaning of the media piece. Red Co. had the following transactions through December 31: Cash proceeds from the sale of investment in Gold Co. stock $ 15,000 Dividends received on investment in Blue Co. stock $ 10,000 Repaid principal on a loan to the bank $ 35,000 Acquired investment in Yellow Co. stock $ 75,000 Proceeds from the disposal of factory equipment $ 12,000 What amount should Red report as net cash used by investing activities in its statement of cash flows for the period ended December 31 i need quick help, 48 points and brainliest to the best answer.(05.02 MC)[ image ] What is the area of the parallelogram?1 over 32 square foot5 over 16 square foot9 over 32 square foot6 over 16 square foot