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 1

Answer:

b

Explanation:

Answer 2
B Left aligned I believe

Related Questions

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

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.

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

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

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

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

Answers

Answer:

lala

Explanation:

I don’t understand da question

MP3 BrainPoP Quiz
How much is a typical five-minute CD sound file than a typical five-minute MP3 sound file?

Answers

Answer:

The typical CD sound file is 10 times larger than a typical 5 minute .mp3 file.

building a robot that could perform surgery on its own. Would you rather have it rely on a basic algorithm with a human supervisor, or on a program that uses machine learning?

Answers

program that uses machine learning.
I would say a program that uses Machine learning

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

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

Can somebody help me? Thank you. ASAP

Answers

Home tab, paragraph group, and multilevel icon. :)
You are correct I think
Other Questions
Question 7 of 10What is the systematic mistreatment of members of a group based on thecolor of their skin called?A. RacismB. PrivilegeC. DiversityD. EmpathySUBMIT Es un cambio natural o provocado, donde se produce energa para agua y dixido de carbono: a)Precipitacin. b)Fermentacin c) Efervecencia. d) Combustin. No links please 15 Points Consider the Hertzsprung Russell diagram seen here. We can use this diagram to classify stars and determine their characteristics.The color of a star is determined by its temperature: the hottest stars are blue and the coolest are red. The Sun has a surfacetemperature of 5,500C and it appears yellow. The diagram also indicates that temperature coincides with luminosity: the hotter thestar, the higher the luminosity. You can also tell the size of each star from the graph as the larger the radius, the higher thetemperature and luminosity. Regardless of a star's position in the diagram, the energy that results in high temperatures and the starsluminosity is generated by what process?WA)nuclear fusionB)nuclear fissiongravitational forces of swirling gasesD)friction generated by gravitational force 23) A student revising this passage wants to create a more effectivetransition from the end of paragraph 2 to the beginning of paragraph3. What could the student do to make a more effective transition?A)Nothing. The transition between paragraph 2 and 3 isfine as it is.B)Paragraph 3 needs to begin with more informationabout how bread is made.C)Paragraph 3 needs to begin with a description ofdifferent types of donuts.D)Paragraph 3 needs to begin with paragraph three firstsentence about Hanson Gregory. Colin's bank account balance is d dollars. If he deposits a check for 50$. Write an expression to represent his new balance. probably an easy brainliestCreate a personal narrative describing how an animal taught you a life lesson. Herbicides are used to kill weeds or plants growing where they are not wanted. A crop of corn has been genetically modified so that it is resistant to a type of herbicide that kills several species of weeds that commonly grow in the fields and interfere with growth of the corn crop.Which question would help determine whether the corn is expressing the gene that provides herbicide resistance? Explain ten procsesses by which singular nouns could be become plural I NEED HELP SOMEONE PLZZZ HELP ME PLZZZZ A student says an organism that is both a first level and second level consumer is an ominvore. Is that student correct? Explain.PLZ HELP ILL MARK BRAINLIEST!!! Which of the following best describes a form of genetic drift in which the animal population is depleted, thereby reducing the population's genetic diversity?A. bottleneck effectB. disruptive selectionC. founder effectD. gene flow Why did blson almost go extinct in the late1800s? (NO LINKS)A) Climate changeB) DiseaseC) Ice AgeD) Overhunting Which statement best describes the relationship between the two variables? There is an association because the relative frequencies by column are similar. There is an association because the relative frequencies by row are similar. There is no association because the relative frequencies by column are similar. There is no association because the relative frequencies by row are similar. Please a correct answer gets brain thing that I forgot it name please help Robert plays cricket. He hit the ball in such a way that it goes up 180 feetin 45 seconds. What is the speed of ball in feet per second? What is the function of the integumentary system? Take-it2 FINGERS do you eat chocolate?? Which figures will have a volume that is greater than 100 cubic units? Select two options. a rectangular prism with dimensions of 4 by 5 by 4 a rectangular prism with dimensions of 2 by 12 by 6 a rectangular prism with dimensions of 1.5 by 8 by 8 a triangular prism that is 6 long and has a triangular face with a base of 4 and a height of 12 a cube with side length 4. Brainly is not a dating app so fr stop. Lil kids