Ace - AI Tutor
Ask Our Educators
Textbooks
My Library
Flashcards
Scribe - AI Notes
Notes & Exams
Download App
jason gras

jason g.

Divider

Questions asked

BEST MATCH

1. Las tiendas Merqueya han decidido encerrar un área de 80 metros cuadrados fuera de uno de sus almacenes para exhibir plantas en maceta. El área encerrada debe tener forma rectangular y uno de sus lados debe ser la pared externa de la tienda. Dos lados de la barda se construirán con tablas y el cuarto será de malla galvanizada. Si el metro lineal de la barda de madera cuesta US$8 y el metro lineal de malla cuesta US$5, determine las dimensiones del área a encerrar cuyo costo de construcción sea mínimo. Tienda Madera Malla Galvanizada Madera 2. Ahora la tienda ha asignado un presupuesto mensual para publicidad por US $85.000. La gerencia de mercadotecnia estima que, si han invertido cierta cantidad en publicidad escrita y otra cantidad en publicidad por televisión, entonces las ventas mensuales estarán dadas por $$V(p, t) = 110p^{\frac{1}{2}}t^{\frac{2}{3}}$$ en dólares. Ustedes han sido contratados para determinar cuánto dinero debe invertir mensualmente la empresa en publicidad escrita y televisión para maximizar las ventas mensuales.

View Answer
divider
BEST MATCH

) The IEEE 802.11 frame has the same structure as Ethernet frame

View Answer
divider
BEST MATCH

Parkleigh Pharmacy is an upscale department store in Rochester, NY, that sells personal accessories and home decorations. Kaufmann’s is a departmental store based in Pennsylvania and has several stores in Rochester, NY. Kaufmann carries a broad range of products and caters to middle-class customers. A salesperson at Parkleigh is paid a straight hourly wage (e.g., no sales commission) and 30% discount from purchasing any product from Parkleigh’s store. A salesperson at Kaufmann gets an hourly wage lower than Parkleigh’s hourly wage but gets 5% commission on sales. However, the product salesperson buys from Kaufmann without a discount.

View Answer
divider
BEST MATCH

The table below gives data about electricity contracts for Swedish households for the period 2013-2023 (the data is from SCB and collected in June each year). It shows data for the four most common types of contracts (in percentages of the total population). Sweden 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 Variable price 37,4 40,0 44,3 48,6 49,2 50,9 49,4 51,9 55,9 55,3 54,7 1 year contract 16,0 16,1 15,1 13,3 13,3 13,3 12,8 9,6 9,8 9,8 4,9 2 year contract 5,7 5,3 4,6 3,3 3,3 3,2 3,2 3,1 2,8 2,6 1,5 3 year contract 16,5 16,3 14,4 12,7 12,5 12,6 14,0 13,2 11,7 12,7 8,9 A. For each of the contract types, do a scatter plot. For which cases does the plots suggest the use of a simple linear regression model? B. Calculate estimates of the slopes and intercepts of the regression lines. C. Calculate estimates of the standard deviations. D. Compute the coefficients of determination. Using this as a measure, which case is best modeled by linear regression?

View Answer
divider
BEST MATCH

4 How can a company offset political risk if there is a shock in a particular location causing disruptions? O Hedging O Purchase insurance O Share intellectual property with locals O Expand R&D

View Answer
divider
BEST MATCH

Texts: 1) Determine the correct length of pipe if the angle of bend is 60 degrees and the distance from center to center of the offset is 2-1/2, allowing 1-3/4 on each end of the pipe for the fittings. 2) List the steps in making a sweated joint in copper tubing. 3) List a type of joint commonly used for: a) cast-iron soil pipe b) soft copper tubing that is to be constantly disconnected and reconnected. c) copper tubing in a drainage system d) a large installation of wrought steel piping where weight is to be kept to a minimum e) vitrified clay pipe 4) Define briefly the following: Drainage fittings, sweated joints, wiping, burning, hard solder 5) a) What type of copper tubing would you use for an underground line carrying water at a pressure of 175 degrees? b) For venting a plumbing system 6) In making alterations to a waste and soil system, is it necessary to insert a new fitting in a 4" cast-iron stack located in a corner? What tool would you use to cut the pipe to secure the best results? 7) What is the main purpose of reaming the cut ends of pipe? 8) a) In order, what steps are to be taken in caulking a vertical joint in cast-iron pipe? b) Give two causes of defective caulked joints in a cast-iron pipe. 9) When it is necessary to complete the joints in a line of vitrified clay after the entire line is in place, what precaution would you take to ensure a satisfactory installation? 10) You wish to insert a branch fitting into an existing soil stack. What fitting would you use to facilitate the work?

View Answer
divider
BEST MATCH

1. Area 1 (a) Set up, (But Do Not Evaluate) an integral to find the area of the region bounded above by y = x^2 + 1, bounded below y = x, and bounded on the sides by x = 0 and x = 1. (b) Set up, (But Do Not Evaluate) an integral to find the area of the region bounded on the left by x = y^2, and bounded on the right x = y + 2.

View Answer
divider
BEST MATCH

In how many ways can a committee consisting of 4 men and 4 women be selected from a group consisting of 18 men and 22 women?

View Answer
divider
BEST MATCH

Throughout the term, you have studied events that shaped the history of the United States. To demonstrate your understanding of U.S. history from the Reconstruction to the modern era, you will choose one of the thematic essays and will write a paper detailing your answer.

View Answer
divider
BEST MATCH

Design Solution: You will be designing three simple functions: Encryption, decryption, and main. Encryption: You convert each character in the input message to a number using 'ord', add the offset to yield a new number, then use 'chr' to convert the result back into a character to be added to the encryption string. Decryption reverses this process by subtracting the offset from the encrypted character, so chr(ord('C') - 2) turns the 'C' back into the original 'A'. Note that 'ord' and 'chr' can convert values held in a variable and don't require literal values as input. Use a 'for loop' to iterate through the original input (plaintext) message to build the encrypted message, and another 'for loop' to iterate through the encrypted message to decrypt it back to the original message. Main function: The main function will take user input message and an offset. It will call encryption with the message and offset as parameters and return the encrypted message. Decryption will take the encrypted message and offset as parameters and will return the decrypted (supposed to be original) message. More details are given in the template file. Sample I/O: Start of IT-109 basic encryption/decryption program Enter a short message to be encrypted (30 chars or less): ABCD Enter an integer offset value to be used as a key (1 to 10): 2 Encrypted message: CDEF Decrypted message: ABCD Do you want to encrypt and decrypt more messages (y or n)? y Enter a short message to be encrypted (30 chars or less): This is a secret message Enter an integer offset value to be used as a key (1 to 10): 3 Encrypted message: Wklv#Iv#d#vhfuhw#phvdjh Decrypted message: This is a secret message Do you want to encrypt and decrypt more messages (y or n)? n End of basic encryption program.

View Answer
divider