Which of the following is the correct sequence of events when planning a windows form application?
A. Identify the users' needs, draw a sketch of the user interface, identify the items that the user must provide, identify the items that the application must provide, determine how the user and the application will provide their respective items.
B. Meet with the user, identify the items that the user must provide, identify the items that the application must provide, determine how the user and the application will provide their respective items.
C. Draw a sketch of the user interface, meet with the user, identify the items that the user must provide, identify the items that the application must provide, determine how the user and the application will provide their respective items.
D. Identify the application's purpose, identify the items that the user must provide, identify the items that the application must provide, determine how the user and the application will provide their respective items, draw a sketch of the user interface.
Answer: D
You might also like to view...
Using the example of the weather station system described in Chapters 1and 7, suggest a product line architecture for a family of applications that are concerned with remote monitoring and data collection. You should present your architecture as a layered model, showing the components that might be included at each level.
What will be an ideal response?
What is an expected percentage utilization for a network?
What will be an ideal response?
Social media is used by a B2C company to help customers become more aware of the company's products
Indicate whether the statement is true or false
This code should remove each space from test. Find the error(s) in the following code.
``` 1 String test = "s p a c e s"; 2 int index; 3 4 while( test.indexOf( " " ) == -1 ) 5 { 6 index = test.indexOf( " " ); 7 test = test.substring( 0, index - 1 ) + test.substring( index ); 8 } ```