List the events in developing an event-driven program.

What will be an ideal response?


The steps in developing a computer program are:
1. Understanding the problem.
2. Planning the logic.
3. Coding the program.
4. Translating the program into machine language.
5. Testing the program.
6. Putting the program into production.
7. Maintaining the program.

When you develop an event-driven application, you expand on Step 2 (planning the logic) and you might include four new substeps as follows:
2a. Creating wireframes
2b. Creating storyboards
2c. Defining the objects
2d. Defining the connections between the screens the user will see

Computer Science & Information Technology

You might also like to view...

in the Declarations section of the Code Editor. Which of the following statements correctly declares a variable of type stateUSA?

Suppose a structure is created with the code ``` Structure stateUSA Dim capCity As String Dim stateNum As Integer End Structure ``` (A) Dim stateUSA As stateWA (B) Dim stateWA As Structure (C) Dim stateWA As stateUSA (D) Dim stateWA As Member

Computer Science & Information Technology

Which image file format reduces the number of colors based on a user-adjusted sliding scale?

A) BMP B) WAV C) JPEG D) DAT

Computer Science & Information Technology

When saving an e-mail message, by default, the file name is the ____ and the default file type is an Outlook message format.

A. message's subject line B. sender's name C. message's first sentence D. message's last sentence

Computer Science & Information Technology

When a class is customized using inheritance, the two classes should have a similar interface.

Answer the following statement true (T) or false (F)

Computer Science & Information Technology