What is your profit if you sell a carrier 4.70 per 100lbs and the truck was loaded with 41,200

Answers

Answer 1

Answer:

$1,936.40

Explanation:

First, we would need to divide the total weight of the truck (41,200 lbs) by the weight of each sale which is 100 lbs. After we do that we then need to multiply this product by the individual cost of each sale which is $4.70 like so...

(41,200 / 100) * 4.70 = x

412 * 4.70 = x

1,936.40 = x

We can see that the total sale amount would be $1,936.40. In order to calculate the profit, we need to subtract the costs from this value but since we are not told the cost we can only assume there is no cost and that this total sale amount is pure profit.


Related Questions

The horizontal bar at the top of a web page that typically holds a page title or course information is called a?

A. Banner
B. Headers
C. Favicon
D. Frame rate
E. Broobar

Answers

Answer B) Headers

Explanation:

I just took a Tech class, im pretty sure its headers. Hope this helps! -3-

which statement is true? O A Future games will be more context oriented. OB. Future games will be more product driven. Future games will incorporate nominal technologies. O D. The development process of future games will focus on products and genres. Which statement is true​

Answers

Answer:

B

Explanation:

__________ sourcing is a technique in problem-solving where the problem is shared with many people so that the people can offer potential solutions.

Answers

Answer:

crowd (crowdsourcing)

Explanation:

HOWARD!!!!!! THE PHONE IS RINGING!!!!!!!!!
Here's a crazy idea MA ANSWER IT!!!!!!!!!
That's Howard and his mom, Debbie Wolowitz from the big bang theory

Answers

Answer:

i am confused

Explanation:

Answer:

okay...

Explanation:

I'm back after 2 weeks.. How is everbody?

Answers

Doing good just chilling doing work

heeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeelp pt.3

Answers

Answer:

i guess option 1

What is programming? ​

Answers

the process or activity of writing computer programs.
Programming is the implementation of logic to facilitate specified computing operations and functionality.

What is the value of the variable result after these lines of code are executed? >>> a = 5 >>> b = 2 >>> c = 7 >>> result = ab - cb An error occurred. 6 24 -4

Answers

Answer:

The result of this is -4 is explained below.

Explanation:

if we properly write the question

a = 5  

b = 2  

c = 7

result= (a*b) - (c*b)

print(result)

The result of (a*b) =  5*2 = 10

The result of (c*b) = 2*7 = 14

now   (a*b) - (c*b)  =>   10-14  =>  -4

So the correct answer is -4

Answer:

An error occurred.

Explanation:

Why were people more likely to pay attention to the surroundings in the stone
age days?​

Answers

Answer:

cause every stinking thing wanted to kill them and they were exposed to the elements

Explanation:

:P happy to help hope it does

Project: Math Tutor Program with Error Handling
image of a man sitting on a branch he is about to cut off

Sawing off the branch you are sitting on can only end badly (Imagery supplied by photoschmidt/iStock via Getty)
Unlike the man in the picture, you already know how to plan for and handle errors before they happen. You know how to create and use lists. You know how to use loops. You are going to put these abilities to work in this project. You are going to write a program to help young children with their arithmetic skills.

Objectives
Plan and create a program to practice math facts with error handling.

Your Goal
Your users are young children learning their arithmetic facts. The program will give them a choice of practicing adding or multiplying.

You will use two lists of numbers.

numA = [4, 1, 6, 10, 2, 3, 7, 9, 11, 12, 5, 8]

numB = [2, 12, 10, 11, 1, 3, 7, 9, 4, 8, 5, 6]

If the user chooses adding, you will ask them to add the first number from each list. Tell them if they are right or wrong. If they are wrong, tell them the correct answer.
Then ask them to add the second number in each list and so on.

If the user chooses multiplying, then do similar steps but with multiplying.

Whichever operation the user chooses, they will answer 12 questions.

Write your program and test it on a sibling, friend, or fellow student.

Errors
Think about the types of errors a user can make. Add at least one kind of error handling to your program.

What to Submit
Save your program with a .txt extension. You cannot upload a .py file.
Before you turn your project in, read the rubric.

I need this to be original work

Answers

Answer:

finished = False

numA = [4, 1, 6, 10, 2, 3, 7, 9, 11, 12, 5, 8]

numB = [2, 12, 10, 11, 1, 3, 7, 9, 4, 8, 5, 6]

while True:

 pick = input("Would you like to practice addition (+) or multiplication (*)?")  

 

 if pick == "+":

   for o, k in zip(numA, numB):

     ans = input(f"What is {o} + {k}?")

     

     if ans == str(o + k):

       print('Correct!\n')

     else:

       print(f"Incorrect! The correct answer was {o + k}\n")

   finished = True

 

 elif pick == "*":

   for o, k in zip(numA, numB):

     ans = input(f"What is {o} * {k}?")

     

     if ans == str(o * k):

       print('Correct!\n')

     else:

       print(f"Incorrect! The correct answer was {o * k}\n")

   finished = True

 

 else:

   print('Incorrect Input!')

 

 if finished:

   print('Thanks for playing!')

   break

Explanation:

aduhhhh

why is it important to prevent financial loss

Answers

Answer:Typically, loss prevention is seen as a cost to the business, because it involves expenditure – of time, energy, and sometimes money. However, loss prevention strategies that are carried out effectively and efficiently will not only protect your bottom line, but can help your businesses run more smoothly, too.

Explanation:

Robin wants to make a database of all of the software on a laptop. Which of the following should be left off of the list?

A.
a program that edits photos

B.
the camera on the laptop

C.
an app for sharing photos

D.
a program that organizes photos

Answers

Answer:

B, I believe

Explanation:

Since software is code and hardware is something physical, the camera  would not be on the list.

9.4 Code Practice
The question is in the photo because this would’ve been too long to type and this is in Python

I need this kinda asap!

(Sorry for asking a lot and I’m sorry if the photo is hard to see I tried my best to get everything)

Answers

I've included my code in the picture below. Best of luck.

1. What is output to the screen by the following code?
int n = 10;
while (n > e)
n--;
System.out.print (n%4 +
");
a. 2103210321
b. 21032 103 2
C. 1032 1032 10
d, 103210321
e. 1230123012

Answers

Answer:

C will be your answer because i love you you like

Explanation:

Which data type can store decimal or fractional numbers?
A. boolean
B. Integer
C. Chat
D. Floating point

Answers

The answer is A. Boolean

Answer:

♡ madeline here ♡

its a! have a great day

stay safe & be yourself

✧・゚: *✧・゚:・゚✧*:・゚✧・゚

Explanation:

What is a compiler? O a tool used to integrate multiple software programs O a tool used to extract a single software program from an integrated collection of programs O a computer software application that translates binary computer machine language into a computer programming language a computer software application that translates a computer programming language into a binary computer machine language O


Please Help I'm testing!!!! ILL MARK YOU BRAINLIEST TO WHOEVER HELPS ME​

Answers

Answer:

Here is an explanation if this helps this is what i know :)

Explanation:

a program that converts instructions into a machine-code or lower-level form so that they can be read and executed by a computer.

Answer:

It is C on Edge, or a computer software application that translates binary computer machine language into a computer programming language

Explanation:

A compiler is "a program that converts instructions into a machine-code or lower-level form so that they can be read and executed by a computer."

C would be correct because you are translating machine code, or binary language, into code that can be executed by a computer, or a computer programming language.

write any four commandments of Computer ethics​

Answers

Answer:

Thou shalt not use a computer to harm other people

Thou shalt not interfere with other people's computer work

Thou shalt not snoop in other people's computer files

Thou shalt not use a computer to steal

Thou shalt not use a computer to bear false witness

Thou shalt not appropriate other people's intellectual output

Explanation:

Question: 11
Which of the following rules is the least specific?
#info
p.info.important
.info
p.info

Answers

Answer:

The detail answer to this question is given in the explanation section.

The correct answer is .info

Explanation:

Let look as each statement

p.info.important

this is a specific  because it says

go to important property which is inside info property  which is inside P

.info  is less specific

because it will go to .info No function is  given whose property is this.

p.info

This is some what specific. As it says select .info property which is inside p

Need help on this it’s the last one I need

Answers

Design a ringtone like it says


Select all the ways in which business professionals might use a spreadsheet in their jobs.
editing graphics
creating a graph for a presentation
tracking financial information
organizing numeric data
conducting a query
making calculations
writing business letters

Answers

Answer:

By making calculation.

Explanation:

Because spreadsheet is a calculation type software.

What is the location used by users to configure delegate access on their own mailboxes?

O Backstage view > Account Settings

O Backstage view > Permissions

O Inbox > Permissions

O Calendar > Permissions

Answers

Answer:

Backstage view > Account Settings

The delegate access for the mail can be granted with the change in the account settings from the backstage view.

What is delegate access?

Delegate access is given as the feature in the Outlook that has been used for the sharing of the folder in the mail. The delegate access has been considered as the access to someone else on one behalf.

The location used by the user that enables him with the delegate access to their mail by settings of backstage view followed to account settings. Thus, option A is correct.

Learn more about delegate access, here:

https://brainly.com/question/16930004

#SPJ2

Jason wants to add an animated logo to his web site. Why type of image should he use? (5 points)
GIF
IMG
JPG
MPG

pls help mehhhh

Answers

Answer:gif

Explanation:

“ In short, GIFs are a series of images or soundless video that will loop continuously and doesn't require anyone to press play.”

Answer:

GIF

Explanation:

A GIF Is a moving picture, like a short looping video

15 points
Choose all of the statements that describe a serif typeface

no points on the ends of the characters
guides a reader’s eyes from one character to the next on printed documents
ends of the characters have finishing points
easier to read on different computer setups


Choose all of the statements that describe a sans serif typeface

more easily digitized
easier to read on small mobile devices
guide a reader’s eyes from one character to the next on printed documents
no points on the ends of the characters

Answers

Serif typeface:

ends of the characters have finishing points

guides a reader's eyes from one character to the next on printed documents

Sans serif typeface:

more easily digitized

easier to read on small mobile devices

no points on the ends of the characters

The correct statements for the Serif typeface are:

ends of the characters have finishing pointsguides a reader's eyes from one character to the next on printed documents

What is a Font?

This refers to the use of characters in a particular design while using text which makes a written work artistic.

Sans serif typeface:more easily digitizedeasier to read on small mobile devicesno points on the ends of the characters

Read more about typefaces here:

https://brainly.com/question/1991747

#SPj2

PLEASE HELP ME!!!
What information will be displayed as a result of an advanced search using the NOT command?

Answers

Answer:

Use NOT in a search to:

Explanation:

exclude words from your search

narrow your search, telling the database to ignore concepts that may be implied by your search terms

example:  cloning NOT sheep

Give an idea of a law u would like to create

Answers

I would like to create a law where parents can’t take your stuff or control my life when I’m 18

I would create a law that anyone who would do something against God's laws, would be put in jail for a week. Then, be asked if they would like to accept Jesus as their savior, and turn from their sins.

This is just my idea :)

God bless

Select cell A1. Activate the Track Changes feature, highlight all changes on screen, click the When check box to deselect it, and then create a History worksheet. Select the data on the History worksheet, copy it to the Clipboard, add a new worksheet (in the third position), and paste to keep source column widths. Rename the sheet Changes.

Answers

Answer:

The Track changes feature in Microsoft Excel is used to monitor changes made to a or all worksheets in a workbook. These changes can also be compiled in a new worksheet.

Explanation:

To track changes made to a cell or group of cells and save it to a new worksheet, go to the review tab, click on the Track Changes option and select Highlight Changes in the changes group, then click on the highlight track changes dialog box, input "All" in the "When" text box option and click the "list track change in new sheet" option to save changes in a new worksheet, then click ok.

Which of the following are examples of the good use of indentation and line breaks?
Choose all that apply.
the use of line breaks to
separate segments of code
the use of indentation to create segments of code that are easy to identify
the omission of line breaks so that code can be written without any interruption
the use of indentation that hides segments of code
ANSWER: A & B

Answers

A and B

bro trust me....

Answer:

A and B i got it right thanks to the guy above me

Explanation:

Ivan wants to have code in a game that will make it possible to change the speed of a swimmer in the game. Which of these does Ivan need?

A.
a Boolean value

B.
output

C.
a variable

D.
a database

Answers

Answer:

C. Variable

Explanation:

I hope it helps

If you had a circuit with a voltage of 228 and a resistance of 13,the current would be ____ amps. (ROUND TO TWO DECIMALS PLACES) hint....using V=IR Rewrite the question to solve for I.

Answers

Sidjej skjssj delete 229 decimal v=

What feature allows you to access previous copies of a document on OneDrive?

Answers

Answer:

go to downloads and find drives

Explanation:

Other Questions
wich ones is the answer ? A candy company puts 2 gumdrops in each bag. How many gumdrops will the company need to fill 687,250 bags? y = 5x-4x + 3y = -11 PLEASE HELPPPPart 1) Do mountains exist in FL? If so, which part of FL can they be found? If not, where in the U.S can it be found?Part 2) Do valleys exist in FL? If so, which part of FL can they be found? If not, where in the U.S can it be found? Bacteria can reproduce through asexual or sexual reproduction Environmental conditions for a particular bacteria species are good and the bacteria are thriving. Which form of reproduction will the bacteria most likely use?A The bacteria will most likely reproduce through asexual reproduction to maintain genetic continuity.B. The bacteria will most likely reproduce through sexual reproduction to maintain genetic continuityC. The bacteria will most likely reproduce through asexual reproduction to increase genetic diversity,D. The bacteria will most likely reproduce through sexual reproduction to increase genetic diversity what is the significance of human development index 14. Which of the following is a type of carbohydrate found in food and commonly eaten too much and causes health problem? a. Artificial sweetners b. Free sugars c. Glucose d. Salt What organizational strategy might best be used if you were to write a description of your bedroom?1- order of importance2- chronological order3- spatial order PLease help me i don understand this THIS IS URGENT Is 6 less than or equal to 6 Write a paragraph that explains the central idea of the article The biggest stories of 2020 Use at least TWO specific details from the text to support your response. What does the reader learn about the Maasai people from "The Beginnings of the Maasai... chloe has three dogs. Corky weighs twice as much as muffin.Rufus weighs twice as much as corky. the total weight of the dog is 77 pounds. how much does each dog weigh? WILL GIVE BRAINLIEST. The data give the average number of days in May that are clear and cloudy in two cities. Choose the verb which completes the sentence.When she got to work, Tina remembered that her presentation was _______ on the kitchen counter at home.A. layingB. lyingC. lain An airplane is traveling at an altitude of 15,490 meters. A box of supplies is dropped from its cargo hold. What is the cargo's velocity when it hits the ground? (Show your work and do not forget units) Given this equation, what is the y-intercept? y = 5x12 b = The table shows the states of some elements.Why is it important to include the label "at room temperature" in the second column heading? (Look at the photo I attached to understand more)A) The state of a substance will change if you take it outdoors.B) Some substances can not be cooled. C) Some substances cannot be heated. D) Most substances exist in different states at different temperatures. Two triangular tiles each have two sides measuring four inches. Which is a true statement?A) Their corresponding angles are congruent.B) The triangles are congruent.C) The triangles may be congruent.D) The triangles cannot be congruent. Why are hotdogs tacos? Please answer a full explanation on why they are not sandwiches. This is very IMPORTANT.