Choose a correct optiom for 9 questions.

profileJacob5
9questions.docx

1. A program consists of instructions executing one at a time? 

No

Yes

2. Variable is a named item, such as x or numPeople, used to hold a value? 

Yes

No

3. A branch is a program path taken only if an expression's value is true? 

No

Yes

4. A loop is a program construct that repeatedly executes the loop's statements (known as the loop body) while the loop's expression is true; when false, execution proceeds past the loop. 

No

Yes

5. An array is a special variable having one name, but storing a list of data items, with each item being directly accessible. (Vector)? *

Yes

No

6. Object is a grouping of data (variables) and operations that can be performed on that data (methods)? 

No

Yes

7. Class construct defines a new type that can group data and methods to form an object. 

Yes

No

8. Public member methods indicate all operations a class user can perform on the object. 

No

Yes

9. A linked list is a list wherein each item contains not just data but also a reference — a link — to the next item in the list.  

No

Yes