Which of the following is not a control structure?

a. sequence
b. selection
c. syntax
d. repetition


c. syntax

Computer Science & Information Technology

You might also like to view...

Consider the following Structure definition and declaration. Which assignment statement would correctly record that player number 13 had three home runs so far this season?

``` Structure playerType Dim fullname As String Dim team As String Dim position As String Dim homerun As Double Dim average As Double Dim rbi As Double End Structure Dim player(45) As playerType ``` (A) ``` player(13) = 3 ``` (B) ``` player(13).homerun(3) ``` (C) ``` playerType(13).homerun = 3 ``` (D) ``` player(13).homerun = 3 ``` (E) None of the above

Computer Science & Information Technology

Which of the following statements about the switch statement is false?

a. You can use Strings in a switch statement’s controlling expression. b. You can use a String in a switch statement's case label. c. You can use a comma-separated list of Strings in a switch statement’s case label. d. You cannot use a String in a switch statement’s default case label.

Computer Science & Information Technology

What are each of the following:

1. Conditional execution 2. Short circuit evaluation 3. A boolean expression 4. Chromakey 5. Sepia-tint 6. Posterize 7. Edge detection 8. Blurring

Computer Science & Information Technology

Digital data, used by a computer, is represented by a(n) ________ code

Fill in the blank(s) with correct word

Computer Science & Information Technology