If someone who wants to
acquire a compact disc (CD) has just sufficient money to buy one, and chooses
CD a instead of CD b, then CD B is the opportunity cost.
To add, opportunity cost. <span>the loss
of potential gain from other alternatives when one alternative is chosen.</span>
Answer:
गया है कि वो भी नहीं है कि वो भी नहीं है तो वो लोग भी है तो वो तो क्या आप को लेकर चलता रहा था और अब तक का नाम से पहले से पहले से भी नही तो क्या आप को
Re-read what you've typed in that cell see if you typed it correctly.
I don’t really understand what you are trying to ask. Try posting a picture along with your question
Answer:
A and B have different output:
A output will be 1
B output will be 123
Explanation:
A
X = 0
do x < 3
x = x+1
print x
while
B
X = 0
do x = x+ 1
print x
while x < 3
For statement A the condition statement which suppose to be after "while" is not set therefore the value of x will be printed.
For statement B the condition statement is set "x < 3" in front of "while" thereby result in iteration until the condition is false.
Statement A output will be 1
Statement B output will be 123