Write a program Election that computes the tally in a write-in election, and announces the winner. Since the votes are write-in, there is no pre-determined set of candidates. Whoever appears the most in the votes is the winner. The user enters the individual votes, one vote per line, and ends entering with typing -1 or an empty line. To compute the tally, the program uses two arrays, a String [ ] variable (names), and an int [ ] variable (count). Upon receiving a single vote, the program checks if the name on the vote appears in names, and if it does, the program adds 1 to the value of the element in count. If the name does not appear in names, the program extends both arrays by one element, stores the name in names at the last position and store 1 in count at the last position. In this manner, the two arrays will have the same lengths. The initial length is 0 for both arrays. Below is an example of how the program may runplease I need to demonstrate the code,I need some comments next to every single line

Answers

Answer 1

The election program illustrates the use of ArrayLists, loops and conditional statements.

ArrayLists are resizable arrays, while loops and conditional statements are used to perform repetitions and make decisions, respectively.

The election program written in Java, where comments are used to explain each line is as follows:

import java.util.*;

public class Main {

 public static void main(String[] args) {

     //This creates a Scanner object

   Scanner input = new Scanner(System.in);

   //This creates a string ArrayList for the names of the candidates

   ArrayList<String> names = new ArrayList<String>();

   //This creates an Integer ArrayList for the vote count of the candidates

   ArrayList<Integer> votes = new ArrayList<Integer>();

   //This declares name as string

   String name;

   //This gets input for the name of the candidates

   name = input.nextLine();

   //This is repeated until the user enters "-1"

   while (!"-1".equals(name)){

       //If name is in the list,

       if(names.contains(name)){

             //This gets the index of the name  

             int pos =names.indexOf(name);

             //This calculates the number of votes

             Integer value = votes.get(pos)+1;  

             //This adds the vote to the vote ArrayList

             votes.set(pos, value);

       }

       //If otherwise

       else{

           //This adds the candidate name to the name ArrayList

           names.add(name);

           //This adds 1 as the vote of the candidate to the vote ArrayList

           votes.add(1);

       }

       //This gets input for the name of another candidates

       name = input.nextLine();

   }

   //This prints the name of the election winner

   System.out.println("Winner : " +names.get(votes.indexOf(Collections.max(votes))));

 }

}

Read more about ArrayLists, loops and conditional statements at:

https://brainly.com/question/19504703


Related Questions

how to connect apple pencil 2 to ipad 8th generation?

Answers

Answer:

That pencil doesn't adjust to that ipad because those two aren't compatible

Explanation:

Which is an example of a crime that might occur in an e-commerce transaction?
A customer’s new purchase is stolen after delivery.
A customer’s credit card information is stolen and used by someone else.
A customer can easily take merchandise without having to pay for it.
A customer pays an unfair price for the merchandise she bought.

Answers

Answer:

A costumers credit card information is stolen and used by someone else.

Answer:

A customer's credit card information is stolen and used by someone else.

Explanation:

Since e-commerce is online sales, the customer can not take merchandise without having to pay for it.

Also the customer can search for the best price.

When you change cell contents to italics, you are changing the cell's alignment, True or False?

Answers

False. Changing cell contents to italics affects the formatting of the text within the cell, but it does not affect the alignment of the cell itself.

Changing the alignment of a cell involves moving the contents of the cell to a different position within the cell, such as centering the text or aligning it to the left or right side of the cell. On the other hand, changing the font style to italics affects the appearance of the text itself, making it slanted and emphasizing it. These two formatting options are separate and can be used independently of each other to customize the appearance of the cell and its contents.

learn more about cell here:

https://brainly.com/question/30466618

#SPJ11

The series of steps that describe exactly what each portion of a program is supposed to do is known as a(n)?

Answers

The series of steps that describe exactly what each portion of a program is supposed to do is known as an Algorithm.

What is algorithm and how it works?

An algorithm is known to be a kind of a coded formula that is said to be written into software and it is one if triggered can make the tech to take some  action to handle a problem.

Note that Computer algorithms work through the use of input and output and as such, The series of steps that describe exactly what each portion of a program is supposed to do is known as an Algorithm.

Learn more about Algorithm from

https://brainly.com/question/15802846
#SPJ1

assume that for a given program 70% of the executed instructions are arithmetic, 10% are load/store, and 20% are branch. (a) given this instruction mix and the assumption that an arithmetic instruction requires 2 cycles, a load/store instruction takes 6 cycles, and a branch instruction takes 3 cycles, find the average cpi. (b) for a 25% improvement in performance, how ma

Answers

The answer of this questions are: instruction mix and the assumption that an arithmetic instruction requires as follows:

What is a Program?

A program (also known as software) is a set of instructions that tells a computer what to do. These instructions can be written in various programming languages, such as Python, Java, C++, and many others.

(a) To find the average CPI (cycles per instruction), we need to multiply the percentage of each instruction type by the number of cycles it takes, sum the results, and then divide by the total percentage of instructions:

CPI = (0.7 x 2) + (0.1 x 6) + (0.2 x 3) = 1.9 cycles per instruction

So the average CPI for the given instruction mix is 1.9.

(b) To achieve a 25% improvement in performance, we need to reduce the CPI by 25%. We can do this by reducing the number of cycles for each instruction type by the same percentage:

Arithmetic instructions: 2 cycles x 0.75 = 1.5 cycles

Load/store instructions: 6 cycles x 0.75 = 4.5 cycles

Branch instructions: 3 cycles x 0.75 = 2.25 cycles

Now we can calculate the new average CPI using the same formula as before:

New CPI = (0.7 x 1.5) + (0.1 x 4.5) + (0.2 x 2.25) = 1.425 cycles per instruction

So to achieve a 25% improvement in performance, we need to reduce the average CPI from 1.9 to 1.425.

To more about Software visit:

https://brainly.com/question/30589904

#SPJ1

a network technician wants to upgrade the company's hub to avoid collisions. which solution would help the technician accomplish this to the fullest extent?

Answers

A switch is a device used in electric engineering that has the ability to connect or disconnect a circuit's conducting line, halting the flow of electricity, or rerouting it to another conductor.

Any tool used to stop the passage of electrons in a circuit is known as an electric switch. Essentially binary devices, switches can only be either fully on (closed) or fully off (open). We will look at a few of the many different types of switches that exist in this chapter. The primary switches are safeguards for secure machine control and basic switching devices. For instance, they can be used as repair switches to swiftly shut down big machines and systems so that upkeep work can be done securely.

Learn more about electric here-

https://brainly.com/question/12990974

#SPJ4

Whenever you progress to a new level, score a goal, solve a puzzle, shoot an alien, or jump over an obstacle, you are experiencing the mechanics of the game.
Group of answer choices

True

False

Answers

The answer is true because it

Answer:

False

Explanation:

Did on Edge

Who do you think would win a war? USA or Russia?

Answers

Answer:

I think the USA will win because they are much more powerful than the Russia

Explanation:

Answer:

USA

Explanation:

USA HAS MORE FIGHTING EXPERIENCE THAN RUSSIA

One of the requirements of a computer that can support artificial intelligence (Al) is to a. derive solutions to problems by examining all possible outcomes b. be able to deal with new situations based on previous learning
c. communicate non-verbally with humans d. None of the listed answers for this question are correct e. anticipate human needs and respond to them

Answers

Artificial intelligence (AI) is the study of creating computer programs that can work on intelligent tasks such as recognizing speech, making decisions, and performing tasks that are typically completed by humans.

One of the requirements of a computer that can support artificial intelligence (Al) is the ability to deal with new situations based on previous learning. It is possible for AI to be trained to learn from past experiences, recognize patterns, and use that knowledge to solve new problems. In other words, AI can analyze data sets and learn from those data sets to make predictions based on that learning. This is often referred to as machine learning. The process involves the creation of a model, and then the model is trained on a large dataset. The model can then use that training to make predictions about new data that it has not seen before.
To support AI, a computer must be able to perform these tasks in real-time. This is where the speed of the computer comes into play. AI applications often require processing a lot of data in a short period. As such, the computer should have fast processors, large memory, and storage capacity, and efficient cooling systems.
Another requirement for a computer to support AI is that it should be able to anticipate human needs and respond to them. This can be achieved through Natural Language Processing (NLP). NLP is an AI application that allows the computer to understand human language and respond accordingly. Through NLP, the computer can anticipate the needs of the user and provide the necessary information or service.
In conclusion, a computer that can support AI should have the ability to learn from past experiences, analyze data sets, and make predictions based on that learning. Additionally, the computer should have fast processors, large memory, and storage capacity, and efficient cooling systems. Lastly, the computer should be able to anticipate human needs and respond to them through Natural Language Processing.

Learn more about programs :

https://brainly.com/question/14368396

#SPJ11

HELP I HAVE A D RN PLEASE
Use the drop-down menus to describe how to encrypt a database with a password.

1. In Access, click Open on the File tab.

2. Select the database.

3. Click the drop-down arrow to the right of Open, and click
.

4. Click the File tab.

5. Click
, and select Encrypt with Password.

6. Enter a password when you are prompted
. Click OK.

7. Close and reopen the database.

8. To open the database again, you will need to
.

Answers

Answer:

1. Open Exclusive

2. Info

3. twice

4. enter a password

Explanation:

In Access, click Open on the File tab. Open Exclusive or backstage View. Select the database by. clicking Info and Click the File tab twice and enter a password

Which view is opened when File tab is clicked?

The Backstage View is said to be opened. Note that one can use the Backstage through the clicking of the "File" tab that can be found on the top-left hand side of the system application window.

Note that In Access, click Open on the File tab. Open Exclusive or backstage View. Select the database by. clicking Info and Click the File tab twice and enter a password.

Learn more about password from

https://brainly.com/question/17174600

#SPJ2

Creates a table in MS Excel with each of the following accounts and indicates their effect on the expanded accounting equation The 1. in February 2020, Miguel Toro established a home rental business under the name Miguel's Rentals. During the month of March, the following transactions were recorded: o To open the business, he deposited $70,000 of his personal funds as an investment. He bought equipment for $5,000 in cash. O Purchased office supplies for $1,500 on credit. He received income from renting a property for $3,500 in cash. He paid for utilities for $800.00. He paid $1,200 of the equipment purchased on credit from the third transaction. O He received income from managing the rent of a building for $4,000 in cash. He provided a rental counseling service to a client for $3,000 on credit. He paid salaries of $1,500 to his secretary. He made a withdrawal of $500.00 for his personal use. O 0 0 O O 0 00

Answers

To create a table in MS Excel and indicate the effect of each account on the expanded accounting equation, you can follow these steps:

1. Open Microsoft Excel and create a new worksheet.

2. Label the columns as follows: Account, Assets, Liabilities, Owner's Equity.

3. Enter the following accounts in the "Account" column: Cash, Equipment, Office Supplies, Rental Income, Utilities Expense, Accounts Payable, Rental Counseling Service, Salaries Expense, Owner's Withdrawals.

4. Leave the Assets, Liabilities, and Owner's Equity columns blank for now.

Next, we will analyze each transaction and update the table accordingly:

Transaction 1: Miguel deposited $70,000 of his personal funds as an investment.

- Increase the Cash account by $70,000.

- Increase the Owner's Equity account by $70,000.

Transaction 2: Miguel bought equipment for $5,000 in cash.

- Increase the Equipment account by $5,000.

- Decrease the Cash account by $5,000.

Transaction 3: Miguel purchased office supplies for $1,500 on credit.

- Increase the Office Supplies account by $1,500.

- Increase the Accounts Payable (Liabilities) account by $1,500.

Transaction 4: Miguel received income from renting a property for $3,500 in cash.

- Increase the Cash account by $3,500.

- Increase the Rental Income account by $3,500.

Transaction 5: Miguel paid $800 for utilities.

- Decrease the Cash account by $800.

- Decrease the Utilities Expense account by $800.

Transaction 6: Miguel paid $1,200 of the equipment purchased on credit.

- Decrease the Accounts Payable (Liabilities) account by $1,200.

- Decrease the Equipment account by $1,200.

Transaction 7: Miguel received income from managing the rent of a building for $4,000 in cash.

- Increase the Cash account by $4,000.

- Increase the Rental Income account by $4,000.

Transaction 8: Miguel provided a rental counseling service to a client for $3,000 on credit.

- Increase the Rental Counseling Service account by $3,000.

- Increase the Accounts Payable (Liabilities) account by $3,000.

Transaction 9: Miguel paid $1,500 salaries to his secretary.

- Decrease the Cash account by $1,500.

- Decrease the Salaries Expense account by $1,500.

Transaction 10: Miguel made a withdrawal of $500 for his personal use.

- Decrease the Cash account by $500.

- Decrease the Owner's Equity account by $500.

Now, you can calculate the totals for the Assets, Liabilities, and Owner's Equity columns by summing the respective account values. The Assets column should include the totals of Cash, Equipment, and Office Supplies. The Liabilities column should include the total of Accounts Payable. The Owner's Equity column should include the total of Owner's Equity minus Owner's Withdrawals.

By creating this table and updating it with the effects of each transaction, you can track the changes in the expanded accounting equation (Assets = Liabilities + Owner's Equity) for Miguel's Rentals during the month of March.

To know more about MS Excel, visit

https://brainly.com/question/30465081

#SPJ11

Which of the following is constantly changing and advancing?

Innovation

Cell phones

Technology

Computers

Answers

Answer:

Technology

Explanation:

This is because Cell phones ,Innovation ,and Computers ARE changing although they are in the same group of "Technology" so it would be technology.

Any questions?

How do businesses benefit from digital networks?
A.Internet access for employees
B.Ability to connect multiple laptops
C.Protection from viruses
D.Software users are familiar with

Answers

The way in which businesses benefit from digital networks is: B. Ability to connect multiple laptops.

What is a digital network?

A digital network can be defined as a social network that is designed and developed through the use of digital technologies that incorporates both digital transmission and digital switching.

This ultimately implies that, a digital network can support the digital transmission and digital switching of all the following aspects and components of a network:

VoiceVideoDataNetwork services.

In conclusion, digital networks avail employees working in a business firm an ability to connect multiple laptops all at the same time (simultaneously).

Read more on a  digital media and networks here: https://brainly.com/question/26174462

#SPJ1

Please help explain Loops question. I will give brainliest.

Please help explain Loops question. I will give brainliest.

Answers

Answer:

And 1 and 2 and 3

Explanation:

It is asked to display the 'and' every time, and the count is equal to 1 plus the previous count starting at zero, so it runs 3 times

A(n) _____ is a computerized system by which subscribers are able to communicate to all other subscribers by sending a transmission to one address

Answers

Answer: Listerv

Explanation:

I use the wrap text feature in Excel daily. What is the difference in how this behaves or is used in Excel versus Word? Please explain in detail the differences and similarities.

Answers

The wrap text feature is an essential tool used to format text, particularly long texts or data within a cell in Microsoft Excel. In this question, we need to explain the difference between how wrap text behaves in Microsoft Excel versus how it is used in Microsoft Word.

Wrap Text in Microsoft Excel: Wrap text in Excel is a formatting option that is used to adjust text or data within a cell. When the text entered exceeds the size of the cell, it can be hard to read, and this is where wrap text comes in handy. Wrap text in Excel automatically formats the data within the cell and adjusts the text size to fit the cell's width. If a cell contains too much data to fit in the column, the cell's text wraps to the next line within the same cell.

To wrap text in Excel, follow these simple steps:

Select the cell or range of cells containing the text that needs wrapping. Right-click on the selected cell and click Format Cells. In the Format Cells dialog box, click on the Alignment tab. Click the Wrap text option and then click OK.

Wrap Text in Microsoft Word: In Microsoft Word, the Wrap Text feature is used to format text around images and graphics. It is used to change the way the text flows around the image, allowing users to position images and graphics in the document. Wrap Text in Microsoft Word does not adjust the font size of the text to fit the width of the cell like in Excel.

To wrap text in Microsoft Word, follow these simple steps:

Insert the image in the document. Select the image and go to the Picture Format tab. Click on Wrap Text, and you can choose how you want the text to wrap around the image.

The main difference between the use of Wrap Text in Microsoft Excel and Microsoft Word is that Wrap Text in Excel is used to format long data and adjust text size to fit the width of the cell while Wrap Text in Microsoft Word is used to format text around images and graphics.

To learn more about wrap text, visit:

https://brainly.com/question/27962229

#SPJ11

If your company uses a non-price competition strategy what should you focus on
A. lowering prices
B. differentiation
C. creating direct competitors
D. the public sector

Answers

B- differentiation

nonprice competition strategy refers to strategy to win a business competition that does not involved lowering price of the product.

Businesses mostly do this using differentiation strategy, which is increasing the different variety of product that they sell in the market.

Hawaii and japan are examples of islands made by? You have to write it.

Answers

Answer:

Volcanic activity

PB Sample Budget Workshops.xlsx - Excel Tell me what you want to do... o x Sign in Share File Home Insert Page Layout Formulas Data Review View X Σ AutoSum - Calibri 11 A E' Wrap Text General HA HA Fill - Paste BIU Merge & Center - $ % 08 Insert Delete Format Clear Conditional Format as Cell Formatting Table Styles Styles Sort & Find & Filter Select Editing Clipboard Font Alignment Number Cells A3 X fo Workshop ID A B с D E F G H 1 J K L M N O P 0 R S T 1 Precision Building 2 Workshop Cost Per Person 3 Workshop ID Type 4 01-KT Kitchen 5 02-BT Bathroom 03-BD Bedroom 7 04-LD Laundry Room 8 05-LR Living Room/Great Room 9 06-GR Game Room 10 07-CL Closet Intervention 11 08-WL Wall Décor Lighting 12 Cost for each participant $ 25 $ 20 $ 20 $ 10 S 25 $ 15 $ 10 $ 15 Number of participants Total cost 41 $ 1,025 33 $ 660 19 $ 380 15 $ 150 25 $ 625 13 $ 195 28 $ 280 14 $ 210 TOTAL COSTS $ 3,315 Task Instructions 13 Add the Sheet Name header element to the left header section, and the text Page_ followed by the Page Number header element to the right header section. Click cell F1 to deselect the header to view the results. Workshops + Ready Ask me anything 0 o ^ * » 10:20 AM 1/1/2020

Answers

For Header in the Excel, Go to the Insert tab > Header & Footer.

What is Microsoft Excel?

Microsoft developed Microsoft Excel, a spreadsheet, for Windows, macOS, Android, and iOS. It has calculation or computation capabilities, graphing tools, pivot tables, and the Visual Basic for Applications macro programming language.

For Sheet Name, select the left header section > Select Sheet Name(From header & footer elements)

For Page Number, select the right header section > Select Page Number(From header & footer elements) > write Page_ before & > Then click cell F1 to deselect the header to view the result.

Learn more about Excel on:

https://brainly.com/question/24749457

#SPJ1

An element that does not have a closing tag is called
a. computer
b. computer
c. computer
d. Computer

Answers

Answer:

computer

Explanation:

computer computer computer

Write a program using integers usernum and x as input, and output usernum divided by x three times.

Answers

Answer:

Hopefully This Will Help

Explanation:

If the input is:

2000

2

Then the output is:

1000 500 250

5.a. what is the mtu of a network? explain why fragmentation is necessary to accommodate heterogeneous networks with different mtus.

Answers

The Maximum Transmission Unit (MTU) of a network refers to the largest size of data packet that can be transmitted over the network.

MTU is usually measured in bytes and can vary depending on the type of network and the devices being used. For example, Ethernet networks typically have an MTU of 1500 bytes, while some VPNs may have a lower MTU of 1200 or 1400 bytes.

Fragmentation is necessary to accommodate heterogeneous networks with different MTUs because it allows larger data packets to be broken down into smaller pieces (fragments) that can be transmitted across networks with lower MTUs.

To know more about Maximum Transmission Unit visit:-

https://brainly.com/question/15825176

#SPJ11

Can I use a charger that has 65w on my dell inspiron 15 5570 that normally takes 45w? The input of my laptop is 19.5V---3.31A/3.34A, and the output of the charger is 19.5v----3.34A. Write the answer in 3-5 sentences. (5 points)

Answers

Answer:

Yes, as the values are very similar and will generally be fine.

Explanation:

In general, it is safe to use a charger with a higher wattage than the one specified for your laptop as long as the voltage and amperage ratings match or are very close. In this case, since the input of the Dell Inspiron 15 5570 is 19.5V with an amperage rating of 3.31A/3.34A, and the charger you are considering has an output of 19.5V with an amperage rating of 3.34A, these values are very close and it should be safe to use the higher-wattage charger. However, using a charger with a much higher wattage than the one specified for your laptop, or one with significantly different voltage or amperage ratings, could potentially damage your laptop or cause a safety hazard.

1. What are three factors that influence whether a story is
newsworthy? Describe each factor and how it influences
newsworthiness.
HELP ASAP

Answers

Answer:

Three factors that influence how newsworthy a story is, is timing, importance, and social interest

a type of event log that gives the system administrator information about a specific problem and its causes, and might also suggest how to solve the problem is?

Answers

These logs help administrators diagnose and troubleshoot problems, identify patterns or trends, and implement appropriate solutions to ensure system stability and performance.

What is the purpose of a troubleshooting log in system administration?

A type of event log that provides the system administrator with detailed information about a specific problem and its underlying causes, and often includes suggestions on how to resolve the issue is known as an error log.

Error logs are generated by computer systems and software applications to track and record errors, warnings, and other significant events that occur during system operation.

Learn more about administrators diagnose

brainly.com/question/14390056

#SPJ11

how do you take a screen shot on a chrome book

Answers

Answer:

hold ctrl + the square box thing above the six

Explanation:

Answer:

Yuh its ctrl shift and f5 if you want to crop what you are screen shotting

Explanation:

A 16 x 2 audio console has (A) 16 inputs and 2 outputs (B) 16 slide faders and 2 monitor systems (C) 16 VU meter

Answers

Answer:

(A) 16 inputs and 2 outputs.

Explanation:

An audio signal can be defined as a representation of sound, either as an analog or digital signals. An analog audio signal refers to a continuous signal that is represented by a changing level of quantity such as voltage with respect to time. sequence of bits such as 16kbps, 32kbps, 64kbps, 96kbps, 128kbps, 196kbps, and 320kbps. Kbps means kilobits per seconds.

A speaker can be defined as an electronic output device that is typically used for the conversion of an electromagnetic wave to sound wave.

Basically, this conversion is done through the help of a hardware electronic component known as transducers.

The main purpose of a speaker is to produce an audio output and as such avail the computer users an ability to hear or listen to sounds.

Similarly, an audio console is an electronic device that is designed for combining or mixing audio signals received from multiple audio sources and sends them out as one.

Thus, a 16 x 2 audio console has 16 inputs for receiving sixteen (16) audio signals and sends them out as 2 outputs.

How to fix unable to verify that you have access to this experience. please try again later.?

Answers

If you receive the warning "Unable to verify that you have access to this experience," this means that you do. You can attempt the following to resolve the problem: Your internet connection should be checked.

An individual's participation in or living through an event or activity is referred to as having a "experience." In a broad sense, experiences might range from individual activities and adventures to possibilities for learning or employment. A person's views, perceptions, and values might change as a result of experiences. They can have either positive or negative impacts, and they can teach us important lessons that we can apply to our future undertakings. Experiences in the context of contemporary technology can include virtual or augmented reality simulations, games, or applications that provide the user with an interactive and immersive world. Such experiences are redefining how individuals interact with their environment and are becoming more and more common in a variety of disciplines, from education to entertainment.

Learn more about experience here:

https://brainly.com/question/11256472

#SPJ4

pls help
Question 2 (1 point)
True or false: when you use someone's copyrighted work in something you are
selling, you only have to cite them.

Answers

The given statement of copyrighted work is false.

What do you mean by copyright?

A copyright is a type of intellectual property that grants the owner the exclusive right to copy, distribute, adapt, display, and perform a creative work for a specific period of time. The creative work could be literary, artistic, educational, or musical in nature. The purpose of copyright is to protect the original expression of an idea in the form of a creative work, not the idea itself. A copyright is subject to public interest limitations, such as the fair use doctrine in the United States.

When you use someone's copyrighted work in something you are selling, you must get their permission first.

To learn more about copyright

https://brainly.com/question/357686

#SPJ13

3. What is the value of a 4-band resistor which has the first band - Green, the
second band - Blue, the third band- orange, the fourth band - Gold?
A. 56K + 10% B. 56K + 5%
C. 5.6K + 5%
D. 56K + 2%​

Answers

Answer:

56000 with a tolerance of 5%

Explanation:

5 6 + 3 zeros

3 is orange so that means you add 3 zeros when the orange band is present in the third position.

Green is 5

Blue is 6

Gold in the 4th band is the % tolerance. Gold is a 5% tolerance which mean that the real value is 5% either side of 56000/

The answer is B

Other Questions
enzymes are an example of which main class of organic compounds.(carbohydrates, lipids, proteins, or nucleic acids Receptor-mediated endocytosis is the mechanism for transport of:. To create a confidence interval from a bootstrap distribution using percentiles, we keep the middle values and chop off a certain percent from each tail. (a) What percent of values must be chopped off from each tail for a 95% confidence interval? (b) If the bootstrap distribution contains values for 1000 bootstrap samples, how many should be chopped off at each end to produce a 95% confidence interval? Paul exerts a force of 375 N to pull a rope 4.20 m. The rope is attached to a block and tackle (A system of multiple pulleys) which lifts a 1345 N weight to a height of 0.975 M above the floor.A: How much work does Paul do?B: What is the work done on the object by the block and tackleC: What is the mechanical advantage of the block and tackleD: How efficient is the system? What creates tone in a piece of writing? Identify the tone (or tones) of this passage. Explain how the tone(s) is created, providing at least two examples from the passage and explaining how each contributes specifically to the tone(s) you identified. Your response should be a paragraph of 57 sentences.[1] After earning a few dollars working on my brother-in law's farm near Portage [Wisconsin], I set off on the first of my long lonely excursions, botanising in glorious freedom around the Great Lakes and wandering through innumerable tamarac and arbor-vitae swamps, and forests of maple, basswood, ash, elm, balsam, fir, pine, spruce, hemlock, rejoicing in their bound wealth and strength and beauty, climbing the trees, revelling in their flowers and fruit like bees in beds of goldenrods, glorying in the fresh cool beauty and charm of the bog and meadow heathworts, grasses, carices, ferns, mosses, liverworts displayed in boundless profusion.[2] The rarest and most beautiful of the flowering plants I discovered on this first grand excursion was Calypso borealis (the Hider of the North). I had been fording streams more and more difficult to cross and wading bogs and swamps that seemed more and more extensive and more difficult to force one's way through. Entering one of these great tamarac and arbor-vitae swamps one morning, holding a general though very crooked course by compass, struggling through tangled drooping branches and over and under broad heaps of fallen trees, I began to fear that I would not be able to reach dry ground before dark, and therefore would have to pass the night in the swamp and began, faint and hungry, to plan a nest of branches on one of the largest trees or windfalls like a monkey's nest, or eagle's, or Indian's in the flooded forests of the Orinoco described by Humboldt.What creates tone in a piece of writing? Identify the tone (or tones) of this passage. Explain how the tone(s) is created, providing at least two examples from the passage and explaining how each contributes specifically to the tone(s) you identified. Your response should be a paragraph of 57 sentences. Where does he splashdown? In the movie hidden figures. its 12pm I cant do this anymore, help 2) write a linear function that passes through point ( 3, 6) and is perpendicular to Y=2X-1. The resistivity of the material of a wire is 1. 76 10-8 m. if the diameter of the wire is 2 10-3 m and its length is 2 m, what is its resistance? What are three ways that the proximity to water affects climate?Please answer quickly!No links please! can some one list the inventions of the piano? when the economy is overheating and policymakers pursue contractionary fiscal policy, they express willingness to trade off _________ output for a ________ price level. a diminishing marginal rate of substitution is a general tendency for a person to grantly is creating a design for a sitting room off his client's master bedroom. he plans to use a few chairs, an end table, and some rugs to create a cozy space. how close should grantly place the chairs? How does Douglass, in the Narrative of the Life of FrederickDouglass, try to change what his readers believe about what itmeans to be dedicated to the American idea that "All men arecreated equal"? what is the correct sequence for adjusting an m240s rear sight in the vertical position? Which component present in plasmids such as pUC19 specifically allows for the control of the activation of both the lacZ and the T7 phage RNA polymerase genes in bacteria What is the fastest way to copy the format from one cell to multiple other cells? Double-click on the Format Painter. Single-click on the Format Painter. Use Copy and Paste commands. Use Cut and Paste commands. An investor decides to invest $10,000 in the risk free asset, and $20,000 in the market portfolio. What is the beta of this portfolio?. If the volume of the pyramid shown is 12 centimeters cubed, what is its height?