Oceans cover what percentage of the Earth's surface?
97%
O 71%
87%
99%​

Answers

Answer 1

Answer:

71%

Explanation:

I thik so because the percentage of oceans on earth is more

Answer 2

Answer:

71%

Explanation:

If it's about covering of earth's surface by water then it is 71%

But when it's about oceans covering percentage of water on earth is 97%.


Related Questions

You are working with a client who wants customers to be able to tap an image and see pricing and availability. As you are building the code in Java, what will you be using?


graphical user interface

icon public use

graphical public use

icon user interface

Answers

Answer:

A. Graphical user interface

Explanation:

In Java the graphical user interface is what manages interaction with images.

Answer: A.)

Explanation:

The answer is A because

I was born to rule the world

And I almost achieved that goal

(Giovanni!)

But my Pokémon, the mighty Mewtwo,

Had more power than I could control

(Giovanni!)

Still he inspired this mechanical marvel,

Which learns and returns each attack

(Giovanni!)

My MechaMew2, the ultimate weapon,

Will tell them Giovanni is back!

There'll be world domination,

Complete obliteration

Of all who now defy me.

Let the universe prepare,

Good Pokémon beware,

You fools shall not deny me!

Now go, go, go, go!

It will all be mine,

Power so divine

I'll tell the sun to shine

On only me!

It will all be mine,

Till the end of time

When this perfect crime

Makes history

Team Rocket! This is our destiny!

Listen up, you scheming fools,

No excuses, and no more lies.

(Giovanni!)

You've heard my most ingenious plan,

I demand the ultimate prize

(Giovanni!)

Now bring me the yellow Pokémon

And bear witness as I speak

(Giovanni!)

I shall possess the awesome power

In Pikachu's rosy cheeks!

There'll be world domination,

Complete obliteration

Of all who now defy me.

Let the universe prepare,

Good Pokémon beware,

You fools shall not deny me!

Now go, go, go, go!

It will all be mine,

Power so divine

I'll tell the sun to shine

On only me!

It will all be mine,

Till the end of time

When this perfect crime

Makes history

Team Rocket! This is our destiny!

To protect the world from devastation

To unite all peoples within our nation

To denounce the evils of truth and love

To extend our reach to the stars above

Jessie!

James!

There'll be total devastation,

Pure annihilation

Or absolute surrender.

I'll have limitless power,

This is our finest hour

Now go, go, go, go!

instances of how computer viruses are spread​

Answers

Answer:

downloading apps from unsafe websites

Explanation:

some viruses have been embeded into this sites and when u download a file or an app the virus downloades with it

Answer:

Computer viruses can spread through the following media :

By opening an infected e-mail attachment,By downloading an infected program from the internet,By using infected floppy disk,pen drives and CDs,By transferring an infected program over a network and executing it.

what are some applications of computer in public administration?​

Answers

Answer:

Explanation:

Embedded Systems.

Windows applications (also called 'Desktop applications')

Web Applications.

Web Services.

Console applications.

For our homework we have to listen__ a podcast​

Answers

Answer:

For our homework we have to listen to a podcast


Using the Impress program, you can add multimedia files, including audio, image, and video files, to the presentation
by using
the Insert menu.
the Media menu.
the Edit menu.
the Add menu.
Mark this and return

Answers

Answer:

A. The Insert Menu

Explanation:

:)

Answer:

Edit menu

Explanation:

List 5 ways by which Artificial intelligence (AI) can be used to drive our business.​

Answers

Answer:

start a website

Explanation:

true

Here is the API for a robot library. // moves the robot forward function moveForward(); // turns the robot to the left function rotateLeft(); // turns the robot to the right function rotateRight(); // checks if a robot can move in any direction // direction {string} - the direction to be checked // return {Boolean} - true if the robot can move in that direction, otherwise returns false function canMove(direction); Which code segment will guarantee that the robot makes it to the gray square without hitting a wall or a barrier (black square)

Answers

Answer:

Option (A)

Explanation:

See attachment for options

From the options, the code segment of option (A) answers the question and the explanation is as follows:

I added a second attachment which illustrates the movement

function (solveMaze) {

moveForward(); ---- The robot moves up (to position 1)

moveForward(); ---- The robot moves up (to position 2)

rotateRight(); ---- The robot changes where it faces (however, it is still at position 2)

while(canMove("forward")) { moveForward(); } ---- This is repeated until the robot reaches the end of the grid (i.e. position 3 and 4)

rotateLeft(); ---- The robot changes where it faces (however, it is still at position 4)

moveForward(); ---- The robot moves up to the gray square

Given the mass of an airplane, the amount of forward force produced by its propellers, and the mass of the TWO gliders it is towing (airplane connected to first glider and the first glider is connected to the second glider), calculate the resulting tension on each cable connecting the aircraft and the acceleration of the glider. Vertical forces and air resistance are not considered. . Your program must accept input and produce output that matches exactly to the given executions. Note that the width modifier used for the tension values is calculated as the number of digits in the force input plus six. Example Execution #1 (eleven spaces after colon character for tension output): Enter mass of airplane (kg) -> 15000 Enter mass of glider #1 (kg) -> 5000 Enter mass of glider #2 (kg) -> 4500 Enter force produced by propellers (N) -> 75000 Acceleration: 3.06 m/s^2 -=-=-= Resulting tension on cable #1: Resulting tension on cable #2: 29081.63 Newtons 13775.51 Newtons

Answers

Answer:

Follows are the code to this question:

#include <stdio.h>//header file

int main() //main method  

{

int plane, g1, g2, f;//defining integer variables

float m,a,t1,t2; //defining float variables

printf("Enter mass of airplane (kg)-> ");//print message for input value

scanf("%d", &plane);//input value

printf("Enter mass of glider #1 (kg)-> ");//print message for input value

scanf("%d", &g1);//input value

printf("Enter mass of glider #2 (kg)-> ");//print message for input value

scanf("%d", &g2);//input value

printf("Enter force produced by propellers (N) -> ");//print message for input value

scanf("%d", &f);//input value

m= plane + g1 + g2;//use float variable m to calculate Mass

a=f/m;//use float variable a to calculate Acceleration

printf("\nAcceleration: %.2f m/s^2", a);

printf("\n-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-");//use print method for design

t1 = (g1 + g2) * a;//using the t1 variable to calculate tensions

printf("\nResulting tension on cable #1: %.2f Newtons", t1);//print tension value

t2 = g2 * a;//using the t1 variable to calculate tensions

printf("\nResulting tension on cable #2: %.2f Newtons", t2);//print tension value

printf("\n-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-");//use print method for design

return 0;

}

Output:

Please find the attached file.

Explanation:

In this code four integer variable "plane, g1, g2, and f" and four floating-point variables "m, a, t1, and t2" is declared, in which the integer variable is used for input the value from the user-end.

In the next step, the "m" variable is used, which adds the "plane, g1, and g2" integer value to calculate mass, and in the "a" variable it calculates the acceleration, and in the "t1 and t2" variable it calculates the tension and prints its value.

10. Differentiate between equity share & preference share.​

Answers

Answer:

Equity Shares are commonly called Common shares and have both advantages and disadvantages over Preference shares.

Equity shareholders are allowed to vote on company issues while preference shareholders can not.Preference shareholders get paid first between the two in the case that the company liquidates from bankruptcy. Preference shareholders get a fixed dividend that has to be paid before equity share dividends are paid. Preference shareholders can convert their shares to Equity shares but equity shareholders do not have the same courtesy.Preference shares can only be sold back to the company while equity shares can be sold to anybody.

Passive devices _____ require any action from the occupants. A. Do not B.Sometimes C.Rarely D.Occasionally

Answers

Answer:

D:

Explanation:

I think, but double check!

Have a nice life and I hope you get full marks on your test/paper/work!

:)
Other Questions
which of the following requires ATP A. facilitated diffusion B.Simple diffusion C.Active transport D.None of the above If a new variety of a tree was produced by botanists through selective breeding that had a growth rate 3 times that of the trees in the scenario, how would that have affected the outcome of the simulation? Are mixed economies the same?why or why not Kiley wants to balance the equation H2 + N2 NH3. Which would be her first step in balancing an equation? please help, find the upper limit of the third class interval Factorize i) 6y - 24 y 2/3 of a class are girls.Note: Give your answersin their simplest forms.a) What is the ratio girls to boys in the class?b) What is the ratio boys to girls in the class? !!! Two angles are complementary. The measure of one angle is 3 more than one-half of the measure of the other. Find the measure of each angle. topic is disease prevention In year 1 the average price of X is $10, and in year 2 the average price of X is $23. If consumers buy more units of X in year 2 than in year 1, it follows that a. the law of supply does not hold for good X. b. demand for good X could be lower in year 2 than in year 1. c. supply of good X could be less in year 2 than in year 1. d. good X buyers have received an increase in income between year 1 and year 2, and good X is a normal good. e. good X buyers have received a decrease in income between year 1 and year 2, and good X is a normal good. A computer randomly puts a point inside the rectangle. What is the probabilitythat the point does not land in triangle T?844SLOT27O A.O B. 13C. }CON 002D.3 write a function to represent the set of ordered pairs, (2,-2) (3,8) (4,22) (5,40) Y = 4X+3 and y= 2X+7 solve by using substitution PLEASE ANSWER. I WILL MAKE YOU THE BEST ANSWER BRAINLIEST. I PROMISE. Anna weighs 132 lb. Determine her mass in kilograms using the conversion 1 kg equal 2.2 lb. Use this mass to answer this question.calculate Anna's weight on the Moon. (G = 1.6 m / S2) must include a unit with your answer Help ASAP please!The question is attached Read the text and then, based on the information it contains, fill in the gaps in the sentences in Polish.BRITAIN'S MOST DANGEROUS BISCUITSitting down with a cup of tea and a biscuit is great British tradition. Perhaps you think this is a harmless activity - but you are wrong. It can be dangerous. A study revealed that every year about five hundred people end up in a British hospital after an accident involving a biscuit. How on Earth do they do it?Some people fall off their chairs even before they sit down to have tea. How? They stand on the chairs to reach the biscuit tin, and you can guess what happens next. Others are hit in the eye by bits of biscuit flying through the air, and a few hit themselves in the eye with a biscuit. Quite a lot dip their biscuits in hot tea, then burn their mouths - or, if the biscuit breaks in the tea, they burn their fingers. Some people choke, and some break teeth. Some are even bitten (not by the biscuits - but by their pets!).Most of these accidents sound unlikely, but they are all true. However, none of them is as weird as the following one. A man had to be rescued after he tried to pick up a biscuit he had dropped in the street. It had landed in some wet concrete and perhaps you can guess what happened next.That, surely, is the most extraordinary biscuit-related accident ever.Example: Some people can fall off their chairs before they even have their tea and cake.1 Drinking tea in conjunction with eating a cookie has a long tradition in ________________________.2 According to research, about ________________________ people end up in the hospital each year as a result of biscuit-related accidents.3 Reaching for ________________________ can also end unhappy.4 Soaking a cookie in tea can lead to ________________________ or fingers.5 A man needed help after trying ________________________ that fell into wet concrete. 1,2,3,4,5,7,7,7,8,8What is the median What does (4+1)(x+2x) simplify to? 16,000*y=220,000 what does y equal Black Soldiers who fell into the hands of Confederate soldiers were treated as prisoners of war. True or False?