what is the meaning of life​

Answers

Answer 1

Answer:

To be totally honest... I cant tell you. All I know so far is that you are born to die

Explanation:


Related Questions

Miscellaneous costs associated with the purchase of new equipment? include:
Insurance costs before the equipment is ready for use $3,000
Maintenance costs before the equipment is ready for use 700
Insurance costs after the equipment is placed into service 1,400
Cost of trial run 800
Training costs for employees to learn how to use equipment 400
What is the amount assigned to the new? equipment?
A. $4,200.
B. $4,500.
C. $4,900.
D. $6,300.

Answers

Answer:

C. $4,900.

Explanation:

Determining the amount assigned to the new equipment

Details                                                                                                    Amount

Insurance costs before the equipment is ready for use                     $3,000

Add: Maintenance costs before the equipment is ready for use       $700

Add: Cost of trial run                                                                              $800

Add: Training costs for employees to learn how to use equipment  $400

Total costs assigned to the new equipment                                      $4,900

So, the correct options is option c.

Logistics Solutions provides order fulfillment services for dot merchants. The company maintains warehouses that stock items carried by its dot clients. When a client receives an order from a customer, the order is forwarded to Logistics Solutions, which pulls the item from storage, packs it, and ships it to the customer. The company uses a predetermined variable overhead rate based on direct labor-hours. In the most recent month, 190,000 items were shipped to customers using 8,300 direct labor-hours. The company incurred a total of $29,050 in variable overhead costs. According to the company’s standards, 0.03 direct labor-hours are required to fulfill an order for one item and the variable overhead rate is $3.55 per direct labor-hour. Required: 1. What is the standard labor-hours allowed (SH) to ship 190,000 items to customers? 2. What is the standard variable overhead cost allowed (SH × SR) to ship 190,000 items to customers? 3. What is the variable overhead spending variance? 4. What is the variable overhead rate variance and the variable overhead efficiency variance?

Answers

Answer:

1. Standard labor hour allowed 5,700 Hour

2. Standard variable overhead cost allowed $20,235

3. Variable overhead spending variance 8,815 U

4. Variable overhead rate variance 415 F

Variable overhead efficiency variance 9230 U

Explanation:

1. Calculation to determine the standard labor-hours allowed

Standard labor hour allowed = 190,000*.03

Standard labor hour allowed= 5,700 Hour

Therefore the Standard labor hour allowed is 5,700 Hour

2. Calculation to determine the standard variable overhead cost allowed

Using this formula

Standard variable overhead cost allowed=Standard quantity of labour hours allowed*Standard variable overhead rate

Let plug in the formula

Standard variable overhead cost allowed = 5,700*3.55

Standard variable overhead cost allowed = $20,235

Therefore the Standard variable overhead cost allowed is $20,235

3. Calculation to determine the variable overhead spending variance using this formula

Variable Overhead Spending Variance=Standard Cost- Actual Cost

Let plug in the formula

Variable overhead spending variance = 20,235-29,050

Variable overhead spending variance = 8,815 U

Therefore the Variable overhead spending variance is 8,815 U

4. Calculation to determine the variable overhead rate variance

Using this is formula

Variable overhead rate variance

=(Standard Rate*Actual Hour)-Actual cost

Let plug in the formula

Variable overhead rate variance = (3.55*8300-29050)

Variable overhead rate variance= 415 F

Therefore the variable overhead rate variance is 415 F

Calculation to determine variable overhead efficiency variance

Using this formula

Variable Overhead Efficiency Variance=

(Standard Hours - Actual Hours ) x Standard Rate

Let plug in the formula

Variable overhead efficiency variance = (5700-8300)*3.55

Variable overhead efficiency variance = 9230 U

Therefore the Variable overhead efficiency variance is 9230 U

Other Questions
Hurry please and show your work! Thanks! Useless answers will be reported!Veterinary doctors marked 30 deer and released them. Later on, they counted 150 deer,12 of which had marks. To the nearest whole number, what is the best estimate for thedeer population? find the missing length!!!!! Victor sold cupcakes and cookies yesterday. Each cupcake sold for $2.25 and each cookie sold for $0.50. At the end of theday, Victor had sold $95.25 worth of cookies and cupcakes. If he sold 68 cupcakes and cookies combined, how manycupcakes were sold and how many cookies were sold? What was guatemala doing during World War II The nucleus in the center of an atom contains ___ and __ ? Gina is shopping for a new bicycle. The price of the bicycle is $300 and there is an 8% sales tax. Gina wants to know the total price of the bicycle including soles tax. How much sales tax does Gina pay on the bicycle? Enter the amount in the table. The parabola is swached vertically by a factor of 5. Which is the better definition of line of best fit? Leo is constructing a tangent line from point Q to circle P. What is his next step? Mark the point of intersection S of the segment created from the arcs and circle R, and construct line RS. Mark the point of intersection S of circles R and P, and construct line QS. Construct arcs from point Q that are greater than half the length of segment PQ. Construct a circle from point P that has a radius of P and the intersection of circles P and R. resuelve la inecuacin (3x Which of these happens when you add the prefix mis- to the word spell?A. The prefix is followed by a hyphen.B. The last /is dropped.C. The word becomes misspell.D. The s is dropped from spell. Imagine riding on a sled, or in a wagon, or perhaps a school bus that stops quickly or suddenly. What happens to your body if you are not expecting the sudden stop? 2/3 - 3/2y + 1/3y + 4 = 0 those in agriculture industry need to be particularly mindful of safety because why? Write a paragraph explaining where DNA is located in the cell and what makes up DNA (there are multiple parts)Ill give brainiest pls I just need a paragraph about it pls How are imperialized people viewed by the writer? Implement the above in c++, you will write a test program named create_and_test_hash.cc . Your programs should run from the terminal like so:./create_and_test_hash should be "quadratic" for quadratic probing, "linear" for linear probing, and "double" for double hashing. For example, you can write on the terminal:./create_and_test_hash words.txt query_words.txt quadratic You can use the provided makefile in order to compile and test your code. Resources have been posted on how to use makefiles. For double hashing, the format will be slightly different, namely as follows:./create_and_test_hash words.txt query_words.txt double The R value should be used in your implementation of the double hashing technique discussed in class and described in the textbook: hash2 (x) = R (x mod R). Q1. Part 1 (15 points) Modify the code provided, for quadratic and linear probing and test create_and_test_hash. Do NOT write any functionality inside the main() function within create_and_test_hash.cc. Write all functionality inside the testWrapperFunction() within that file. We will be using our own main, directly calling testWrapperFunction().This wrapper function is passed all the command line arguments as you would normally have in a main. You will print the values mentioned in part A above, followed by queried words, whether they are found, and how many probes it took to determine so. Exact deliverables and output format are described at the end of the file. Q1. Part 2 (20 points) Write code to implement double_hashing.h, and test using create_and_test_hash. This will be a variation on quadratic probing. The difference will lie in the function FindPos(), that has to now provide probes using a different strategy. As the second hash function, use the one discussed in class and found in the textbook hash2 (x) = R (x mod R). We will test your code with our own R values. Further, please specify which R values you used for testing your program inside your README. Remember to NOT have any functionality inside the main() of create_and_test_hash.ccYou will print the current R value, the values mentioned in part A above, followed by queried words, whether they are found, and how many probes it took to determine so. Exact deliverables and output format are described at the end of the file. Q1. Part 3 (35 points) Now you are ready to implement a spell checker by using a linear or quadratic or double hashing algorithm. Given a document, your program should output all of the correctly spelled words, labeled as such, and all of the misspelled words. For each misspelled word you should provide a list of candidate corrections from the dictionary, that can be formed by applying one of the following rules to the misspelled word: a) Adding one character in any possible position b) Removing one character from the word c) Swapping adjacent characters in the word Your program should run as follows: ./spell_check You will be provided with a small document named document1_short.txt, document_1.txt, and a dictionary file with approximately 100k words named wordsEN.txt. As an example, your spell checker should correct the following mistakes. comlete -> complete (case a) deciasion -> decision (case b) lwa -> law (case c)Correct any word that does not exist in the dictionary file provided, (even if it is correct in the English language). Some hints: 1. Note that the dictionary we provide is a subset of the actual English dictionary, as long as your spell check is logical you will get the grade. For instance, the letter "i" is not in the dictionary and the correction could be "in", "if" or even "hi". This is an acceptable output. 2. Also, if "Editors" is corrected to "editors" that is ok. (case B, remove character) 3. We suggest all punctuation at the beginning and end be removed and for all words convert the letters to lower case (for e.g. Hello! is replaced with hello, before the spell checking itself).Do NOT write any functionality inside the main() function within spell_check.cc. Write all functionality inside the testSpellingWrapper() within that file. We will be using our own main, directly calling testSpellingWrapper(). This wrapper function is passed all the command line arguments as you would normally have in a main squares and rectangles both have four angles that measure 45 each true or false What term is used by chemists to quantitatively describe a solution in which a relatively small amount of solute is dissolved? Ordena los trminos del 1 al 5, de tal manera quecada trmino se construya del trmino (s) anterioExplica por qu cada figura est en el lugar queeliges. Los trminos son: cuadriltero, cuadradorombo, rectngulo y paralelogramo