Which type of structure is used to determine which of two sets of instructions to execute?
a. Decision structure
b. Sequence structure
c. Nested structure
d. Do together structure
e. None of these
a. Decision structure
Computer Science & Information Technology
You might also like to view...
________ is the branch of computer science that attempts to create computers that think like humans
A) Artificial intelligence B) Enterprise resource planning C) Expert systems D) Natural language processing
Computer Science & Information Technology
The following 4 lines of C++ code, use strings.
``` string firstName; // Define a string object char lastName[7]; // Define a C-string firstName = "Abraham"; // Assign a value to the string object lastName = "Lincoln"; // Assign a value to the C-string ```
Computer Science & Information Technology