Q#3. What are the advantages and disadvantages of Analog and Digital computers?​

Answers

Answer 1

Answer:

Advantages of Analog computers:

Many data parameters can be obtained concurrently in a simultaneous and real-time procedure.Certain operations can be computed without the need of converters to transform the inputs and outputs to and from digital digital mode.The developer must scale the problem for the computer's dynamic range during configuration. This might provide insight into the issue as well as the consequences of numerous faults.

Disadvantages of Analog computers:

Computer systems can handle greater issues for a certain efficiency and power usage.Solution arise in real or delayed time, and recording them for subsequent use or investigation might be problematic.The number of temporal variables that can be used is restricted. It's tough to correctly solve problems with elements that operate on radically various time periods.

Advantages of Digital computers:

It is a lot more efficient and more effective, particularly with today's computers, which can analyze information at a billion times the rate of a human.Modern digital computers' incredible speed enables them to recreate objects in real time, resulting in new experiential characteristics of digital computers, such as interactive media.It has the ability to convey information in a very brief manner. This enables data storage and transmission to be more efficient as digital systems are extremely dependable and controllable.

Disadvantages of Digital computers:

To complete the same tasks, digital computers need more power than analog computers, resulting in greater heat, which increases the complexity of the computer and necessitates the usage of heating elements.To convey the same amount of data, digital computers require more capacity than analogue computers.The detection of digital computers necessitates synchronization of the computer system, which is not always the scenario with analogue computers


Related Questions

When replacing a defective switch what is necessary characteristic of a new switch

Answers

The complete question is :

When replacing a defective switch, what is a necessary characteristic of the new switch?

Select one:

a. Greater number of poles and throws than the original switch

b. The same number of positions as the original switch

C. Identical cover plate as the original switch

d. Greater current ratings than the original switch

So, according to it the correct answer is option d. Greater current ratings than the original switch.

What is a switch?

A switch is a component of physical circuitry that controls the flow of signals. A switch or toggle switch enables the opening or closing of a connection. The switch permits a signal or power to pass through the connection when it is opened. The switch cuts the circuit connection and halts the flow when it is closed.

Learn more about switches here https://brainly.com/question/14883923

#SPJ10

Why is it important to proofread your work even after using the Spelling and Grammar tool?

To make sure you have the correct word count
To make sure your document layout is correct
To print your document correctly
To catch mistakes the spelling and grammar check will not catch

Answers

Answer:

To catch mistakes the spelling and grammar check will not catch.

Explanation:

Grammar and spelling check is not always perfect!

It is the 4th one, to catch mistakes the spelling and grammar check will not catch.

You are developing an Azure App Service web app that uses the Microsoft Authentication Library for .NET (MSAL.NET). You register the web app with the Microsoft identity platform by using the Azure portal.

You need to define the app password that will be used to prove the identity of the application when requesting tokens from Azure Active Directory (Azure AD).

Which method should you use during initialization of the app?

a. WithCertificate
b. WithClientSecret
c. WithClientId
d. WithRedirectUri
e. WithAuthority

Answers

Answer: b. WithClientSecret

Explanation: This method sets the application secret used to prove the identity of the application when requesting tokens from Azure Active Directory. WithCertificate is used to set the certificate that is used for the app to authenticate with Azure AD. WithClientId is used to set the client ID of the application, WithRedirectUri is used to set the redirect URI of the application and WithAuthority is used to set the authority to be used for the app's authentication.

Stem assessment 4: divisible by

Answers

Explanation:

4 IS DIVISIBLE BY 2,4,1

IF MY ANSWER IS USEFUL MARK ME AS BRILLINT

two of the difficulties of programming in machine language

Answers

Answer:

It is really slow to write and easily leads to errors, It is extremely hard to debug and It is hard to read.

Explanation:

Complete the function best_club, which takes the names of three clubs along with their GBM attendance throughout the semester. The function takes two arguments. The first is a list containing three strings that provide the names of the three clubs, and interleaved with the club names is the attendance figures. We will assume that all clubs given in the list have the same number of meetings. For example, consider the following list:


['SBCS', 29, 16, 11, 15, 32, 'WiCS', 11, 51, 42, 33, 20, 'SBGD', 8, 19, 30, 22, 19]


The three club names are SBCS, WiCS and GDC. Each club had five meetings. SBCS's attendance was 29, 16, 11, 15, 32; WiCS attendance was 11, 51, 42, 33, 20; and SBGD's attendance was 8, 19, 30, 22, 19.


The second argument to the function is simply the number of meetings each club held during the semester. For the example above, this argument would be 5.


Example #1:


gbm_attendance = ['SBCS', 29, 16, 11, 15, 32, 'WiCS', 11, 51, 42, 33, 20, 'SBGD', 8, 19, 30, 22, 19]`

num_meetings = 5

Return value: WiCS



Example #2:


gbm_attendance = ['Chess Club', 56, 11, 15, 32, 'Cuddle Club', 11, 21, 42, 20, 'Yogurt Club', 48, 30, 22, 19]

num_meetings = 4

Return value: Yogurt Club



Example #3:


gbm_attendance = ['Running Club', 56, 41, 90, 11, 15, 32, 'Sitting Club', 11, 21, 42, 20, 11, 19, 'Standing Club', 12, 38, 30, 22, 9, 19]

num_meetings = 6

Return value: Running Club



Example #4:


gbm_attendance = ['Lazy Club', 1, 4, 2, 'Hyperactive Club', 100, 98, 102, 'Mathematical Society', 3, 14, 15]

num_meetings = 3

Answers

The function illustrates the use of loops.

Loops are used for repetitive operations.

The function in Python is as follows, where comments are used to explain each line.

#This defines the function

def best_club(gbm_attendance,num_meetings):

   #This initializes the club and attendance lists

   club = [0]*3;  attendance = [0]*3

   #This initializes a count variable to 0

   count = 0

   #This following iteration gets the names of the clubs from gbm_attendance

   for i in range(3):

       club[i] = gbm_attendance[count]

       count+=num_meetings+1

       

   #This initializes a count variable and the total attendance of each club to 0

   total = 0; count = 0

   #The following iteration calculates the attendance of the first two clubs

   for i in range(1,len(gbm_attendance)):

       if(isinstance(gbm_attendance[i], int)):

           total+=gbm_attendance[i]

       else:

           attendance[count] = total

           count+=1

           total = 0

   

   #The following iteration calculates the attendance of the last club        

   for j in range(2+num_meetings*2+1,len(gbm_attendance)):

       attendance[2] += gbm_attendance[j]

       

   #This initializes the largest attendance to 0

   maxAttendance = 0; maxIndex = 0

   

   #This iterates through the attendance list

   for i in range(3):

       #The following if condition calculates the maximum attendance

       if attendance[i] > maxAttendance:

           maxIndex = i

           maxAttendance =attendance[i]

 

   #This prints the club with the maximum attendance

   print(club[maxIndex])

At the end of the function, the club with the highest attendance is printed.

See attachment for the complete program

Read more about Python programs at:

https://brainly.com/question/22841107

Complete the function best_club, which takes the names of three clubs along with their GBM attendance

What happens when QuickBooks Online doesn't find a rule that applies to a transaction?

Answers

QuickBooks employs the Uncategorized Income, Uncategorized Expense, or Uncategorized Asset accounts to hold transactions that it is unable to categorize. These accounts cannot be used to establish bank policies.

What is QuickBooks Online?

A cloud-based financial management tool is QuickBooks Online. By assisting you with things like: Creating quotes and invoices, it is intended to reduce the amount of time you spend handling your company's money. monitoring the cash flow and sales.

While QuickBooks Online is a cloud-based accounting program you access online, QuickBooks Desktop is more conventional accounting software that you download and install on your computer.

QuickBooks is an accounting program created by Intuit whose products offer desktop, internet, and cloud-based accounting programs that can process invoices and business payments. The majority of QuickBooks' customers are medium-sized and small enterprises.

Thus, QuickBooks employs the Uncategorized Income.

For more information about QuickBooks Online, click here:

https://brainly.com/question/20734390

#SPJ1

1. For what purposes do you use the internet? State at least 3. 2. What is the benefits of using the internet? State atleast 3 with explanations. 3. What website do you mainly use? How often do you visit these website? 4. What browser do you use for searching information in the web? 5. Have you tried communicating through the internet? If yes, how did the internet improve your communication with others? ANSWER IN 5 SENTENCES 6. It is true that the coming of the internet has brought us even more opportunities compared than before but what is your opinion about its influence on the people of this modern world, especially younger generations? ANSWER IN 5 SENTENCES non se nse, unacceptable or inapropriate answers will be r e por ted :) mind you

Answers

Explanations

__________________________________________________________

1: Education, entertainment, notifications, etc.

2: The internet is a fast, easy and effeciant way to communicate. other reasons may be for banking purposes, online grocery shopping, etc.

3 & 4: Self answerable questions.

5: Common communication nowadays is texting, phone calls, etc. It's easier to press a button or two to send out information than what it used to be. For example, it often took days, weeks, and even months for messages to be sent from one location to a far-flung position.

6: ( MY OPINION ) I feel like the internet is (in a lot of ways) bad for the  younger generation and the ( soon to come ). There are alot of online predators, blogs/websites that have inappropriate content. It's quite easy for a teen to just go to a po**ographic site nowadays, type in his/her email and just simply watch it like that. Some of them don't require sign up to view videos, images, gifs. And about the online predator situation, a lot of teenagers (girls AND boys) often feel pressured into sending images of themselves now.

__________________________________________________________

Explanation of how 3D printing gives SpaceX a competitive advantage

Answers

Answer: 3D printing has given them a competitive advantage in several ways.Faster Prototyping: 3D printing allows SpaceX engineers to rapidly prototype and test new designs. They can quickly make changes to a design and print a new part, allowing for rapid iteration and testing. This allows SpaceX to iterate on designs faster than traditional manufacturing methods, giving them a competitive advantage in the industry.Lightweight Parts: 3D printing allows SpaceX to create parts that are lightweight, strong, and have complex geometries that cannot be made with traditional manufacturing techniques. This is especially important in the aerospace industry, where weight is a critical factor in the performance of rockets and spacecraft.Cost Savings: 3D printing can be more cost-effective than traditional manufacturing methods. For example, 3D printing can reduce the number of parts needed to be assembled, resulting in fewer assembly errors and labor costs.Customization: 3D printing allows SpaceX to create customized parts for their rockets and spacecraft, tailored to their specific needs. This is especially important for complex geometries or unique parts that cannot be mass-produced using traditional manufacturing techniques.Overall, 3D printing has given SpaceX a competitive advantage in the aerospace industry by allowing them to rapidly prototype, create lightweight parts, reduce costs, and customize parts to their specific needs. These benefits have allowed SpaceX to innovate faster and bring their products to market more quickly than their competitors.

Explanation:

If you had to make a choice between studies and games during a holiday, you would use the _______ control structure. If you had to fill in your name and address on ten assignment books, you would use the ______ control structure.



The answers for the blanks are Selection and looping. Saw that this hasn't been answered before and so just wanted to share.

Answers

The missing words are "if-else" and "looping".

What is the completed sentence?

If you had to make a choice between studies and games during a holiday, you would use the if-else control structure. If you had to fill in your name and address on ten assignment books, you would use the looping control structure.

A loop is a set of instructions in computer programming that is repeatedly repeated until a given condition is met. Typically, a process is performed, such as retrieving and modifying data, and then a condition is verified, such as whether a counter has reached a predetermined number.

Learn more about looping:
https://brainly.com/question/30706582
#SPJ1

What is the binary of the following numbers
10
6
22
12

Answers

You can use this table to help you!

Answer:

10 = 00001010

6 = 00000110

22 = 00010110

12 = 00001100

What is the binary of the following numbers 1062212

we love silky. she is very honest join this by using conjunction ​

Answers

Answer:

we love silky because she is very honest

Answer:

We love silky because she is very honest.

A is a paid placement that appears in a search engines results page at or near the top of the results

Answers

I wish I was smarter lol

Please assist with the following questions:
2. Many successful game companies have adopted this management approach to create successful and creative video games.
a) Creating a creative and fun workspace for employees
b) Offering free lunches and snacks.
c) Having a good design idea to start with.
d) Having enough material and human resources to work with.

4. The concept of high score was first made popular in which of the following games?
a) Pong
b) Space Invaders
c) Pac-Man
d) Magnavox Odyssey

5. Which of the following people is credited with creating the first successful video game?
a) Al Alcorn
b) Ralph Baer
c) Shigeru Miyamoto
d) Nolan Bushnell

7. Zork featured a tool which allowed players to write commands in plain English called _____.
a) language parser
b) language commander
c) zork speech
d) Babble fish

Answers

Answer:

c. A. D.B.

Explanation:

A chart legend?

A.corresponds to the title of the data series column.
B.provides the boundaries of the chart graphic.
C.is based on the category labels in the first column of data.
D.is used to change the style of a chart.

Answers

A chart legend can be useful in some cases during data process
Change style and f art

3.10 LAB: List basics
Given the user inputs, complete a program that does the following tasks:

Define a list, my_list, containing the user inputs: my_flower1, my_flower2, and my_flower3 in the same order.
Define a list, your_list, containing the user inputs, your_flower1 and your_flower2, in the same order.
Define a list, our_list, by concatenating my_list and your_list.
Append the user input, their_flower, to the end of our_list.
Replace my_flower2 in our_list with their_flower.
Remove the first occurrence of their_flower from our_list without using index().
Remove the second element of our_list.
Observe the output of each print statement carefully to understand what was done by each task of the program.

Ex: If the input is:

rose
peony
lily
rose
daisy
aster
the output is:

['rose', 'peony', 'lily', 'rose', 'daisy']
['rose', 'peony', 'lily', 'rose', 'daisy', 'aster']
['rose', 'aster', 'lily', 'rose', 'daisy', 'aster']
['rose', 'lily', 'rose', 'daisy', 'aster']
['rose', 'rose', 'daisy', 'aster']

Answers

The program is an illustration of Python lists; lists are used to hold multiple values in a variable

The main program

The program written in Python, where comments are used to explain the code is as follows:

#This gets all required outputs

my_flower1 = input(); my_flower2 = input(); my_flower3 = input(); your_flower1 = input(); your_flower2 = input(); their_flower = input()

# This defines my_list and appends the values of my_flower1, my_flower2, and my_flower3

my_list=[my_flower1,my_flower2,my_flower3]

# This defines your_list and appends your_flower1 and your_flower2

your_list=[your_flower1,your_flower2]

# This defines our_list by and concatenates my_list and your_list

our_list = my_list+your_list

#This prints our_list

print(our_list)

# This appends their_flower to the end of our_list

our_list.append(their_flower)

#This prints our_list

print(our_list)

# This replaces my_flower2 in our_list with their_flower

our_list[our_list.index(my_flower2)]=their_flower

#This prints our_list

print(our_list)

#This removes the first occurrence of their_flower from our_list

our_list.remove(their_flower)

#This prints our_list

print(our_list)

#This removes the second element of our_list

our_list.remove(our_list[1])

#This prints our_list

print(our_list)

Read more about python lists at:

https://brainly.com/question/16397886

Suppose that you have a computer with a memory unit of 24 bits per word. In this
computer, the assembly program’s instruction set consists of 198 different operations.
All instructions have an operation code part (opcode) and an address part (allowing for only one address). Each instruction is stored in one word of memory.
1. How many bits are needed for the opcode?
2. How many bits are left for the address part of the instruction?
3. How many additional instructions could be added to this instruction set without
exceeding the assigned number of bits? Discuss and show your calculations.
4. What is the largest unsigned binary number that the address can hold?

Answers

Answer:

a )   The amount of bits required for the opcode

 8 bits

2^8=  256        

 256>198

 We get the next lower number, which is 2^7 = 128 bits, because it is greater than 198. As a result, the operation code necessitates 8 bits.

b)   The number of bits reserved for the instruction's address.

 16 bits

 24-8  =  16

c)  

 65536

2^16  =  65536

 Maximum number =  65535

  2^15 = 32768-1

 =  32767

Explanation:

Page 1. I who invented computer?​

Answers

Charles baggage (picture for more info)
Page 1. I who invented computer?

Which of the following are examples of how a company might use consumer data it had collected? a To decide what types of products it should make. b To decide where to open a new store. c To decide how much to charge for their products. d None of the choices

Answers

Answer:

A. To decide what types of products it should make

Explanation:

Answer:

D. All of the above

in C, Print the two strings, firstString and secondString, in alphabetical order. Assume the strings are lowercase. End with newline. Sample output: capes rabbits

in C, Print the two strings, firstString and secondString, in alphabetical order. Assume the strings

Answers

Answer:

View Images.

Image1  = the code

Image2 = testcase 1

Image3 = testcase 2

Image4 = testcase 3

in C, Print the two strings, firstString and secondString, in alphabetical order. Assume the strings
in C, Print the two strings, firstString and secondString, in alphabetical order. Assume the strings
in C, Print the two strings, firstString and secondString, in alphabetical order. Assume the strings
in C, Print the two strings, firstString and secondString, in alphabetical order. Assume the strings

20 Points! What are some ways to insert a row or column? Check all that apply.

double-clicking on the row or column and clicking Insert Row or Insert Column

right-clicking on the row or column heading and clicking Insert

opening the Page Layout tab, clicking Cells in the Tables group, and clicking Rows or Columns

opening the Home tab, clicking Insert in the Cells group, and clicking Insert Sheet Rows or Insert Sheet Columns

Answers

Answer:

B) right-clicking on the row or column heading and clicking Insert

D) opening the Home tab, clicking Insert in the Cells group, and clicking Insert Sheet Rows or Insert Sheet Columns

Explanation:

Answer:

b and d

Explanation:

• List 2 examples of media balance:

Answers

Answer: balance with other life activities

spending time with family

studying / school work

Explanation:

The way text appear is called its

Answers

Answer:

the way the text appear is called it's formatting

In Python, the ‘+’ operator can be used with numbers and with strings. What is a property that number addition has, but string concatenation does not?

Answers

Answer:

Answered below

Explanation:

The property in number addition that is not found in string concatenation, although both use the '+' operator, is that in number addition, the expression value does not depend on the order of the numeric addition operands. Any order of arrangement of the operands produces the same value when they are added.

This is not so in string concatenation because different orders or the arrangement of different strings on concatenation, produce different results or values. For instance, the concatenation of 'He is a' + 'boy' results in 'He is a boy' whereas reversing the placements of both strings would result in a totally different value. This is not so in number addition where 4 + 2 gives the same value as 2 + 4.

Therefore the use of the '+' operator with string concatenation and with numerical additions produce different expression values where one depends on the order and one does not.

The '+' operator is used to concatenate strings, while it is also used to perform addition of numbers. The difference lies on that order of the string matters in concatenation while ordering does not matter in addition operation.

Concatenation is used to join strings together, with the string on the right hands side coming first and before that on the left hand side.

This isn't the case in addition operation as the arrangement of the numeric values does not matter.

Hence, the difference between string concatenation and addition.

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

Why do schools block literally evrything?

Answers

Don’t know but butter dawg is better than school
Why do schools block literally evrything?

Answer:

I'm wondering the same thing because I'm a pro at cool math games but don't know how to a arithmetic sequence

instruction for a computer to follow​

Answers

Answer:

program/software program

Explanation:

main types are application software and system software

Technician A says tires that are badly worn, mismatched in size or tread condition, or incorrectly inflated can cause brake problems. Technician B says simple inspection and checking with a pressure and a depth gauge can diagnose many tire problems. Who is correct?

Answers

The technicians are both accurate. Badly worn or underinflated tyres can lead to brake issues, and tyre issues are frequently detectable with a quick checkup and some pressure and depth gauge checks.

What's wrong with tyres that aren't the same size?

If you keep using wheels and tyres that aren't compatible, they'll wear down unevenly and might cause issues in the future. The same problems may arise if you decide to drive your car with mismatched wheels. Uneven wear and tear will result from mismatched wheels and tyres.

What is the main reason why tyres wear unevenly?

Uneven tyre wear is typically brought on by poor alignment, excessive or inadequate air pressure, or a worn-out suspension. Understanding the various irregular tyre wear patterns shown below can be useful.

To know more about technicians visit:-

https://brainly.com/question/29486799

#SPJ1

important of microcomputer in some point​

Answers

Answer:

A microcomputer uses memory to store the programs that control its operation, to store data waiting for processing, and to store the results of operations performed by the CPU. Primary memory, or storage, is electronic memory that is directly addressable by the CPU.

Explanation:

brainliest plzzzzzzz

In the workplace, microcomputers have been used for applications including data and word processing, electronic spreadsheets, professional presentation and graphics programs, communications and database management systems.

explain 3 advantages and 3 disadvantages of computers ​

Answers

Answer:

advantage

1: finish tedious tasks faster (writing an essay)

2: the internet (you can learn anything)

3: reduces the use of paper

disadvantage

1: social media (being addictive toxic)

2: decreasing jobs

3: less time for people to interact in person

Explanation:

hiya!!!

advantages:

1. computers make information more accessible
2. they help pass time
3. they store documents and data

disadvantages:

1. information can get leaked
2. costly
3. uses up electricity

How fast can a cable user receive data if the network is otherwise idle? Assume that the user interface is:

(a) 10-Mbps Ethernet (b) 100-Mbps Ethernet (c) 54-Mbps Wireless.

Answers

As long as the network remains idle, and the maximum speed of the cable being used for the network connectivity is 10 megabytes per second, then the cable user can only receive data at the maximum speed of "10 megabytes per second".

What is an Ethernet Cable?

An Ethernet cable is is a type of cale that is sued to connect computers together to ensure that they communicate with one another. It is also called Network Cable.

Thus, it is correct to state that as long as the network remains idle, and the maximum speed of the cable being used for the network connectivity is 10 megabytes per second, then the cable user can only receive data at the maximum speed of "10 megabytes per second".

Learn more about Ethernet cable at
https://brainly.com/question/14788363
#SPJ1

Other Questions
why is it important to analyze your audience when youre preparing a message? If it takes 909 digits to number the pages of a book starting with page 1, how many pages are in the book? Read the excerpt from Suffragists' "Great Demand" Banner. The effort picked up steam after the Civil War, when debate over the Fifteenth Amendment to the U.S. Constitution, which extended the vote to African American men, split the movement. Some leaders, like Susan B. Anthony, Elizabeth Cady Stanton, and Sojourner Truth, refused to endorse the amendment, believing it should also give women the vote. Others, such as Julia Ward Howe, Lucy Stone, and long-term womens rights ally Frederick Douglass, argued that if black men were enfranchised, their support would help women achieve their goal. The conflict fractured the womens movement, with some focusing on obtaining womens suffrage state by state, others aiming at achieving universal suffrage at the federal level. Chronological structure is used in this passage to A. describe the personalities of leaders in the womens suffrage movement.B. illustrate the impact of the Fifteenth Amendment on the suffrage movement. C. explain the effect of the Civil War on the debate over the Fifteenth Amendment. D. compare the challenges of leaders supporting African American suffrage and womens suffrage what is corruption for class 8 The beneficiaries of the application of an ideology of Racism Question 3. The smallest digit bywhich *' should be replaced in710*95, so that the number formed isdivisible by 3 is: the government should be led by a monarch with legitimacy from god is conservative or liberal Which set of ordered pairs could represent a function? (12, 3), (12, 0), (12, 8), (12, 7) (8, 3), (4, 9), (1, 1), (4, 2) (5, 6), (6, 6), (7, 6), (8, 6) (5, 5), (7, 7), (9, 9), (11, 12)C and D both look correct??? Answer these problems Correctly-1 1/5 x 32 1/4 x 1/91/3 x 1 1/22 1/2 x 3 1/3Answer For brainliest Charlotte throws a paper airplane into the air, and it lands on the ground. Which best explains why this is an example of projectile motion?A). The paper airplanes motion is due to horizontal inertia and the vertical pull of gravity. B). A force other than gravity is acting on the paper airplane.C). The paper airplanes motion can be described using only one dimension.D). A push and a pull are the primary forces acting on the paper airplane. Um... Does anyone know? Translate the formula in names . What is the resistance of a blub when the voltage across is 6 V and the current is 0.2A? using f '(x) = lim h0 f(x + h) f(x) h with x = 0, we have f '(0) = lim h0 f(0 + h) f(0) h What are the steps to answer this question 5x60=5xtens ind the general solution of the system of differential equations d 9 -4 dt* 5 5 Hint: The characteristic polynomial of the coefficient matrix is 12 142 +65. The critical factor that distinguishes anthropology from other fields of study is:a) Its emphasis on rigorous experimentation and analysis of data. b) Its exclusive focus on non-western cultures. c) Its use of theories of biological evolution to explain human behavior. d) Its interest in describing humankind throughout time and in all parts of the world. e) Its focus on the discovery of a single human nature. Helpppppppppp plzzzzz FILL IN THE BLANK. Activities that generate external costs will likely be carried out at levels that _____ those that would be efficient.are less thancompete withare equal toexceed Which statement best describes the role of the skeleton?O provides excretionO gives shape and support to the bodyO helps our heart to beatO gets rid of solid waste