A painting company has determined that for every 112 square feet of wall space, one gallon of paint and eight hours of labor will be required. The company charges $35.00 per hour for labor.
Write a function named compute_cost(), that takes area of wall space and the price of a paint gallon. Function then computes the following:
The number of gallons of paint required
The hours of labor required
The cost of the paint
The labor charges
The total cost of the paint job
Finally it returns the total cost to the calling program
Write the main() function that prompts the user to enter area of wall space to be painted and the price of a paint gallon. The main function then calls compute_cost() function to compute the cost and prints the total cos.
Make sure it is in python program

Answers

Answer 1

The sum of paint cost() and labor charge ()

print(f"The number of hours of lab time are needed: labour()hours" print(f"The number of gallons of paint are needed: gallons(wall)")

Print "The Price of Paint: $paint cost()," "The Price of Labor: $labour charge()," and "The Total Price of the Job: $round(total(), 2)"

In Python, what is a programme?

A collection of Python statements that have been carefully chosen to accomplish a certain task is the simplest definition of a programme.

The square footage of a wall in feet and the cost of a gallon of paint are inputted by the user into the python software. To determine the entire cost of the project based on the quantity of paint and the labour costs, five functions are used: gallons(), labour(), paint cost(), labour charge(), and total().

To know more about Python visit:-

brainly.com/question/18502436

#SPJ4


Related Questions

oracle and sql server support the ____ operator but microsoft access does not.

Answers

The INTERSECT operator is supported by Oracle and SQL Server, but not by Microsoft Access.

what is intersect command?

With the UNION clause in SQL, all matching rows from two SQL queries are combined into a single table.

In order to combine, the two searches must return the same number of columns and compatible data types. Unless UNION ALL is used, all duplicate records are immediately deleted.

In data warehouse applications where tables are not properly normalized, UNION can be helpful.

[2] A straightforward illustration would be a database with two tables, sales2005 and sales2006, which are separated for performance reasons despite having identical architecture. The output from both tables might be combined with a UNION query.

Keep in mind that the rows' order is not guaranteed by UNION ALL. Rows from the first operand may be mixed in with rows from the second operand or may come first. In.

Hence, The INTERSECT operator is supported by Oracle and SQL Server, but not by Microsoft Access.

learn more about sql click here:

https://brainly.com/question/23475248

#SPJ4

One of the main reasons for copyright law is to encourage creators to share their work for the benefit of the general public.

Answers

To encourage creators to share their work for the benefit of the broader public is one of the primary goals of copyright law. Any person may use any piece of work that is in the public domain.

What does the Copyright Law's primary goal?

The ownership, use, and dissemination of artistic and expressive works are regulated by copyright laws. People believe that the majority of creators produce their creative works in order to get compensated in this economic story regarding copyright.

What does copyright law say about a work that is normally covered by copyright?

According to American copyright law, copyright owners have the following exclusive rights: Make copies or phonorecords of the work. Create works based on the original work. distribute phonorecords or copies of the material.

To know more about copyright law visit:-

https://brainly.com/question/29738132

#SPJ4

what are the 5 ways of controlling hazards and risk? explian each

Answers

Answer:

1 Eliminate the hazard. Remove it completely from your workplace.

2 Substitute the hazard.

3 Isolate the hazard.

4 Use engineering controls.

5 Use administrative controls.

6 Use personal protective equipment (PPE)

Explanation:

Which task would you use the Ctrl plus F command

Answers

Answer:

Bookmark a tab

Hope this helps :)

Answer:

If you're in a document or in a web browser, pressing the Ctrl key + the F key will bring up a search box in the top right corner of the screen. You can then type in a keyword or phrase to find places where that word or phrase is used in the text, often helpful for locating relevant sections.

Explanation:

Joe, a user, reports that his new smart wearable device is not synchronizing to his mobile device. Both devices are powered on, but the mobile device fails to read the data from the wearable. Which of the following will MOST likely fix this issue?
A. Pair the devices
B. Set the SSID
C. Update the smart wearable device firmware
D. Enable NFC

Answers

A.Pairing the devices is the most likely solution to this issue.

Which of the following will resolve this problem MOST PROBABLY?This involves connecting the two devices via Bluetooth or Wi-Fi so that they can share data.To pair the devices, the user needs to locate the Bluetooth or Wi-Fi settings on both devices, enable them, and then select the wearable device on the mobile device.If the device is not listed, the user may need to enter the device's unique code to pair the devices. Once the devices are paired, the mobile device should be able to read data from the wearable device.If the pairing does not work, the user may need to update the firmware on the smart wearable device.Updating the firmware can fix compatibility issues between the two devices.Finally, NFC (Near Field Communication) is not needed to sync the two devices, as NFC only works with very close proximity.The most likely fix for Joe's issue with his smart wearable device not synchronizing to his mobile device is to pair the devices. This process should allow the two devices to communicate and synchronize data between each other.Pairing the devices involves entering a PIN code or pressing a certain button to establish a secure connection. This may require both devices to be close to each other. Once the devices are paired, they should be able to share data.

To learn more about Pair the devices refer to:

https://brainly.com/question/29236437

#SPJ4

g Shift registers and counters use hardware _____________________ for their internal data storage.

Answers

A series of core registers coupled together to generate a clock-driven data shift is known as shift register counters. Johnson counters and ring counters are two of the most popular types of these.

What is the purpose of a shift register?

Shift registers are widely used in converters that convert parallel data to serial data or vice versa. Shift registers can also be employed as delay circuits and digital pulse extenders.

Can data be stored in a shift register?

A shift register is represented by a pair of terminals that are placed next to one another, vertically on either side of the loop boundary. When an iteration is finished, data is stored in the terminal on the right side of the loop, which has an up arrow.

To know more about shift register here:-

brainly.com/question/14096550

#SPJ4

Write a flowchart and C code for a program that does the following:
Uses a do...while loop.
Prints the numbers from 1 to 10 with a blank line after each number. (Hint: You'll need to use the newline character \n .)
Submit one Word document which contains:
Your flowchart in Flowgorithm
A screenshot of your code
A screenshot of your output including the Title Bar of the console window.

Answers

The programme and flowchart serve as examples of how to use a do while loop. Repetitive tasks are performed using the do while loop.

Student Program: What exactly is it?

Graduate students, young professionals, and artists in the U.s who are graduating from college can apply for fellowships through the Education Program to study, do research, or teach English abroad.

Briefing :

Here is a dataset of C code that uses comments to describe each line:

#include

int main () {

//This initializes the number to 1

int a = 1;

//This begins the loop

do {

//This prints the current number

printf("%d\n", a);

//This increments the number by 1

a = a + 1;

}

//The loop is repeated as long as the number is less than or equal to 10

while( a <= 10 );

return 0;

}

To know more about Program visit :

https://brainly.com/question/11023419

#SPJ4

Add two more statements to main() to test inputs 3 and -1. Use print statements similar to the existing one (don't use assert). 1 import java.util.Scanner; 3 public class UnitTesting // Method returns origNum cubed public int cubeNum(int origNum) { return origNum origNum origNum; public static void main (String [] args) { Unit Testing cubeTester - new Unit Testing(); System.out.println("Testing started"); System.out.println("2, expecting
8, got: " + cubeTester.cubeNum(2)); /* Your solution goes here */ System.out.println("Testing completed"); 18 1911

Answers

User input is obtained using the Scanner class, which may be found in the java.util package. Create an object of the type and use any of them to access the Scanner class.

The function of the import utility Scanner

A class called Scanner is included in the Java. util package. For any primitive datatype, it is used to receive user input (int, float, string, and so on).

What purposes does Java Util Scanner serve?

A component of the java. util package is the Java Scanner class. It was first made available with Java 1.5. Primitive data types like int, double, or the default String are parsed from user input using the scanner.

To know more about Scanner class visit :-

https://brainly.com/question/29640971

#SPJ4

Based on the data provided, does this algorithm run in a reasonable or unreasonable time? explain your answer

Answers

A huge amount of processing power would be required to tackle the issue of an unreasonable time algorithm.

How can you tell whether an algorithm executes in an acceptable amount of time?The procedure is rational and takes polynomial time if the total number of steps is less than or equal to a polynomial function of the size of the input, including constant, linear, and quadratic functions, etc.A huge amount of processing power would be required to tackle the issue of an unreasonable time algorithm.The rate of growth for reasonable algorithms is polynomial or less. Algorithms that are unreasonable progressively get worse. Even for relatively small issue sizes, an irrational algorithm's time to solve climbs very quickly.          

To learn more about algorithm refer to:

https://brainly.com/question/24953880

#SPJ4

What would a developer do to update a picklist field on related Opportunity records when a modification to the associated Account record is detected

Answers

Answer:

Create a process with Process Builder.

Explanation:

GlobalMan Tech purchased raw material from NewBizTr Co. When the sales team at NewBizTr Co checked the system, there was no payment detail in the system, though the order-delivery details were present. Also, it seemed that someone had tampered with the details of the previous order. Which important data-management features were compromised?

The (BLANK) of data was compromised because there were corresponding payment details. The (BLANK) of data was compromised as someone had tampered with the details of the previous order.


1)

integrity

security

archiving

reusing


2)

integrity

accuracy

security

archiving

Answers

Both data security and crucial data management procedures were violated. The privacy of the information was harmed since the order's specifications were changed.

How do security keys work?

A privacy key is a tool that makes it easier to access other devices, computer systems, and apps or to do tighter authentication. Security tokens are another name for secret keys. Security keys are item items that need a main device to function.

What makes IT security?

Property was pledged as security for a debt or commitment of the owner in the term's original sense, which dates to the middle of the 15th century. The phrase began to refer to a document that proved a debt in the 17th century.

To know more about Security visit :

https://brainly.com/question/5042768

#SPJ4

When you identify the data elements in a new database, you typically subdivide data elements into __________.
1 makes maintenance easier
2 clustered
3 The column is frequently updated.
4 the smallest practical components

Answers

The smallest practical components

What tools are available for combining data from two or more tables into a single result set?

You may wish to combine records from one table or query with records from one or more other tables to generate a single set of records – a list including all of the records from the two or more tables. A union query in Access serves this function.

The most prevalent sort of relationship between tables in a database is one-to-many. A record in one table corresponds to zero, one, or many records in another database in a one-to-many (also known as many-to-one) connection.

To learn more about subdivide data to refer:

https://brainly.com/question/13261775

#SPJ4

explain how yo could use your expression to determine the value that would appear in the 25th ro of the second column

Answers

A sign for a number is called a variable. The variable in the equation 8x + 17 is called x. Y is the variable in the equation = 25. Variables don't have to be letters; for instance, the formula 6 + 2 has a variable.

What does "variable" actually mean?

A variable is a sum that can change based on the underlying mathematical problem. Mathematical expressions and equations frequently use the generic letters x, y, and z. rather,

just what is a variable?

A variable is any property, quantity, or number that can be measured or counted. A variable may also be referred to as a data item. Age, gender, company profits and costs, and location of birth

To know more about variables visit:

https://brainly.com/question/17344045

#SPJ4

Which of the following network devices would MOST likely be installed to allow a fiber optic cable
to be plugged into a network device with only RJ-45 connections?
A. WAP
B. Basic switch
C. Hub
D. Media convertor

Answers

The network devices that would MOST likely be installed to allow a fiber optic cable to be plugged into a network device with only RJ-45 connections is D. Media convertor.

A media converter is a device that allows different types of communication media, such as copper and fiber optic cables, to connect to each other. In this case, a media converter would be used to allow a fiber optic cable to be plugged into a network device that has only RJ-45 connections, which are typically used for copper cables. The media converter converts the signals from the fiber optic cable to the signals that can be transmitted over copper cables. This allows devices that are connected to the network using copper cables to communicate with devices that are connected to the network using fiber optic cables.

Learn more about media installation here, https://brainly.com/question/30149240

#SPJ4

2. State eight typing keys (8mks)​

Answers

     On a keyboards, the main sequence is the central row where the keys are located. When beginning to write, you rest your fingertips on the home keys. F, D, S, and A are the main keys, and J, K, L, and ; (semicolon) are located on the right side of the keyboard.

Your manager has requested that the combo padlocks used to secure different areas of the company facility be replaced with electronic swipe cards. What type of social-engineering attack is your manager hoping to avoid with this change

Answers

Dumpster diving is the type of social-engineering attack is manager hoping to avoid with this change.

What precisely is dumpster diving?

Dumpster diving is the process of looking through someone's or a company's trash in an effort to obtain information that might be exploited to attack a computer network. Dumpster divers find financial statements, official documents, medical bills, resumes, and the like by simply rummaging through the victim's trash.

What does the term "dumpster diving" mean?

Searching through rubbish to find helpful information is known as "dump diving." The trash could be in a public dumpster or at a place that needs unlawful access. The human flaw of security ignorance is what makes dumpster diving possible.

To know more about Dumpster diving visit

brainly.com/question/25361443

#SPJ4

which device is connected to a port on a switch in order to receive network traffic?
a. Inline IDS
b. Anomaly monitor
c. Passive IDS
d. Behavioral monitor

Answers

To accept network traffic, an inline IDS device must be linked to a switch port.

What is IDS inline?

IDS and IPS on the network. Network sensors may be installed either inline or passively. When in "inline" mode, the sensor is positioned right in the path of network transmission. The sensor acts as a firewall, filtering out traffic.

In terms of network security, what is an inline attack?

Network equipment that is seen as essential to the operation of an enterprise network, such as routers, switches, and firewalls, is referred to as inline. It is normal for dropped packets or mistakes in the computing programs and processes to follow any malfunction or performance degradation of these devices.

To know more about inline IDS device visit :-

https://brainly.com/question/13148816

#SPJ4

____ data can have only a true or false (yes or no) values.

Answers

Answer:

boolean data

Explanation:

A students wants to insert a column sparkline in Excel. To do this, she can click on the cell she wants to insert a Sparkline, then click Insert tab, select the Sparkline type of choice from the Sparklines group and then select OK.

Answers

The stated statement regarding inserting a tab sparkline in Excel is accurate, according to the given information.

Where can I find Excel without cost?

You only need a Microsoft account to use Excel Spreadsheet and other essential Office products online for free. Visit Office.com and select "Sign in" to provide your information. Choose "Sign up for the complimentary version of Microsoft Office" and follow the directions if you don't already have an account.

Should I learn Python or Excel?

Excel is a fantastic tool for beginners and seems to be a quick and simple way to analyze a dataset. But Python offers the tools, methodologies, and processing capacity that Powerpoint, in many cases, lacks for the present era, with its enormous datasets, more complicated analyses, and automation.

To know more about Excel visit :

https://brainly.com/question/3441128

#SPJ4

What is 90x8-78x0
help me pls

Answers

Answer:

720 - 0 = 720

Therefore, your answer is 720

Answer:

720

Hope it helps:)

Tamara and Clyde got different answers when dividing 2x4 + 7x3 – 18x2 + 11x – 2 by 2x2 – 3x + 1. Analyze their individual work.

Which statement about their answers is true?
Tamara’s work is correct because Clyde did not multiply the terms in the division table correctly.
Clyde’s work is correct because Tamara did not subtract the terms correctly.
Both students are correct.
Both students are incorrect.

Answers

Any of the students, Tamara or Clyde, who obtained the same quotient following division as X2+5x+2, can be considered accurate. Tamara did not correctly deduct the terms, hence Clyde's work is accurate.

What is a division problem's remainder?

The value remaining after division is known as the Remainder. After division, we are left with a value if a number (dividend) cannot be divided entirely by another number (divisor). The remaining is the name for this amount.

What is an example of the remainder?

It may exceed or fall short of the quotient. For instance, the result of 41 divided by 7 is 5 and the remaining is 6. By just plugging in numbers that match the problem, it is simple to answer several remainder difficulties. As an illustration, the leftover is 3 when the positive integer x is divided by 5. The leftover is 4 when the positive integer y is divided by 5.

To know more about Clyde’s work here:

brainly.com/question/14780388

#SPJ1

Torrey changed his pie chart as shown.



Which changes were made to the pie chart?

Which changes were made to the pie chart?

The angle of the slices were adjusted in the Format tab, data labels were added in the Layout tab, and the legend was moved to the bottom in the Layout tab.
The chart style was changed in the Design tab, data labels were added in the Layout tab, and the legend was moved to the bottom in the Layout tab.
The angle of the slices were adjusted in the Format tab, the chart title was added in the Layout tab, and the legend was changed to the bottom in the Layout tab.
The chart style was changed in the Design tab; data labels were added in the Layout tab, and the chart title was added to the bottom in the Layout tab.

Answers

The change that was made to the pie chart is that the angle of the slices was adjusted in the Format tab, the chart title was added in the Layout tab, and the legend was changed to the bottom in the Layout tab. Thus, the correct option for this question is C.

What is a Pie chart?

A pie chart may be characterized as a graphical representation technique that displays data in a circular-shaped graph. It is a composite static chart that works best with a few variables.

The design, format, and layout tabs chart Tools contextual tabs appear on the Ribbon when you select a chart. Pie charts are often utilized in order to represent sample data—with data points belonging to a combination of different categories.

Therefore, the correct option for this question is C.

To learn more about Pie charts, refer to the link:

https://brainly.com/question/796269

#SPJ1

A ___________ is a large group of software applications that run without user intervention on a large number of computers.

Answers

a sizable collection of software programs that operate automatically on a lot of computers and are referred to as robots or bots. viral encryption.

Which of the following types of malware can operate without user interaction?

Worms. A computer worm that replicates automatically distributes to other systems. This virus can infect computers via malicious URLs, files, or security holes. Inside, worms look for networked devices to attack.

a sizable collection of software programs that operate automatically on a lot of computers and are referred to as robots or bots. Applying computer systems and methods to acquire prospective legal evidence is a niche area of law enforcement used to combat high-tech crime.

To know more about software applications visit:-

https://brainly.com/question/29854571

#SPJ4

You are no longer required to manually enter this when you install Windows 10. a. User name b. Product key c. Password d. Microsoft account

Answers

When installing Windows 10, you are no longer necessary to manually type this.

Without a product key, how do you install Windows 10?

Click or press "I don't have a product key" when the Windows 10 setup procedure asks you to activate Windows at that point. After that, carry out a regular installation of Windows 10 since the setup wizard won't ask for the product key again.

What exactly is a Windows 10 product key?

A product key is a 25-character code used to activate Windows and ensure that it hasn't been installed on any more computers than the Microsoft Software License Terms permit.

To know more about installing Windows visit :-

https://brainly.com/question/24282472

#SPJ4

Which of the following is not one of the primary principles an organization should follow for successful agile software development

Answers

Option E. Rigid Scheduling is not a principle that should be followed for successful agile software development as it goes against the spirit of agility.

Agile development is all about adapting to change and embracing the unknown.

Successful Agile Software Development: The Primary Principles

The primary principles that should be followed for successful agile software development are adaptive planning, comprehensive documentation, self-organizing teams, and fast feedback loops.

Adaptive planning involves creating a plan that is flexible and can adapt to changes in scope or requirements. Comprehensive documentation ensures that all stakeholders are on the same page and that the project’s progress is easily tracked. Self-organizing teams are teams that are composed of individuals that can work together to solve complex problems and create innovative solutions.

Since the question is not complete, here's the full task:

Which of the following is not one of the primary principles an organization should follow for successful agile software development?

Choose the right option:

A. Adaptive Planning B. Comprehensive Documentation C. Self-Organizing TeamsD. Fast Feedback LoopsE. Rigid Scheduling

Learn more about Software: https://brainly.com/question/26872062

#SPJ4

Security managers are accountable for the day-to-day operation of the information security program. T/F?

Answers

The answer of this statement "Security managers are accountable for the day-to-day operation of the information security program" is True.

What is a Security Program?

An group's security policies, procedures, tools, and controls are all part of its security program. In essence, your security program is the comprehensive, multifaceted security strategy & governance that safeguards the sensitive information and capabilities of your firm.

Why are security programs important?

The cyber security policies, practices, standards, and recommendations of your company are provided in a structured security program. For data to be actively protected while remaining compliant with best practices, legal regulations, and consumer standards, security procedures are essential.

To know more about security program visit :

https://brainly.com/question/30168673

#SPJ4

3. __________is the energy of position. Hint: It is stored energy of an object due to its height that has the ability to become active. Page 259 *

Answers

Potential energy is the energy that an object has due to its position. The energy an object possesses as a result of its motion is referred to as kinetic energy.

What does potential energy mean?

Potential energy is energy that is conserved or stored in a substance or an item. The object or substance's position, organization, or state determines the amount of stored energy. Consider it as energy with the "potential" to do work.

What three types of energy have potential?

Potential energy exists in stones perched on a cliff's edge. The potential energy will be transformed into kinetic energy if the stones fall. High on the tree, branches have the potential to fall, which gives them vitality.

To know more about potential energy visit :-

https://brainly.com/question/24284560

#SPJ4

all of the following are principles essential to a secure information system except A. Integrity B. Accountability C. Availability D. Confidentiality

Answers

The following are principles essential to a secure information system except for accountability.

Which is an essential principle of a secure information system?

An essential principle of a secure information system is the concept of defense in depth. This is a multi-layered approach to security, which involves the use of multiple layers of security controls. These security controls can include technical measures, such as firewalls, encryption, and authentication protocols; physical measures, such as locked doors and access cards; and administrative measures, such as policies and procedures.

By using multiple layers of security controls, it becomes much more difficult for an attacker to penetrate the system.

Furthermore, the presence of multiple layers of security also makes it easier to detect and respond to any attempts at unauthorized access.

The defense-in-depth approach is essential for protecting sensitive data and ensuring the integrity of information systems.

To learn more about information systems refer to:

brainly.com/question/24944623

#SPJ4

In a SWOT analysis, potential internal strengths are helpful when they identify all key strengths associated with the competitive advantage including cost advantages, new and/or innovative services, special expertise and/or experience, proven market leader, improved marketing campaigns, and so on.

Answers

In a SWOT analysis, potential internal strengths are helpful when they identify all key strengths associated with the competitive advantage including cost advantages, new and/or innovative services, special expertise and/or experience, proven market leader, improved marketing campaigns, and so on is true.

What is SWOT analysis?A person or organization can discover Strengths, Weaknesses, Opportunities, and Threats (SWOT) relevant to business competitiveness or project planning using the SWOT analysis, a strategic planning and strategic management technique. It is also known as situational analysis or situational evaluation. Strengths, Weaknesses, Opportunities, and Threats, or SWOT, is an acronym. Your firm has internal strengths and weaknesses that you can improve and exert some control over. Examples include your team members, your patents and other intellectual property, and where you are. Strength, Weakness, Opportunity, and Threat is referred to as SWOT. A SWOT analysis helps you to determine the S-W of your firm as well as larger possibilities and threats (O-T). Greater situational awareness is beneficial for both strategic planning and decision-making.

To learn more about SWOT analysis refer to:

https://brainly.com/question/25066799

#SPJ4

Drag each label to the correct location on the image.Match the file formats with the types of multimedia they can store.GIFFLVMP4AACPNGRM

Answers

A technique of delivering information or entertainment that incorporates several communication modalities is known as multimedia.

What is meant by multimedia?A system for transmitting information or entertainment that uses a variety of communication methods is known as multimedia. To present at school, you might use multimedia. For instance, multimedia could include audio clips, still images, and video.Contrary to traditional mass media, which includes little to no user interaction like printed material or audio recordings, multimedia is a form of communication that combines various content forms like text, audio, images, animations, or video into a single interactive presentation. Video podcasts, audio slideshows, and animated videos are a few common forms of multimedia.The fundamentals of software, hardware, and other technologies, as well as their applications in interactive communication, are all included in multimedia.

Matched the file formats :

JPEG - IMAGE

WMA - AUDIO

MP4 -VIDEO

MNG- ANIMATION

Learn more about multimedia refer to :

https://brainly.com/question/24138353

#SPJ4

Other Questions
A test has a mean of 75 with a standard deviation of 5. Which of the following scores is within one standard deviation of the mean Please help! 1.) Explain why the term cycle is used to describe the biogeochemical cycles.2.) Compare and contrast the carbon and nitrogen cycles. Specifically, identify which happens when either exists in very large quantities in the environment. PBS Evolution: Great Transformations 1. If the worlds history were compressed into one hour, how long have humans been here? Microbes. Single-celled organisms 2. How long ago did mammals first appear on earth? Mammals first appeared about 200 million years ago 3. What type of animal did the skull that Dr. Gingrich discovered resemble? Dr. Gingrich discovered resembled a whale 4. What did "Whale Valley" used to be? 5. What unusual feature did they find at the end of the early tetrapods limbs? 6. How long ago did animals first appear on Earth? About 800 million years. 7. When the mouse "eyeless" gene was implanted into the fruit flies, what happened? 8. How would walking on two legs be an advantage? How do you choose which variable to eliminate when doing elimination method? true or false : the performing forces for farmers madrigal consist of a four-voice satb ensemble. A window is to be built in the shape of a rectangle surmounted by an isoscelestriangle. The area of the window must be 6m2. Use Lagrange Multipliers to findthe width and height of the rectangle for which the perimeter of the window will beas small as possible. (Clarications: (1) A rectangle surmounted by a triangle hasthe shape of a stick drawing of a house as might be drawn by a child, a rectanglewith a triangle on top. (2) The window's perimeter is made up of three sides ofthe rectangle and the two equal length sides of the triangle. Draw a diagram! (3)This may require some industrial strength algebra!) How doe changing the amplitude of a WATER wave affect what we ee/hear/experience? How and how would we likely experience thi in our everyday life? The structures of the amino acids serine, proline, and glycine are shown:The first diagram is of the amino acid serine. Serine is composed of a two carbon backbone. The first carbon is bound one amino group, one hydrogen atom, and one carboxyl group. The other carbon is bound to two hydrogen atoms and one hydroxyl group. The second diagram is of the amino acid proline. Proline is composed of a ring. The ring is made up of four carbons and one nitrogen. Three of the carbons are bound to two hydrogen atoms. The nitrogen is bound to one hydrogen atom. The final carbon is bound to one hydrogen atom and one carboxyl group. The third diagram is of the amino acid glycine. Glycine is composed of a carbon bound to two hydrogen atoms, one carboxyl group, and one amino group.The secondary structure of a protein consists of a single long beta sheet. The outer edges of the beta sheet are composed of serine and proline amino acids.Explain how the structure of amino acids determine the function.A mutation occurred in DNA of a globular enzyme. If the serine amino acids were found within the active site of the enzyme, describe the effect this change is likely to have on enzymatic function.If a mutation in the DNA of a globular enzyme changed all of the serine and proline amino acids to glycine, predict how the relative position of the amino acid on the secondary structure of the beta sheet would be affected when the protein is placed in an aqueous solution.Justify your prediction by providing evidence that supports your claim. The depth of water in a tank oscillates sinusoidally once every 8 hours. If the smallest depth is 6. 6 feet and the largest depth is 9. 4 feet, find a possible formula for the depth in terms of time t in hours. Assume that at t=0 the water level is at the average of the depth and is rising. . In some cultures such as the Navajo people color What happens to the 3 carbon sugar that exits the Calvin cycle? The population of a city decreases by 0.9% per year. If this year's population is pp, which expression does NOT represent next year's population?0.9910.9910.991p0.991p(1-0.009)p(10.009)p1p-0.009p1p0.009p Two factors that universally interfere with family function in every nation are:- A). Ethnic differences and low income- B). Low income and high conflict- C). High stress and high income- D). Religious differences and low income In E. coli the tryptophan operon is controlled by attenuation. The beginning of the Trp mRNA has several codons for Trp in a row. When Trp amino acid is limiting, the mRNA ________?a. is destroyed and the operon is not transcribedb. basepairs to itself, allows RNA polymerase to continue transcribing the operonc. basepairs to itself, blocking RNA polymerase from transcribingd. attaches to the promotor sequence to activate RNA polymerase 24,000 at 5 5% for 5 years What's the value of the following game: You roll a 100 sided die with sides 1-100. You can either take this number of dollars, or pay $1 to roll again. You can keep on paying $1 to roll for as long as you like. Who were the principal patrons of Haydn and Mozart, and did the two composers maintain a good relationship with their respective patrons? Explain your answer. I NEED HELPPPPPPP, PLSSS What is the number of terms in the expansion of 2x 3y 2 )( 2x 3y 2 2? Which of the following are key tasks in the strategy-making, strategy-executing process? O Developing a proven business model, deciding on the company's strategic intent, creating a balanced Scorecard, and crafting a strategy O Setting objectives, choosing what business approaches and operating practices to employ, selecting a business model, identifying the three best strategy alternatives, and monitoring developments and initiating corrective adjustments O Setting objectives, identifying the best strategy alternatives, choosing the very best of the strategy alternatives, implementing and executing the chosen strategy, and deciding what portion of the company's resources to employ in the pursuit of sustainable competitive advantage O Deciding on the company's strategic intent, creating a balanced Scorecard for monitoring performance, crafting a strategy, and choosing what business approaches and operating practices to employ O Developing a strategic vision, mission, and core values; setting objectives; and crafting a strategy to achieve the objectives and move the company along the path to accomplishing the mission and vision hinhibited and constitutes copyright violation Which bag of potatoes is the better deal?