Write a C code to check whether the input string is a palindrome
or not. [A palindrome is a
word that reads the same backwards as forwards, e.g., madam]

Answers

Answer 1

Here is the C code to check whether the input string is a palindrome or not, with an explanation of how it works:

The solution is to take two pointers, one at the start of the string and the other at the end of the string. We traverse from the start and the end of the string simultaneously. If the characters at both positions are equal, we move the pointers towards the middle of the string. If the characters at the start and the end of the string are not equal, then it is not a palindrome, and we exit the loop.#include
#include
int main()
{
   char str[100];
   int i, j, len, flag = 0;
   printf("Enter a string: ");
   scanf("%s", str);
   len = strlen(str);
   for(i = 0, j = len - 1; i <= len/2; i++, j--)
   {
       if(str[i] != str[j])
       {
           flag = 1;
           break;
       }
   }
   if(flag == 0)
   {
       printf("%s is a palindrome", str);
   }
   else
   {
       printf("%s is not a palindrome", str);
   }
   return 0;
}

The above code reads a string from the user and then checks whether it is a palindrome or not. It does this by using two pointers, i and j, which start at opposite ends of the string.

The for loop iterates until the middle of the string is reached. If the characters at i and j are not equal, then the flag is set to 1, indicating that the string is not a palindrome. If the loop finishes without the flag being set to 1, then the string is a palindrome.

To know more about code, visit:

https://brainly.com/question/31940186

#SPJ11


Related Questions

Identify the causes of installation problems. (Choose all that apply)

Identify the causes of installation problems. (Choose all that apply)

Answers

Answer:

the last one

Explanation:

please mark brainliest

Answer: The answers are: A,B,D

edg.

what does If you’re not paying for the product, you are the product.” mean

Answers

Answer:

it means your free

Explanation:

Throughout the reflection, make sure you have a copy of the Student Guide and your data tables. Complete the
paragraph using the drop-down menus
In this lab, you observed how pollutants affected the
of water. You also modeled and observed how
pollution affected freshwater sources, including surface water and the water in the​

Answers

Answer:

1) pH

2) ground

Can I have a brainliest?

Explanation:

In this lab, you observed how pollutants affected the ____ of water. You also modeled and observed how pollution affected freshwater sources, including surface water and the water in the  _______.

In this laboratory, you observed how pollutants affected the pH of water.

What is pH?

pH literally means the power of hydrogen ions and it can be defined as a measure of the molar concentration of hydrogen ions that are contained in a particular solution.

In Chemistry, the power of hydrogen ions (pH) is typically used to specify the acidity, neutrality or basicity of any chemical solution such as water.

In this laboratory, students were made to observe how pollutants affected the pH of water and they modeled how pollution affected freshwater sources, including surface water and the water in the​ ground.

Read more on pH here: brainly.com/question/24233266

During the execution of BFS and DFS, we say that a
node is Unseen before it is assigned a discovery number, Discovered
when it is assigned
a discovery number (and put on the queue/stack) but not a fin

Answers

During the execution of BFS and DFS, we say that a node is unseen before it is assigned a discovery number, discovered when it is assigned a discovery number (and put on the queue/stack) but not a finish time and finished when it is assigned a finish time.

DFS stands for Depth First Search, and it is a search algorithm used to traverse trees or graphs. The algorithm follows a depthward motion, as its name implies. It begins at the tree root and explores as far as possible along each branch before backtracking.

BFS (Breadth First Search) is a search algorithm that traverses the graph breadthwise, while DFS (Depth First Search) is a search algorithm that traverses the graph depthwise. BFS starts traversing the graph from the root node and follows the adjacent nodes at the current level before moving on to the next level.

However, DFS begins traversing the graph from the root node, but instead of following the next adjacent node, it follows the first unvisited node until it reaches a dead end. It then backtracks to the next node, repeats the process, and visits all of the nodes reachable from that node.

To know more about traversing visit:

https://brainly.com/question/31176693

#SPJ11

App developers often lament the ______________ created within apps where data is more tightly controlled by a service provider and where firms must comply to the usage policies of the platform provided.

Answers

App developers often lament the "walled gardens" created within apps where data is more tightly controlled by a service provider and where firms must comply to the usage policies of the platform provided. These walled gardens can limit the flexibility and innovation of app development, as developers may be restricted in their access to user data and the ability to integrate with other apps or services.

However, they can also provide a level of security and consistency for users, as well as a reliable revenue stream for developers through app store fees and advertising partnerships.

Know more about app developers, here:

https://brainly.com/question/7251440

#SPJ11


Why is John Von Neumann to a remarkable name?
si​

Answers

Answer:

John von Neumann is remarkable for his vast knowledge of mathematics, and the sciences as well as his ability to correlate the pure and applied sciences.

Explanation:

John von Neumann who was born on December 28 1903, and died on February 8,1957 was known for his extensive knowledge of mathematics, physics, computer, economics, and statistics. In computing, he was known to conceive the idea of the self-replicating machines that thrive in the automata cellular environment, the von Neumann architecture, stochastic computing and linear programming.

He developed the game theory in Economics, and laid the foundation for several mathematical theories. He contributed greatly to quantum mechanics and quantum physics. Little wonder, he was dubbed "the last representative of the great mathematicians."

Name three actions a database may perform? pls help

Answers

The three actions a database may perform are data retrieval, data modification and data security.

A database is an organized collection of data that can be easily accessed, managed, and updated. Three of the most common actions performed by databases are as follows:
1. Data Retrieval: Databases are primarily designed to retrieve data quickly and efficiently.

They allow users to access data from various tables and fields by running queries.

These queries help retrieve specific data based on different conditions and filters, and can also be used to join multiple tables together to create a more comprehensive view of the data.
2. Data Modification: Databases enable users to modify the stored data as per their requirements.

Users can add, edit, and delete records to ensure that the data remains accurate and up-to-date.

Additionally, databases allow for data validation to ensure that the data entered is correct and consistent.
3. Data Security: Databases provide various security measures to prevent unauthorized access and ensure the safety of the stored data.

They use authentication and authorization mechanisms to control user access, and implement backup and recovery procedures to protect against data loss.

Databases also provide audit trails to track user activities and identify any suspicious or malicious behavior.
For more questions on database

https://brainly.com/question/518894

#SPJ8

What is the difference between megabytes and gigabytes.

Answers

Answer:

The main distinction between a megabyte and a gigabyte is the number of bytes they contain. A megabyte is made up of 2^20 bytes (1,048,576 bytes), whereas a gigabyte is made up of 2^30 bytes (1,073,741,824 bytes). Taking this into account, a gigabyte can be made up of 2^10 megabytes (1024 megabytes).

Explanation:

Hope this answers your question.

Write a program in the if statement that sets the variable hours to 10 when the flag variable minimum is set.

Answers

Answer:

I am using normally using conditions it will suit for all programming language

Explanation:

if(minimum){

hours=10

}

Select the correct answer from each drop-down menu.
Complete the sentence about uses of spreadsheets.

Two of the most common uses of spreadsheets are to _____ data and _____ data.

First blank
1. Create new
2. Search for
3. Store available

Second blank
1.Sort
2. Classify
3. Download

Answers

I think it’s 1, 2 and if im wrong im sorry

Two of the most common uses of spreadsheets are to create new data and classify data. Thus, the correct options for this question are A and B respectively.

What are the uses of Spreadsheet?

The uses of spreadsheets are as follows:

It is used to collect and store data that is systematically organized.It authorizes users in order to make calculations with the stored data.Spreadsheets are also used to make charts and graphs.It actively supports users in data sifting and cleanup.

According to the context of this question, apart from the above top uses of spreadsheets, there are other various uses that can be delivered by this platform to the user that make their professional work more efficient, organized, and attractive.

Therefore, the most common uses of spreadsheets are to create new data and classify data. Thus, the correct options for this question are A and B respectively.

To learn more about Spreadsheets, refer to the link:

https://brainly.com/question/26919847

#SPJ2

Find the standard error of the mean for each sampling situation (assuming a normal population). (Round your answers to 2 decimal places.)
Standard Error
(a) σ = 12, n = 4 Not attempted
(b) σ = 12, n = 16 Not attempted
(c) σ = 12, n = 64 Not attempted

Answers

The correct answer for  (a), (b), and (c) are 6, 3, and 1.5, respectively.

The formula for the standard error of the mean is: SE = σ/√n.
where σ is the population standard deviation and n is the sample size.
(a) SE = 12/√4 = 6
(b) SE = 12/√16 = 3
(c) SE = 12/√64 = 1.5

Therefore, the standard error of the mean for sampling situations (a), (b), and (c) are 6, 3, and 1.5, respectively.
Hello! I'd be happy to help you calculate the standard error of the mean for each sampling situation. To do this, you can use the formula:
Standard Error (SE) = σ / √n
where σ is the population standard deviation and n is the sample size.
(a) σ = 12, n = 4
SE = 12 / √4 = 12 / 2 = 6
Your answer: 6.00

(b) σ = 12, n = 16
SE = 12 / √16 = 12 / 4 = 3
Your answer: 3.00

(c) σ = 12, n = 64
SE = 12 / √64 = 12 / 8 = 1.5
Your answer: 1.50
Remember to round your answers to 2 decimal places.

To know more about standard error, click here:

https://brainly.com/question/31139004

#SPJ11

as you review a .pcap file containing the traffic seen during a windows machine compromise, you see the following output in networkminer.

Answers

Answer: As you review a .pcap file containing the traffic seen during a Windows machine compromise, you see the following output in NetworkMiner.

Explanation:

what was the budget for monty python and the holy grail?

Answers

At the time, the "Monty Python and the Holy Grail" budget of roughly £229,575 was regarded as a modest one for a movie.

Who made the Holy Grail's payment?

How much money rock groups and record companies contributed to the 1975 film Monty Python and the Holy Grail has been disclosed by Eric Idle. Led Zeppelin gave £31,500, Pink Floyd Music gave £21,000, and Jethro Tull's Ian Anderson gave £6,300 of his own money, according to a tweet.

What is the typical movie budget?

The average film budget for a Hollywood motion picture, however, is somewhere around $65 million, according to Investopedia. It's significant to remember that excludes marketing expenses.

To know more about Monty Python visit:-

https://brainly.com/question/2484993

#SPJ4

When referencing a substring such as str1[m:n] if m >= n then the value will be?

Answers

Answer: '' (An empty string)

Explanation:

Normally, when we are getting a substring, we will start from the character at index m and go until, but exclude the character at index n.

If m is greater than n, then we cannot get any substring as we would have to go backwards when we need to go forwards. If m=n, then we still cannot get any characters as we have to exclude the character at index n, making us have to exclude the character at index m as well.

Hence, for both situations the value would be an empty string, or a string with length 0.

Consider a 1GHz processor with interrupts. On this processor, a context switch takes 1000 clock cycles and the interrupt handler code takes 50 cycles to complete. What is the minimum time from when an event occurs to when it is handled

Answers

The minimum time from when an event occurs to when it is handled on a 1GHz processor with interrupts is the sum of the context switch time and the interrupt handler code time.

Therefore, it would take 1050 clock cycles to handle an event on this processor. However, it is important to note that this is just the minimum time and actual event handling time may vary depending on other factors such as the priority of the interrupt and the current workload of the processor. On a 1GHz processor with interrupts, the minimum time from when an event occurs to when it is handled can be calculated by considering the time taken for the context switch and the interrupt handler code execution.
In this case, the context switch takes 1000 clock cycles and the interrupt handler code takes 50 cycles. So, the total number of clock cycles required is 1000 + 50 = 1050 cycles.
Since the processor operates at 1GHz, which is 1 billion (10^9) cycles per second, the time taken for 1050 cycles can be calculated as:
Time = (Number of cycles) / (Processor speed)
Time = 1050 cycles / (1 * 10^9 cycles/second)
Time = 1.05 * 10^-6 seconds
Therefore, the minimum time from when an event occurs to when it is handled is 1.05 microseconds.

Learn more about code here:

https://brainly.com/question/17293834

#SPJ11

There are many ways you can improve the performance of a website from an SEO perspective. When it comes to link building, which of the following statements is accurate?

a. The quantity of links is important, not the quality
b. The quality of links is important, not the quantity
c. Links hidden within code on sites improves your SEO performance
d. Links hidden within images on sites improves your SEO performance

Answers

Correct Answer:

The quality of links is important, not the quantity

HELP ASAP, AND YES I KNOW, WRONG CATEGORY. SORRY!
A rock band is a type of

ensemble
metronome
time signature
treble clef

Answers

Answer:

A. ensemble.

Explanation:

A musical ensemble can be defined as a group of people who play instrumental and vocal music. It is also known as a music group and carries a distinct name. The word ensemble is derived from the Middle French ensemblée, meaning together at the same time.

A rock band will come under the category of a musical ensemble as it is also a group of people performing instrumental music or vocal music.

Therefore, option A is correct.

what is a web designer responsible for?
A. the look and feel of a website
B. the content on social media
C. web traffic metrics
D. the latest trends in design

Answers

A. The primary responsibility of a web designer is to create the look and feel of a website, including the layout, graphics, and overall user experience.

The correct answer is option A.The look and feel of a website

While they may also be involved in creating content for social media, this is typically the responsibility of a social media manager or content creator. Additionally, web designers may be interested in web traffic metrics to track the performance of their designs and make improvements based on data. However, this is not typically their primary responsibility. Staying up to date on the latest trends in design is also important for web designers to ensure they are creating modern, relevant websites.

Hence, the correct answer is option A.The look and feel of a website.

To learn more about web designer https://brainly.com/question/25941596

#SPJ11

essay about important of

education
and discipline?​

Answers

Answer:

Importance of Education & Discipline

Explanation:

Education is an enlightening learning process.

It enhances knowledge & perspective towards selves & outside world. It enriches our capabilities, virtues & minimises our vices.

Education is a crucial strong tool, which can empower & transform individuals & society, make world better.

Discipline is obedience to appropriate code of behaviour.

It is very integral to maintain orderliness, no chaos in life. It is interconnected with good qualities of dedication (commitment) to goal & hard work. So, it helps attain desired goal with positive outlook & sense of self accomplishment.

t/f: A computer worm is a program that can copy itself to other computers on the network.

Answers

The given statement "a computer worm is indeed a program that can copy itself to other computers on the network" is true.

Worms are a type of malware that can spread quickly through a network, causing damage to computer systems and stealing sensitive information.

They do not require user interaction to spread, making them particularly dangerous. Worms use network vulnerabilities to exploit systems and copy themselves to other computers without being detected. In conclusion, it is important to have strong cybersecurity measures in place to protect against computer worms and other types of malware.

To know more about worm visit:

https://brainly.com/question/30804902

#SPJ11

Using real life example explain the use of data analytics in healthcare?

Answers

Data analytics plays a crucial role in healthcare, enabling professionals to extract valuable insights from large volumes of healthcare data. Here's a real-life example to explain the use of data analytics in healthcare:

Consider a hospital that wants to improve patient outcomes and reduce readmission rates for a specific medical condition, such as heart failure. By leveraging data analytics, the hospital can analyze various healthcare data sources, including electronic health records (EHRs), medical devices, and patient surveys, to gain valuable insights and make informed decisions.Predictive Analytics: Data analytics can be used to develop predictive models that identify patients at high risk of readmission.

To know more about data click the link below:

brainly.com/question/21927058

#SPJ11

Which view is most often used to reorder slides in a presentation that has already been created?

Outline view
Slide Sorter view
Reading view
Normal view

Answers

Answer:

Normal view

Explanation:

The normal view is best used because it is just to drag and drop

Normal view, is most often used to reorder slides in a presentation that has already been created. Thus, option (d) is correct.

What is presentation?

The term presentation refers to the present on the information in the front of the audience. The presentation was the present the information in the short way and the face to face communicated to the audience. It was the interaction to the audience. The presentation is the two way communication.

The normal view in Microsoft PowerPoint is the default view for developing and viewing presentation slides. You'll be creating your slides in normal view, which is the editing mode, the most of the time. Unless you altered the default view, when you create or open a presentation you see it in normal mode.

As a result, the significance of the normal view is most typically used to reorder slides in a presentation that has already been created are the aforementioned. Therefore, option (d) is correct.

Learn more about on presentation, here:

https://brainly.com/question/28712294

#SPJ3

(C++ only)Write a program that repeatedly reads in integers until a negative integer is read. The program also keeps track of the largest integer that has been read so far and outputs the largest integer at the end.


Ex: If the input is: 2 77 17 4 -1

The output is 77

Answers

Answer:

#include <iostream>

using namespace std;

int main() {

   int num, largest = 0;

   cout << "Enter integers (negative integer to quit):" << endl;

   while (true) {

       cin >> num;

       if (num < 0) {

           break;

       }

       if (num > largest) {

           largest = num;

       }

   }

   cout << "The largest integer is: " << largest << endl;

   return 0;

}

Explanation:

The program starts by declaring two integer variables: num to hold the input value, and largest to keep track of the largest integer read so far.

It then enters a while loop that continues indefinitely until a negative integer is read. Inside the loop, it reads in an integer using cin, checks if it's negative, and if so, breaks out of the loop. Otherwise, it checks if the integer is greater than the current largest integer, and if so, updates the largest variable.

Once the loop has ended, the program outputs the largest integer using cout.

Run the code:

Enter integers (negative integer to quit):

2 77 17 4 -1

The largest integer is: 77

To write a program in C++ that repeatedly reads in integers until a negative integer is read, we can use a while loop that continues until the user inputs a negative integer. Within the while loop, we can use cin to read in the integers and compare them to a variable that stores the largest integer so far.

If the current integer is greater than the largest integer, we update the variable to hold the current integer. Once the loop exits, we output the largest integer that was read in.

Here is the code to implement this:

```
#include
using namespace std;

int main() {
   int input, largest = INT_MIN; // set largest to the smallest possible integer value
   while (true) {
       cin >> input;
       if (input < 0) break; // exit loop if negative integer is input
       if (input > largest) largest = input; // update largest if current integer is greater
   }
   cout << largest << endl;
   return 0;
}
```

This program initializes the variable 'largest' to the smallest possible integer value and compares each integer input to it. If the input is greater than the current 'largest' value, it updates 'largest' to hold the new value. When the loop exits, it outputs the largest integer that was read in.

As a result, if you give input 2, 77, 17, 4, -1

The output will be 77 because it is the highest variable in the given input.

You can learn more about integers at: brainly.com/question/1768254

#SPJ11

Which statement below returns 'soccer'?
sports = [2: football', 3:'soccer', 4:'volleyball', 5:'softball'}

• sports.find(soccer')
• sports[3]
• sports(3)
• sports.get(2)

Answers

Answer:

The answer is the second option.

sports = {2: 'football', 3:'soccer', 4:'volleyball', 5:'softball'};

console.log(sports[3]);

will output:

soccer

Explanation:

There were several syntax errors in the code (assuming it is javascript):

- Text strings must be enclosed in single or double quotes.

- sports is an object, not an array, so it should have { } and not [ ]

How do I make the text and heading different colors?

How do I make the text and heading different colors?

Answers

Answer: do u have word if you do go to font and u can change ur font

Explanation:

Mr. Washington is digitizing old family photos. A 4"x6" photo is digitized using 10,000 pixels. An 11"x7" photo is digitized using 30,000 pixels. Which image will have the better resolution?

Mr. Washington is digitizing old family photos. A 4"x6" photo is digitized using 10,000 pixels. An 11"x7" photo is digitized using 30,000 pixels. Which image will have the better resolution?

the 11"x7" photo

the 4"x"6 photo

the photos will have the same resolution

Answers

The image that will have the better resolution is a digital image that is known to be about the 11"x7" photo.

What is digital image?

The term digital image is known to be one that pertains to  graphics computing.

This is said to be an image that can be saved in binary form and shared into a matrix of pixels. And it is said that all of the pixel is made up of a digital value of one or a lot of bits.

Therefore, The image that will have the better resolution is a digital image that is known to be about the 11"x7" photo.

Learn more about digital image  from

https://brainly.com/question/26307469

#SPJ1

What type of fiber optic cable design allows for large numbers of fibers with ultra-high density, small size (diameter) and lower cost?

Answers

Ribbon fiber optic cables offer a cost-effective solution for applications that require a large number of fibers in a compact form factor.

The type of fiber optic cable design that allows for large numbers of fibers with ultra-high density, small size (diameter), and lower cost is known as "ribbon fiber" or "ribbon cable."

In this design, multiple fibers are arranged in a flat ribbon-like structure, with each fiber placed side by side. This configuration enables a significant increase in fiber count per cable compared to traditional loose-tube cables.

Ribbon cables can accommodate hundreds of fibers within a single cable, allowing for greater density and more efficient use of space. This design also reduces installation time and cost, as multiple fibers can be spliced at once using mass fusion splicing techniques.

Overall, ribbon fiber optic cables offer a cost-effective solution for applications that require a large number of fibers in a compact form factor.

To summarize, ribbon fiber optic cable design enables the incorporation of a large number of fibers with high density, small size, and lower cost compared to traditional designs.

To know more about structure visit:

Which quality of an image are megapixels related to?
color saturation
O resolution
O perspective
O depth of field

Answers

Answer:

Megapixels are related to the resolution.

Why do politically-powerful groups get bigger positive impacts of externalities?

- 1. GOVERNMENT CORRECTION FAVORS THEM
- 2. MORE POWERFUL GROUPS BECAME POWERFUL BECAUSE OF THESE EXTERNALITIES
- 3. BECAUSE OF CORRUPTION AND BRIBERY
- 4. BECAUSE THE POSITIVE IMPACTS ALWAYS OUTWEIGH THE NEGATIVE TO EVERYONE ELSE

Answers

There are a few reasons why politically-powerful groups get bigger positive impacts of externalities. One reason is that government correction favors them. Another reason is that more powerful groups became powerful because of these externalities.

What is government?
An organised community is governed by a system or group of people, typically a state. Government typically consists of the legislative, executive, and judicial branches in the case of its broad associative definition. Government is a mechanism for making policy decisions as well as a way to enforce organisational policies. A declaration of the government's guiding principles and philosophy is the equivalent of a kind of constitution in many nations. The term "government" is frequently used more specifically to refer to the roughly 200 independent national governments as well as subsidiary organisations, even though all organisations have governance. Modern democracies, monarchies, as well as authoritarian as well as totalitarian regimes are the main varieties of political systems.

Yet another reason is because of corruption and bribery. Finally, because the positive impacts always outweigh the negative to everyone else.

To learn more about government
https://brainly.com/question/1078669
#SPJ1

Is some sort of travel web page (Creativity is encouraged!)

Answers

Answer:

A website.

Explanation:

Other Questions
The sum of the ages of pam,dion, and their three children, in years, is 5x - 99. where x is dion's age. pam is five years younger than dion. what is the usm of the ages of their children? "That can never be necessary," cry the other side. "All men are privately influenced by women; each has his wife, sister, or female friends, and is too much biased by these relations to fail of representing their interests. And, if this is not enough, let them propose and enforce their wishes with the pen. The beauty of home would be destroyed, the delicacy of the sex be violated, the dignity of halls of legislation degraded, by an attempt to introduce them there. Such duties are inconsistent with those of a mother;" and then we have ludicrous pictures of ladies in hysterics at the polls, and senate-chambers filled with cradles.How does paragraph 4 contribute to the development of Fullers argument for equality for women?by presenting the counterargument of men that has hindered the advancement of womens rightsby warning men of ways that government will change once women are given opportunities to leadby addressing the concern that too much independence for women can lead to conflict in societyby asserting that the majority of men share womens desire for social change and womens rights Determine the mass of precipitate that forms when 125 ml of 0. 222 m aqueous magnesium chloride is mixed with 225 ml of 0. 105 m aqueous sodium phosphate. Based on the information above, which of the following is true of the economic state of Europe following World War I?a. Much of Europe was in a state of economic decline.b. Much of Europe was thriving, economically Anyone down to start a convo what did julian rotter insist on in his internal-external control scale? your sales department likes to stream professional sports games across the computer network on wednesday afternoons, causing vpn performance issues during that time. what is the most likely cause of the performance issues? The population of a certain city was 112,000 in 1998, and the observed relative growth rate is 4% per year. (a) Find a function that models the population after t years. (b) Find the projected population in the year 2004. (c) In what year will the population reach 200,000 pls help me pls help me pls help me What is the destination MAC address? Tighe starts at sea level and hikes up to an elevation of 70 ft. Then he descends(walks down) in the direction of his starting point to an elevation of 30 ft. Tighe says the integer 30 represents his elevation at this point. Is Tighe correct? Explain your reasoning. . James is an undergraduate student who has 800 of income to spend each semester on pizza and books. The price of a pizza is 8 and the price of a book is 40.(a) In a diagram with pizza on the vertical axis and books on the horizontal axis, draw James's budget constraint. Aamir bought 3 pounds of cement to repair the cracks in his sidewalk.Each crack needs to be filled with 2 ounces of cementPart A : How can he convert 3 pounds to ounces? Multiple or divide 3 by 8,12,or 16Part B : How many cracks can he Repair? Who was Ari Dev Malla? What was his contribution? Margie is practicing for an upcoming tennis tournament. Her first serve is good 20 out of 30 times on average. Margie wants to know the estimated probability that her first serve will be good at least four of the next six times she serves. How could she design a simulation for this scenario 14x2 + 28x5=??????????? E. It costs $1.50 per hour to dry clothes at a laundromat. The rate per hour is $1.50 (slope) and the beginning point is 0 (y-intercept). Write a linear equation in y = mx + b form to represent the total cost. Express the polynomial expression in the form for integer values of a,b, and c. You must make a choice between 4 different brands. Based on the data in the table, which brand has the best probability of working? Brand Breaks within 6 Months TotalA 1250 12,400B 1375 7500C 450 1400D 84 230 In response to an increasing blood glucose level, the human body will normally