Answer the following questions in one or two sentences based…

Answer the following questions in one or two sentences based on information given in the textbooks, or slides. 1. If a software product is difficult to use when a company releases it to the market, list two ways in which the company’s profits might suffer.      2. Explain why software and tools designed for use in high-stress situations (for example:  hurricane, emergency response, medical operations, in combat) should be easy to use.     3. Describe in your own words (short) what is design thinking ? List the phases of design thinking  according to the “Design Thinking 101” reading, video and class discussion.

Complete the following code segment to create a 2-dimensiona…

Complete the following code segment to create a 2-dimensional dynamic array myArray of dimensions. Assume the user inputs two positive integers.  Numbers at the left indicate code line numbers, provide a line of code on each line.  Note: in case you need for-loops, use variables i, j  (in that order)   1 int xrow, ycol, **myArray; 2 cin >> xrow >> ycol;3 4     5