(a) Willow has created a hangman program that uses a file to store the words the program can select from. A sample of this data is shown in Fig. 3.

Fig. 3
crime, bait, fright, victory, nymph, loose.

Show the stages of a bubble sort when applied to data shown in Fig. 3.

(b) A second sample of data is shown in Fig. 4.

Fig. 4.
amber, house, kick, moose, orange, range, tent, wind, zebra.

Show the stages of a binary search to find the word "zebra" when applied to the data shown in Fig. 4.

Answers

Answer 1

(a) A bubble sort applied to the data in Fig. 3 produces these stages:

Loose, crime, bait, fright, victory, nymph

Crime, loose, bait, fright, victory, nymph

Bait, crime, loose, fright, victory, nymph

Fright, bait, crime, loose, victory, nymph

Victory, fright, bait, crime, loose, nymph

Nymph, victory, fright, bait, crime, loose.

(b) When a binary search is conducted in order to find the word "zebra" in the data in Fig. 4, the following yield occurs:

The search begins by looking at the list's middle item, which is "orange".

Hope to explain the bubble sort

Since "zebra" comes after "orange" alphabetically, the search continues amongst the second half of the list.

The centermost item on this narrowed down list proves to be "tent", from there, it is deduced that "zebra" must go after "tent" alphanumerically.

Likewise, the process is repeated for the reminder of the sequence.

Moving forward, the search encounters "wind" in its midst, again concluding that zebra has to appear subsequently.

Finally, when observing the midpoint of the remainder, "zebra" is pinpointed as the desired result.

Learn more about bubble sort on

https://brainly.com/question/30395481

#SPJ1


Related Questions

what is the best programming language

Answers

Answer:

Ther are 8 best programming language :

• Javascript

• Swift

• Scala

• Go

• Python

• Elm

• Ruby

• C#

Rick is pursuing an undergraduate degree in electronics engineering. He aspires to be a robotics software engineer. Which topic in robotics should Rick be aware of?

Answers

Options:

A.  database programming

B.  Embedded C

C.  testing software

D.  ABET

Answer:

B.  Embedded C

Explanation:

Remember, many robotic systems  make use of embedded systems, and one important programming language used is the C (Embedded C) Programming language.

Hence, since many hardware components can be programmed using C, it would therefore be necessary for Rick to be aware of Embedded C.

Assignment 1
Q: In this course, you will be creating an advertising campaign
for an existing product or company-you will not be creating
a new product or company.
An advertising campaign Is created to

Answers

An advertising campaign is created to make a product, service, or brand more popular among the target audience. Its primary aim is to persuade or encourage a specific group of people to buy or take some action toward a product, service, or brand.

In this course, you will be creating an advertising campaign for an existing product or company; you will not be creating a new product or company.

The advertising campaign includes a series of coordinated marketing activities that help to achieve specific business objectives.

These activities can include various forms of media such as print, television, radio, online, and social media.

The advertising campaign is generally created by a team of creative professionals who work to develop a message that is engaging, relevant, and persuasive.

The advertising campaign generally includes a theme or tagline, creative visuals, a target audience, a unique selling proposition, and a specific call to action.

Read more about An advertising campaign.

https://brainly.com/question/11698706

#SPJ11


Write the role of UPS and spike guard in terms of power protection.​

Answers

Answer:

It allows for safe and orderly shutdown of the Computer and Other Connected devices or equipments attached to It.  It can be used as an immediate backup during power cut or failure.

Explanation:

The role of the UPS and spike guard in power protection is absorption of power surges and fluctuations.

The spike guard is a device used to protect electrical equipments from fluctuations and surges.

The UPS is a device used to provide power backup been electrical power drops or fails to a certain unacceptable voltage level.

Role of UPSIt provides steady power to equipment during power failureIt absorbs power surges.

Role of spike guardIt protects electrical equipments from power fluctuationsIt also protects from power surges.

Therefore, the role of the UPS and spike guard in power protection is absorption of power surges and fluctuations.

Learn more about Uninterrupted power supply here:

https://brainly.com/question/7850680

#SPJ2

Cloud computing revolutionized software provision, creating unprecedented levels of flexibility for modern organizations. What is one of the biggest organizational risks associated with the shift to the cloud? a. Lower hardware costs b. Increased options for software solutions c. Business units provision software independently and decrease IS governance. d. Servitized software options for business functionality.

Answers

One of the biggest organizational risks that is associated with the shift to the cloud include the following: d. Servictized software options for business functionality.

What is cloud computing?

In Computer technology, cloud computing is a type of computing service that requires the use of shared computing resources over the Internet, rather than the use of local servers and hard drives.

Generally speaking, cloud computing is a type of technology which avail end users an opportunity to access software applications, back up, and store their files (documents), including performing tasks without the use of additional software applications or servers.

In this context, we can reasonably infer and logically deduce that servictized software options poses a big organizational risk for business functionality operating on the cloud.

Read more on cloud computing here: brainly.com/question/17247526

#SPJ4

What is 4991 rounded to the nearest thousand

Answers

Answer:

5000

Explanation:

Answer: 5000

Explanation:

This is the answer because of the nine’s.

Yelena has created timings within her slide show, and she wants to verify that each slide has the correct timing. In which view in PowerPoint can she do this? a. Normal view b. Outline view c. Slide Master view d. Slide Sorter view

Answers

Yelena has created timings within her slide show, and she wants to verify that each slide has the correct timing in the Slide Sorter view in PowerPoint.

The correct answer to the given question is option d.

Viewing the Slide Show in Power Point.The default view of the presentation is in Normal view. In this view, we can add content and make modifications to the slides. However, we can also view the slides in various other ways. Let's have a look at each view:

Normal view: This view is the default view and is the view in which we can add and modify the slide content. We can also add and modify slide animations and transitions here.

Outline view: In this view, we can view the text content of the presentation in outline form, which makes it easy to organize the presentation.

Slide Sorter view: This view allows us to view all the slides in the presentation simultaneously, which makes it easy to rearrange the slides or change their timings.Notes Page view: In this view, we can view the speaker notes associated with each slide.

Slide Master view: In this view, we can create and modify slide layouts and templates.The Slide Sorter view allows us to see all the slides in the presentation at once, so it is the best view to use to verify the timings for each slide. We can use the controls at the bottom of the Slide Sorter view to modify the timing of each slide.

For more such questions on PowerPoint, click on:

https://brainly.com/question/28220859

#SPJ8

What is another name for repetition in programming?
A. duplication
B. replication
C. redundancy
D. iteration

Answers

the answer is Iteration

What is the output of the following code? Assume the Rectangle class exists and all the methods called below exist and work as expected.

ArrayList blah = new ArrayList ();
blah.add( new Rectangle(3,5) );
blah.add( new Rectangle(2,15) );
blah.add( new Rectangle(5,5) );
double x=0;

System.out.println(blah.size());
for(Rectangle s: blah) x+=s.area();
System.out.println(x);

Answers

Answer:

3

70.0

Explanation:

There will be 3 elements (Rectangle instances) in the list.

The sum of the areas x will contain 3*5 + 2*15 + 5*5 = 70 and will be printed as a double.

If you are referencing cell (C2)in Excel and want to be able to copy the formula and update the column and keep the row fixed, how do you reference the cell in a formula, you don't need to include the

Answers

When you reference cell (C2) in Excel and want to copy the formula and update the column while keeping the row fixed, you can use a mixed cell reference.

A mixed cell reference refers to a reference that combines both relative and absolute cell reference by using a dollar sign ($).A dollar sign can be used to change a reference to either absolute or relative. If you want to keep a cell reference the same when copying a formula, you can use an absolute reference. To create an absolute reference in a formula, place a dollar sign ($) before the column letter and row number of the cell you want to reference.

To create a mixed cell reference in Excel, place a dollar sign before either the column letter or the row number depending on which you want to be fixed.For instance, to fix a row and allow a column to change, place a dollar sign before the row number as in $C2. When the formula is copied, the row will remain the same while the column will change. To fix a column and allow a row to change, place a dollar sign before the column letter as in C$2.

Learn more about reference cell: https://brainly.com/question/29784711

#SPJ11

If an employer asks you to email your job application, why would
you create the email and send it to yourself first?

Answers

If an employer asks you to email your job application, creating the email and sending it to yourself first allows you to double-check for errors and ensure that your application looks professional when the employer receives it.

What should be included in the job application email?

If an employer has asked you to email your job application, there are a few things that should be included in the email:

Subject line: Make sure your email has a clear subject line that includes your name and the job title you're applying for.

Attachment: Attach your resume and cover letter in PDF or Word format (unless otherwise specified in the job posting).

Introduction: In the body of your email, introduce yourself and briefly explain why you're interested in the position. Mention any relevant experience or skills you have that make you a good fit for the job. Make sure your tone is professional and enthusiastic, but avoid being overly casual or informal

Learn more about email at

https://brainly.com/question/29870022

#SPJ11

write a combination of input and output that are technically efficient. in other words, for what level of l and q, is the technology efficient?

Answers

A technically unattainable combination would require more output than what can be produced with the given level of input, for example, L = 9 and Q = 30.

Technically efficient input-output combination:

A combination of input and output is technically efficient if the production function is utilized at its full potential, meaning that the firm produces the maximum output possible with the given level of input.

Let's consider L = 4. Then, using the production function, we can find the output Q:

\(Q = 8L^1/2\\Q = 8(4)^1/2\)

Q = 8(2)

Q = 16

A technically efficient combination of input and output would be L = 4 and Q = 16.

2 - Technically inefficient input-output combination:

A combination is technically inefficient if the firm is not utilizing its resources optimally and is producing less output than what is possible with the given level of input.

Using the same input level L = 4, we know that the maximum possible output is Q = 16. If the firm produces less than 16 units, it is technically inefficient.

For example, a technically inefficient combination would be L = 4 and Q = 12.

3 - Technically unattainable input-output combination:

A combination is technically unattainable if the firm cannot produce the given level of output with the given level of input, even if it uses its resources optimally.

Let's consider L = 9. The maximum output possible using the production function would be:

\(Q = 8L^1/2\\Q = 8(9)^1/2\)

Q = 8(3)

Q = 24

A technically unattainable combination would require more output than what can be produced with the given level of input, for example, L = 9 and Q = 30.

Read more about production function here:

https://brainly.com/question/13564389

#SPJ1

write a combination of input and output that are technically efficient. in other words, for what level

Create a class called BookCase that has the following attributes:


BookCase

numberOfShelves - Integer

shelves[] - Book

BookCase ()

BookCase(numberOfShelves)

getShelves() - Book[]

getNumberOfShelves() - Integer

addBook(Book) - Boolean

removeBook(Book) - Boolean

getNumberOfBooks() - Integer

toString() - String

Note:


addBook will add a book to the first available spot on a shelf. Each shelf, no matter how many shelves there are, can hold a total of 100,000 pages. This method will return true if the book could be added to this book case, and false if it cannot be added. (Note, a book of more than 100,000 pages can never be added. )


removeBook will remove that book from the shelf, and return true if it was removed, and false if not.


--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------


Create a class called Book that has the following attributes:


Book

author - String

publisher - String

title - String

pages - Integer

Book ()

Book(author, publisher, title, pages)

getAuthor() - String

getPublisher() - String

getTitle() - String

getPages() - Integer

toString() - String

Answers

To create a class called Book Case with the given attributes, you can follow these steps: Declare a class called Book Case.

Add the following attributes to the Book Case class: number Of Shelves: an integer that represents the number of shelves in the bookcase. shelves: an array of Book objects that represents the books stored in each shelf. Create two constructors for the Book Case class: Book Case(): a default constructor with no parameters.Book Case(number Of Shelves): a constructor that takes an integer parameter representing the number of shelves in the bookcase.

Overall, the Book Case class represents a bookcase with shelves to store books, and the Book class represents a book with its attributes such as author, publisher, title, and number of pages. The BookCase class provides methods to add and remove books, as well as retrieve information about the bookcase and its books.

To know more about Book Case visit:-

https://brainly.com/question/21733184

#SPJ11

a coder is assigning a code for an IM injection of a
therapeutic medication. She finds the vode for the injection itself
in the CPT manualbut is unsure how to proceed from there. The coder
should;

Answers

When a coder finds the code for an IM injection of a therapeutic medication in the CPT manual, the next step is to ensure accurate documentation of the specific details related to the injection, such as the medication administered, dosage, and any additional procedures or services performed during the encounter.

Once the coder has located the code for the IM injection in the CPT manual, it is crucial to review the code description and associated guidelines. This helps ensure that the coder understands the specific requirements for reporting the code accurately.
Next, the coder should gather all relevant information from the medical documentation. This includes the name and dosage of the therapeutic medication administered, any additional services or procedures performed during the encounter, and any applicable modifiers required to accurately describe the injection.
By carefully reviewing the code description, following the guidelines, and accurately documenting all pertinent details, the coder can correctly assign the code for the IM injection of the therapeutic medication. This process helps ensure accurate coding and billing for the specific healthcare service provided.



learn more about coder here

https://brainly.com/question/19379706



#SPJ11

1 point
4. Part of a computer that allows
a user to put information into the
computer ?
O Output Device
O Operating System
O Input Device
O Software​

Answers

Answer:

adwawdasdw

Explanation:

Answer:

I'm so sorry about the comment of that person down there

anyways I think its Number 2.

high speed easily accessible storage space used by the cpu

Answers

High-speed easily accessible storage space used by the CPU is known as Cache memory. This is a type of volatile computer memory that improves the computer's performance by reducing the time required to access data from the primary storage by temporarily storing frequently used data closer to the CPU.

Cache memory is located in the CPU's chip, making it quicker to access than main memory or disk storage. It can be categorized into three different levels, L1, L2, and L3, with L1 being the smallest and fastest and L3 being the biggest and slowest.The CPU cache's size determines the amount of data that can be stored in it, with larger caches resulting in quicker data access times. A cache miss occurs when the requested data is not found in the cache, and the CPU must look for it in the main memory, resulting in a latency penalty.The use of cache memory is essential for modern-day computer systems. It provides a faster way of accessing data, which makes the computer more responsive. The CPU utilizes this high-speed storage to temporarily store the frequently used data, reducing the need to access the main memory, which takes longer to access and slows down the system. Therefore, cache memory improves the computer's performance by reducing the latency penalty that occurs when data is fetched from the main memory.

In summary, cache memory is an essential component of a computer system that improves its performance by providing a high-speed easily accessible storage space for frequently used data.

For more details regarding cache memory, visit:

brainly.com/question/23708299

#SPJ11


Directions: To avoid early damage in the tools, how will you sanitize and store the

following tools in your kitchen. Write your answers in the activity notebook following

the given columns.

Tools Proper Sanitation Proper Storage

Answers

Answer:

1)sterilizing

2)use bleach and water

3)when you wash the measuring spoon,wash them using warm soapy water then rinse them in clear water

4)use a fresh solution of 1 tablespoon of unscented,liquid chlorine bleach per gallon of water

5)let it set in soapy water over night

6)set it in soapy water five minutes and scrub each potter

7)wash mixing bowl in hot ,soapy water to add it to a dishwasher load

8)use a ratio of one part bleach to 20parts of water

9)pour water on thr blender and add dish soap

10)wipe it using clean and smooth towel

When discussing the four vs of big data with your coworker, he asks which of the four vs make it hard to extract and compare data. what will you respond to this

Answers

when it happened, I will respond with declaration of variety which is mean I will state every aspect of component that used to identify the different between data type and data categories that are linked to management big data. By doing that, we can determine how to make it easier to extract and compare the data.

What is big data?

Big data is data that is too large where it is hard and nearly imposible to process it with manual process because of its complexity. There 4 main component in the big data:

Volume. Volume is the size of the data stored in the big data.Veracity. Veracity is reliability of the data in the big data.Velocity. Velocity is what time is needed to generated, anayzed and gathered the data in big data.Variety. Variety is a component in the big data that define data type and categories for management in the big data.

Learn more about big data here

https://brainly.com/question/28333051

#SPJ4

str1=”Good” str2=”Evening” Does the concatenation of the above two strings give back a new string or does it concatenate on the string str1? How do you prove your point?

Answers

Answer:

It gives a new string

Explanation:

In programming; when two or more strings are concatenated by a concatenating operator, the result is always a new string.

From the question, we have that

str1 = "Good

str2 = "Evening"

Let's assume that + is the concatenating operator;

str1 + str2 = "Good" + "Evening" = "GoodEvening"

The result of concatenating str1 and str2 is a new string "GoodEvening" while str1 and str2 still maintain their original string value of "Good" and "Evening"

rebecca has hypertension. to help lower her blood pressure, she should

Answers

To help lower her blood pressure, Rebecca should make lifestyle changes such as adopting a healthier diet, exercising regularly, maintaining a healthy weight, managing stress, and limiting alcohol intake.



1. Adopt a healthier diet: Rebecca should consume a diet rich in fruits, vegetables, whole grains, and low-fat dairy products. She should also reduce her sodium intake, as high sodium levels can contribute to hypertension.

2. Exercise regularly: Engaging in moderate physical activity for at least 30 minutes most days of the week can help lower blood pressure.

3. Maintain a healthy weight: Losing excess weight and maintaining a healthy weight can help lower blood pressure.

4. Manage stress: Practicing relaxation techniques, such as deep breathing exercises, meditation, or yoga, can help manage stress and lower blood pressure.

5. Limit alcohol intake: Consuming alcohol in moderation or not at all can help reduce the risk of hypertension and help lower blood pressure if it is already elevated.

Learn more about hypertension visit:

https://brainly.com/question/28232601

#SPJ11

this text command defines how text will appear

Answers

In programming, the text command is not a specific command, but rather a term used to refer to a wide range of commands and functions that manipulate or display text.

What is a text command?

Text commands may include functions for formatting, searching, replacing, and displaying text within a program or on a screen. These commands may be used in a variety of programming languages, including C, as you mentioned.

In C, for example, there are many standard library functions that can be used to work with text. Some of the most commonly used functions for working with text in C include:

printf(): used to display formatted text on the screen or in a file

scanf(): used to read formatted text from the keyboard or a file

strcpy(): used to copy one string of text to another

strcmp(): used to compare two strings of text to determine if they are equal

strlen(): used to determine the length of a string of text

Overall, text commands are a crucial part of programming and are used extensively in applications that involve working with text data.

Learn more about text on:

https://brainly.com/question/20169296

#SPJ1

listen to exam instructions as a linux administrator, you need to create the directory /var/oracle/database/9i. only the directory /var currently exists. the current working directory is the root of the filesystem. which of the following commands will create the directory path?

Answers

The correct command to create the directory path /var/oracle/database/9i is:

`mkdir -p /var/oracle/database/9i`

Explanation:

In Linux, the `mkdir` command is used to create new directories. The `-p` option is used to create parent directories as needed. This means that if any of the parent directories do not exist, they will be created automatically.

In this case, since only the /var directory currently exists, we need to use the `-p` option to create the /oracle, /database, and /9i directories along the way. By using the `-p` option, we can create the entire directory path with one command, instead of having to create each directory individually.

Therefore, the correct command to create the directory path /var/oracle/database/9i is `mkdir -p /var/oracle/database/9i`.

Learn more about Linux:

https://brainly.com/question/25480553

#SPJ11

does anyone know the answer?​

does anyone know the answer?

Answers

Answer:

I think 10 or 55

Explanation:

55 good luck!!! Hope this helps

Pixar is a company that creates a huge amount of images, audio recordings, and videos, and they need to decide what compression algorithms to use on all those files. When would Pixar most likely use lossless compression

Answers

feels like im getting outta touch, maybe im juust staying inside too much, lately its getting harder to pretend i can do this alone without my friends

Question 6 (2 points)
The recipe for good communication includes these "ingredients":

a.clause, brevity, comments, impact, value

B.clarity, brevity, comments, impact, value

C.clarity, brevity, context, impact, value

D.clause, brevity, context, impact, value

Answers

Answer:

C

Explanation:

i think lng hehehehehe

write the algorithms for the problem How to post a letter ? you can put pictures for the steps ​

Answers

❖ Step 1: Start

❖ Step 2: Write a letter

❖ Step 3: Put in envelope

❖ Step 4: Paste stamp

❖ Step 5: Put it in the letter box

❖ Step 6: Stop

\(\frak{\fcolorbox{black}{pink}{Black Pink in your area$~$}}\) ~←(>▽<)ノ

Define input device

Answers

Answer:

An input device is computer hardware which is used to enter data for processing.

What information must be given to dispatch when the EMS unit begins transport to the receiving facility?

Answers

When an EMS unit begins transport to a receiving facility, there is crucial information that needs to be conveyed to the dispatch center. First and foremost, the name and location of the facility where the patient is being transported must be provided.

This helps the dispatch center to coordinate with the receiving facility and ensure that the patient receives prompt and appropriate care upon arrival. Additionally, the EMS unit must communicate the patient's current condition and any changes that occur during transport. This includes vital signs, such as heart rate, blood pressure, and oxygen saturation, as well as any symptoms or injuries that the patient is experiencing. Other important information that must be relayed to dispatch includes the patient's age and gender, any relevant medical history, and the reason for the transport. This helps the receiving facility to prepare for the patient's arrival and provide the appropriate level of care. Overall, effective communication between EMS and dispatch is essential to ensure that patients receive the timely and appropriate care they need. By providing accurate and detailed information during transport, EMS professionals can help to ensure positive patient outcomes and save lives.

Learn more about dispatch center here -

https://brainly.com/question/28388509

#SPJ11

Which of these lists correctly counts from 1 to 5 In binary

Which of these lists correctly counts from 1 to 5 In binary

Answers

Answer:B

Explanation: it is b because counting to 5 in binary is 0=0 1=1 2=10 3=11 4=100 and 5=101 so when you add the exes zeros  it becomes B.

Which is the most popular system of measurement in the world?
(a Graphic design question)

Answers

Answer:

Metric system

Explanation:

Other Questions
A comma is used to.... work outa) 1 1/5 + 3 2/5b) 4 1/2 - 1 1/3give answers as mixed numbers 6. (1) Propaganda is information that is methodically spread in order to persuade audiences to adopt a certain opinion. (2) Advertising is an ever-present form of propaganda in our lives. (3) Four common propaganda techniques are present in the advertising we see and hear every day. (4) One technique, the testimonial, involves having a well-known person appear on behalf of the product being sold. (5) Advertisers assume, for example, that if we admire a sports star, well want to eat the cereal he or she endorses. (6) Another common propaganda technique, the bandwagon, makes us want to be one of the gang. (7) Everybodys switching to . . . Dont be left out . . . and All across America, people are discovering . . . are phrases that signal a bandwagon approach. (8) The plain-folks propaganda technique is especially popular on TV. (9) In plain-folks commercials, we see and hear regular consumers talk about their experience using a certain phone company, headache remedy, or brand of coffee. (10) The fourth common propaganda technique, the transfer, encourages us to link two unrelated objects in our mind. (11) When a powerful cougar prowls around a shiny new car, for example, advertisers hope we will transfer our sense of the wild cats speed, strength, and beauty to our vision of their product. MAIN IDEA a tire manufacturer has a 60,000 mile warranty for tread life. the manufacturer considers the overall tire quality to be acceptable if less than 8% are worn out at 60,000 miles. based on a sample of tires, researchers conclude that the proportion of tires that are worn out at 60,000 miles is not less than 8%. what type of statistical inference is this? A pesticide that kills an insect by interfering with the production of proteins in the insect would most directly affect the activity of *a. ribosomesb. chloroplastsc. mineralsd. mitochondriai don't know, I rather not guess All BUT which of the following are true statements? a. All bacteria are efficient at controlling plant diseases and pollutants. b. The soil food web attempts to describe the complexity of transfers of energy and matter between species in the soil ecosystem c. Plants reuse nutrients which are cycled back into the soil by organisms consuming materials d. Diversity and interaction of organisms allows more nutrients to be cycled within the soil and provides more soil benefits. find the absolute value!! Need asap!! Yoshio has 3 pieces of fabric. Each piece of fabric has the same length. The total1length of the pieces of fabric is 2 yards. What is the length of each piece of fabric??Let x be the length of each piece of fabric in yards.1) Write an equation to describe the situation.IC 213c) Three times the length of each piece of fabric is equal to thetotal length Question 25 of 75. All of the following taxpayers received a periodic annuity payment in 2021. In all cases, the annuity start date was in 2018. Which of the following taxpayers must calculate the taxable amount of their distribution using the general rule? a. Alexa (75) received her required minimum distribution from her traditional IRA. She made nondeductible contributions to the IRA several years ago b. Gregg (71) received a distribution from a 403(b) plan. c. Harmony (73) received a distribution from a nonqualified annuity plan that she purchased through a life insurance company. d. Sienna (69) received a distribution from a 401(k) plan. The great friday mosque in djenn, in mali, is an impressive example of what type of construction? It is _____________ to get the correct information from the university office. Which adjective is the correct oneA. advisableB. advisibleC. advisedD. advising 1 The police are investigating our CEO for allegedly receiving ...... what are the stages of Alcoholism how many positive three-digit integers have a remainder of 2 when divided by 8, a remainder of 7 when divided by 11, and a remainder of 5 when divided by 12? Normal Distribution [30 points]The time taken to assemble a car in a certain plant is a random variable having a normal distribution of mean C hours and standard deviation of 45 hours.a) What is the probability that a car can assembled at this plant in a period of time less than 195 hours? [5 points]b) Solve part a) using Minitab. Include the steps and the output. [5 points]c) What is the probability that a car can be assembled at this plant in a period of time is between 200 and 300 hours? [5 points]d) Solve part c) using Minitab. Include the steps and the output. [5 points]e) What is the probability that a car can be assembled at this plant in a period of time exactly 210 hours? [5 points]f) Solve part e) using Minitab. Include the steps and the output. [5 points]C = 200 Select the correctly punctuated sentence.OA.Jameisha is a trustworthy, hardworking employee.B.Jameisha is a trustworthy hardworking employee.C.Jameisha is a trustworthy, hardworking, employee. GUYS I NEED HELP PLZZZ ILL GIVE BRAINLIEST!Deondra has $12 to spend on a mixture of green and red grapes. What equation can she use to graph a line showing the different amounts of green and red grapes she can buy for $12? Peter bought 8 lemons for $6,. Each lemon was the same price.What was the cost for 1 lemon? The nurse is administering an enteral feeding to a child with a gastrostomy tube (g-tube). which action will the nurse take when administering a prescribed feeding through the client's g-tube? if x=2 in the equation y=3x-5, what is the value of y?