Answer:
The correct answer is letter "A": commit with fallback.
Explanation:
American Professor Alfred A. Marcus (born 1950) in his book "<em>The Future of Technology Management and the Business</em>" (2015) describes that hedging may be a strategy to shield businesses from the rapidly evolving world they face as a result of the continuous implementation of technology in the market. According to Marcus, there are 5 hedge approaches that firms should implement:
- Gamble on the most probable:<em> work on the product with the highest success rate.
</em>
 - Take the robust route: <em>invest in as many products as possible.
</em>
 - Delay until further clarity emerges:<em> waiting for a proper moment to react in front of market changes.
</em>
 - <u>Commit with a fallback</u>:<em> adapt according to the market.
</em>
 - Try to shape the future:<em> innovate.</em>
 
 
        
             
        
        
        
This is 
FALSE
Apart from the traditional pen and paper methods, there is
an increased emergence of tools that can be used in market and
public opinion research. For instance, we can use computer assisted telephone
interviews, self-administered computer methods and computer assisted face to
face interviewing methods 
 
        
             
        
        
        
Answer:
The program in Python is as follows:
myList = []
num = int(input())
count = 0
while num>=0:
    myList.append(num)
    count+=1
    num = int(input())
myList.sort()
mid = int((count-1)/2)
print(myList[mid])
Explanation:
This initializes the list
myList = []
This gets the first input
num = int(input())
This initializes count to 0
count = 0
The following is repeated until the user inputs a negative number
while num>=0:
This appends the input number to the list
    myList.append(num)
This increments count by 1
    count+=1
This gets another input
    num = int(input())
This sorts the list
myList.sort()
Assume the number of inputs is odd, the middle element is calculated as
mid = int((count-1)/2)
This prints the middle element
print(myList[mid])
<em>From the complete question. the condition that ends the loop is a negative integer input</em>
 
        
             
        
        
        
Designers use both isometric and perspective sketches to
maintain an object’s visual proportions. Isometric sketches are 3D objects
drawn with lines that have no vanishing points while perspective sketches are 3D
objects drawn with one or more vanishing points. 
Designers choose to use an
isometric sketch because it is more accurate than perspective drawings and
makes the design look more professional. Isometric sketches are much easier to
handle because the length of each measure is same as the plan. This is especially
for designers drawing pictures by hand. It is time saving and you do not need
to calculate the angle of every edge.