When determining the cost of an item, the seller will often analyze the demand as well as the supply before setting the price of the blank
.

Answers

Answer 1

Answer:

The price of a commodity is determined by supply and demand. therefore the answer is COMMODITY. that other person is wrong

Answer 2

Answer:  The correct answer is Commodity

Explanation:  This answer is confirmed correct.

Commodity pricing is established based on supply and demand.


Related Questions

does anyone have a pdf of the greatest by eddie van der meer????

Answers

Answer

aight' so im finding it but i have to asnwer before someone else so look in the comments for it.

Explanation:

Just wait i getting it rn

Where do i go to find questions to answer
13 points if you can help me PLz

Answers

Answer:

if you are on a phone there should be a Answer tab at the bottom in the middle next to influence but if you are on a computer go to the Brainly home page and scroll down to the bottom (not all the way) and there should be some questions to answer

How do I turn off lanschool student?

Answers

Answer:

First try logging out. If that doesn't work there is a really helpful video on how to uninstall and reinstall with everything still there. Hope this was helpful.

Urgent Please Help ASAP!! 50 Points!! Assignment due in 15 minutes!!

Reflect on the questions below.

1.) Why do some people resist help from others?
2.) Is it useful to work separately at some point in time during pair programming?
3.) How is pair programming beneficial?
4.) In pair programming, how can we better work together?

Answers

Questions:

1.) Why do some people resist help from others?

2.) Is it useful to work separately at some point in time during pair programming?

3.) How is pair programming beneficial

4.) In pair programming, how can we better work together?

Answers:

1.) Some people are prideful in their work, or they're just embarrassed to ask for assistance.

2.) It can be done, but pair programming is further effective with others.

3.) Pair programming is beneficial because you can get the job done faster.

4.) In pair programming, you can better work with your partner by working on different sections, and then checking each other's tail when the job is almost finished.

These answers are a combination of my knowledge and opinion(s). If you need any more help, do not hesitate to let me know. Glad I could help! :)

what is computer?write feature of computer​

Answers

Answer:

An electronic device for storing and processing data, typically in binary form, according to instructions given to it in a variable program is computer.

And it's feature are:

Multitasking.Accurate & Speed.Efficient.Reliability.Recoverability

what is a computer?.

a computer is a electronic device that works under the control of information stored in its memory.

features of a computer

multitasking.

In Word you can _____ or merge two different copies of the same document into one document. a. replicate b. duplicate c. copy d. combine

Answers

D) combine
combine and merge are synonyms of each other.
hope this helps x

five reasons Why Photographers Aren't Filmmakers

Answers

Answer:

1. They don't like recording things (They'd rather take photos)

2. It doesn't take much time to take a good photo as it is to record a video

3. They'd rather work alone or with others who want pictures taken

Explanation:

These are weird reasons but true..I'm a photographer so these are my reasons. I don't have others tho. Sorry.

Which of the following statements is true regarding local area networks? SELECT 3 OPTIONS.
A: traditionally used Ethernet cables to connect devices
B: can include wired and wireless connections
C: often used in homes and small businesses
D: uses satellite technology for connections
E: connects devices in a large geographic area

Answers

Answer:

A, B and C are correct

Explanation:

A : yes, they did use ethernet cables.

B : Lan networks connected via wires are called , "LAN" and LAN networks that connect to devices wirelessly are called, "WLAN" (Wireless Local Area Networks).

C : LAN networks are a type of network that is based in a small geographical area, therefore, it can be used in homes and small businesses.

Statements that can be considered to be true about local area networks in this question are;

A: traditionally used Ethernet cables to connect devices

B: can include wired and wireless connections

C: often used in homes and small businesses

Local area network can be regarded as is group of two or more connected computers which are positioned in  a small geographic area, it could just a small building.

This connection can be a wired connection, it can also be a wireless connection.

Example if this network is Home networks ,another one is small business networks.

Therefore, option A,BC are all correct.

Learn more at:

https://brainly.com/question/22245838?referrer=searchResults

I need to know how to input this into python on zybooks. I've been stuck on this for days and I keep running into "invalid syntax" or "unknown word red" Summary: Given integer values for red, green, and blue, subtract the gray from each value. Computers represent color by combining the sub-colors red, green, and blue (rgb). Each sub-color's value can range from 0 to 255. Thus (255, 0, 0) is bright red, (130, 0, 130) is a medium purple, (0, 0, 0) is black, (255, 255, 255) is white, and (40, 40, 40) is a dark gray. (130, 50, 130) is a faded purple, due to the (50, 50, 50) gray part. (In other words, equal amounts of red, green, blue yield gray). Given values for red, green, and blue, remove the gray part. Ex: If the input is 130 50 130, the output is: 80 0 80 Find the smallest value, and then subtract it from all three values, thus removing the gray.

Answers

Answer:

Here is the C++ program:  

#include <iostream>   //to use input output functions  

using namespace std;   //to identify objects cin cout  

int main() {   //start of main method  

int red,green,blue,smallest;   //declare variables to store integer values of red,green, blue and to store the smallest value  

cout<<"Enter value for red: ";  //prompts user to enter value for red  

cin>>red;  //reads value for red from user  

cout<<"Enter value for green: ";  //prompts user to enter value for green  

cin>>green;  //reads value for green from user  

cout<<"Enter value for blue: "; //prompts user to enter value for blue  

cin>>blue;   //reads value for blue from user  

//computes the smallest value

if(red<green && red<blue) //if red value is less than green and blue values  

smallest=red;   //red is the smallest so assign value of red to smallest  

else if(green<blue)   //if green value is less than blue value  

smallest=green;   //green is the smallest so assign value of green to smallest  

else  //this means blue is the smallest  

smallest=blue;  //assign value of blue to smallest  

//removes gray part by subtracting smallest from rgb  

red=red-smallest;  //subtract smallest from red  

green=green-smallest;  //subtract smallest from green  

blue=blue-smallest;  //subtract smallest from blue  

cout<<"red after removing gray part: "<<red<<endl;  //displays amount of red after removing gray  

cout<<"green after removing gray part: "<<green<<endl;  //displays amount of green after removing gray

cout<<"blue after removing gray part: "<<blue<<endl;  } //displays amount of blue after removing gray  

Explanation:

I will explain the program using an example.  

Lets say user enter 130 as value for red, 50 for green and 130 for blue. So

red = 130  

green = 50  

blue = 130  

First if condition if(red<green && red<blue)   checks if value of red is less than green and blue. Since red=130 so this condition evaluate to false and the program moves to the else if part else if(green<blue) which checks if green is less than blue. This condition evaluates to true as green=50 and blue = 130 so green is less than blue. Hence the body of this else if executes which has the statement: smallest=green;  so the smallest it set to green value.  

smallest = 50  

Now the statement: red=red-smallest; becomes:  

red = 130 - 50  

red = 80  

the statement: green=green-smallest;  becomes:  

green = 50 - 50  

green = 0  

the statement: blue=blue-smallest; becomes:  

blue = 130 - 50  

blue = 80  

So the output of the entire program is:  

red after removing gray part: 80                                                                                                 green after removing gray part: 0                                                                                                blue after removing gray part: 80  

The screenshot of the program along with its output is attached.

In the Page Setup dialog box, the _____ tab gives you options to change the paper size.
a.
Layout
b.
Paper
c.
Sizes
d.
Margins

Answers

Answer:

I think its either layout or sizes

Which graphic file format would you choose if you needed to make an animated graphic for a website?

ai

png

gif

py
please help

Answers

Answer:

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

Explanation:

The correct option for this question is gif.

Gif is a series of images that are used as animated graphics for a website. A gif is the file format of an animated image. You may have seen many animated images on websites like stickers etc.

other options are not correct because:

ai: is adobe illustrator file format

png: png is an image file format but not for an animated image

py: py is a file extension of the python file.

Answer:

gif

Explanation:

35. John makes $700.00 per week working as a janitor at Passaic High School.
What is his CASH INFLOW per month? (SHOW YOUR WORK)(3 points) *

Answers

Explanation:

a is the answer

D
E
A
C
B
For this lab, you will find the area of an irregularly shaped room with the shape as shown above.
Ask the user to enter the values for sides A, B, C, D, and E and print out the total room area.
Remember the formula for finding the area of a rectangle is length width and the area of a right triangle is 0.5 * the base" heigh
Please note the final area should be in decimal format.
Sample Run
Enter side A: 11
Enter side B: 2
Enter side C: 4
Enter side D: 7
Enter side E: 1
Sample Output
Room Area: 53.5

Answers

In python:

a = float(input("Enter side A: "))

b = float(input("Enter side B: "))

c = float(input("Enter side C: "))

d = float(input("Enter side D: "))

e = float(input("Enter side E: "))

print(f"Room Area: {(a * b) + ((a - c) * (d - (b + e))) + (0.5*(a - c) * e)}")

I hope this helps!

idk just anwser this and get get some points lol

Answers

Answer:

ok thxxxxx :)

Explanation:

Answer:

thank you

Explanation:

What is the result when you run the following program?

print(“2 + 7”)
print(3 + 1)

Answers

Answer:

line 1 = 2+7 (you added quote marks)

line 2 = 4 (you did not add quote marks, which adds both nums together)

Explanation:

I need to finish this assignment today. please help me!

Define: State your Goal What personal value would you like to share with the world?

what does this mean? I don't understand what a personal value is.​

Answers

Answer:

persanal value is the goal

Explanation:

mine would be:

less polution, the value is the goal

Translate the following code into hexidecimal and to octadecimal


....
110000100111000011001100111

Answers

Answer:

1

Explanation:

me want brainliest pwease

Which of the following are likely reasons people enjoy watching lifelike stories on the screen? Select all that apply.


People develop a connection that is emotional with the stories and/or characters.

The stories remind them of situations they are familiar with.

The situations they see are not familiar to them.

They are distracted by the video and sound combination.

Answers

Answer:

c

Explanation:

I dont know but omost every time I guess I get it right

Answer:

A: People develop a connection that is emotional with the stories and/or characters.

and

D:The stories remind them of situations they are familiar with.

Explanation:

edg2021

What is the difference between internal hardware and software?

Answers

Answer:

Internal Hardware - Internal hardware is the hardware within the computer that you can physically see and touch if you were to take apart the computer.

Internal Software - Internal software is software within the computer that you cannot physically touch. It is a collection of programming code installed on your computer's hard drive.

Explanation:

Answer:

D.  Internal hardware is physical parts that help the computer work; software is the programs and applications that make the computer work.

Explanation:

Just finished this section

does anyone or has anyone ever done it?? please help it’s for like skills!

Answers

Answer:

is this mathmatics

Explanation:

describe oxfird cleric​

Answers

Answer:

Explanation:

The Oxford Cleric, or otherwise just known as the Cleric, is from a series of tales called the Canterbury Tales. He had a rather simple life as a cleric and was more commonly seen as a philosopher. The Cleric was just a student who used all of his money on books instead of on clothes and was considered poor.

Which of the following is the primary benefit of becoming a member in the Dramatists Guild of America?


group health insurance

free legal advice

standard salary

networking opportunities

Answers

Answer:

networking opportunities

Explanation:

  The Dramatists Guild of America does offer playwrights legal advice and information on establishing royalties. However, the primary benefit of membership in the DG is networking opportunities. Playwriting is a limited field, and networking opportunities are essential for work.

What is a row of data in a database called?
Field
File
Record
Title

Answers

Answer:

record

Explanation:

i took the test and got it right but give brainliest to the person above me

To simply the task of creating a heading for a science report, a student can create a _____ to run when a specific button is pressed on the quick access toolbar.

i need answer asap
citation

caption

macro

template

Answers

Answer:

macro

Explanation:

The answerrrrr is macro (:

Which of the following is NOT a characteristic developed by New Journalism?
illustrations and photographs
flashy page layouts
satirical news stories
banner headlines

Answers

Explanation:

I think it's d.

Hope this help

An instrument used to measure the amount of electrical current intensity in a circuit

Answers

the instrument is an ammeter

Which utility causes the computer to run slow? defragmentation utility OR compression utility?

Answers

Answer:

compression

Explanation:

What is the dependent variable, After learning about electricity, a student wants to see if electricity flows better through different materials. Our wonderful student has different materials: copper wire, aluminum wire, carbon fiber, and gold wire. The student attaches a small lightbulb to a 9 volt battery, and uses each wire to see how bright the lightbulb lights up when connected to each material.

Answers

Answer:

The Lightbulb is the dependent variable.

Explanation:

The dependent variable is defined as the variable that the researcher is measuring or testing and it observes the direct effect/change brought by manipulation in the independent variable. In the given experiment, the lightbulb would be characterized as the dependent variable as it is being tested by the researcher. He controls the independent variable(by using different wires) to observe its direct impact on the way the lightbulb lits. Thus, it(lightbulb) is the dependent variable.

Farm tools/Equipment:
Parts:
Quantity:
Defect type
manufacturing/Design/marketing
Condition​

Answers

Answer:

sorry but I don't understand your question can you elaborate it better

Answer:

Farm/Equipment:

Preparation , Mechanical processing , Heat processing , Preservation , Packaging

Parts:

Tractor, backhoe, baler, plow, harrows, seed drill

Quantity:

Farmers must learn how to manage both soil and water resources in an integrated manner

Defect Type:

Broken bones , Crush injuries , Burns , Electrocution , Spinal cord and, traumatic brain injuries , Amputation injuries

Manufacturing/Design/Marketing :

Internal resource constraints for new product development

Eroding margins due to higher material and assembly costs

Low throughput

Inefficient workflows resulting in higher cost of manufacturing

Rising warranty costs

Condition​: Vibration Analysis/Dynamic Monitoring:

Shock pulse analysis

Fast fourier transforms

Broadband vibration analysis

Ultrasonic analysis

Power spectral density (PSD)

Time waveform analysis

Spectrogram/spectrum analysis

Hope this helps

Y’all know any movie sites I can go on?

Answers

Answer:

Tinseltown

Explanation:

Other Questions
what is the hypotenuse of 22 120 How did the Crusades affect the feudal system?Homework sucks Broussard Skateboard's sales are expected to increase by 25% from $8.6 million in 2019 to $10.75 million in 2020. Its assets totaled $2 million at the end of 2019. Broussard is already at full capacity, so its assets must grow at the same rate as projected sales. At the end of 2019, current liabilities were $1.4 million, consisting of $450,000 of accounts payable, $500,000 of notes payable, and $450,000 of accruals. The after-tax profit margin is forecasted to be 4%, and the forecasted payout ratio is 45%.Required:Use the AFN equation to forecast Broussard's additional funds needed for the coming year. Figure A is a scale image of Figure B.2Figure A18Figure B2745What is the value of 2? EMERGENCY! PLEASE ANSWER ASAP! What must the Scarecrow do before Oz will give him a brain in The Wonderful Wizard of Oz Help fast fast!!! I'm begging i. What were the two important elements of this treaty? Does anyone know how to do this ???? Or how to find answers :( MHM Bank currently has $700 million in transaction deposits on its balance sheet. The current reserve requirement is 8 percent, but the Federal Reserve is increasing this requirement to 10 percent.a. Show the balance sheet of the Federal Reserve and MHM Bank if MHM Bank converts all excess reserves to loans, but borrowers return only 70 percent of these funds to MHM Bank as transaction deposits. (Enter your answers in millions. Do not round intermediate calculations. Round your "Panel B" answers to 3 decimal places. (e.g., 32.161))Panel A: Initial balance sheetsFederal Reserve BankAssets Liabilities (Click to select)LoansReserve deposits at FedReserve accountsSecuritiesTransaction deposits $ million (Click to select)SecuritiesLoansReserve accountsTransaction depositsReserve deposits at Fed $ millionMHM BankAssets Liabilities (Click to select)SecuritiesReserve accountsTransaction depositsReserve deposits at FedLoans $ million (Click to select)SecuritiesTransaction depositsReserve accountsReserve deposits at FedLoans $ million (Click to select)Transaction depositsSecuritiesReserve accountsLoansReserve deposits at Fed $ million Panel B: Balance sheet after all changesFederal Reserve BankAssets Liabilities (Click to select)LoansReserve accountsReserve deposits at FedTransaction depositsSecurities $ million (Click to select)Reserve deposits at FedSecuritiesReserve accountsLoansTransaction deposits $ millionMHM BankAssets Liabilities (Click to select)Reserve deposits at FedSecuritiesReserve accountsTransaction depositsLoans $ million (Click to select)Reserve accountsLoansReserve deposits at FedSecuritiesTransaction deposits $ million (Click to select)LoansSecuritiesTransaction depositsReserve accountsReserve deposits at Fed $ million b. Show the balance sheet of the Federal Reserve and MHM Bank if MHM Bank converts 70 percent of its excess reserves to loans and borrowers return 90 percent of these funds to MHM Bank as transaction deposits. (Enter your answers in millions. Do not round intermediate calculations. Round your "Panel B" answers to 3 decimal places. (e.g., 32.161))Panel A: Initial balance sheetsFederal Reserve BankAssets Liabilities (Click to select)Reserve deposits at FedSecuritiesReserve accountsLoansTransaction deposits $ million (Click to select)Transaction depositsReserve deposits at FedSecuritiesReserve accountsLoans $ millionMHM BankAssets Liabilities (Click to select)Transaction depositsReserve accountsLoansReserve deposits at FedSecurities $ million (Click to select)LoansReserve accountsSecuritiesReserve deposits at FedTransaction deposits $ million (Click to select)SecuritiesTransaction depositsLoansReserve deposits at FedReserve accounts $ million Panel B: Balance sheet after all changesFederal Reserve BankAssets Liabilities (Click to select)SecuritiesTransaction depositsReserve accountsLoansReserve deposits at Fed $ million (Click to select)Transaction depositsLoansSecuritiesReserve accountsReserve deposits at Fed $ millionMHM BankAssets Liabilities (Click to select)SecuritiesReserve deposits at FedLoansTransaction depositsReserve accounts $ million (Click to select)SecuritiesReserve accountsReserve deposits at FedLoansTransaction deposits $ million (Click to select)Transaction depositsReserve accountsReserve deposits at FedLoansSecurities $ million Does Magnesium or Carbon have similar properties to Beryllium ? Which one ? What are charters, and how did they influence the establishment of colonies I need help quick Which is the best way to paraphrase the information in this sentence? Take a look at the picture. ONE OF THE COLDEST TEMPERTURES EVER RECORDED WAS -128F IN ANTARCTICA. ONE OF THE WARMEST TEMPERATURES EVER RECORDED WAS 134 DEGREES FAHRENHEIT IN DEATH VALLET CALIFORNIA. HOW MANY DEGRESS DIFFERENCE ARE THERE BETWEEN THE COLDEST AND WARMEST RECORDED OUTSIDE TEMPERTURE According to Montesquieu, when is political liberty found in government? Soft drinks are often sold in six-packs of 12-ounce cans and in 2-liter bottles. A liter is about 33.8 fluid ounces.Which is the greater volume: a six-pack or 2 liters?A store offers a 2-liter bottle of soft drink for $1.31 and a six-pack of 12-ounce cans for $1.37. Which is the better value (based on price per ounce)? (02.05 MC)Pablo le dio consejos a su hermana para su viaje,pero cambiaron sus planes y ahora l va a ir conella. Cambia el mandato informal a un mandato denosotros. Elige la opcin que tiene el mandatocorrecto nuevo. Pablo gave his sister advice for herupcoming trip, but her plans changed and now he isgoing with her. Change the informal t command tothe nosotros command form. Choose the optionthat has the new correct command.1/5Sal con otras personas porque no quieres ser unblanco fcil. (1 point)SalimosSajelamosSaltamosSalgamos if |a+3|=4 which describes all possible values of a) True or FalseBabies have around 100 more bones than adults. A 100 kg disc with radius 1.6 m is spinning horizontally at 25 rad/s. You place a 20 kg brick quickly and gently on the disc so that it sticks to the edge of the disc. Determine the final angular speed of the disc-brick system.