Case-Based Critical Thinking Questions
?
Case 1: Tony's Pizza & Pasta
?
Tony's Pizza & Pasta restaurant uses an application to update and display menu items and the related price information.
Which of the following statements declares a class-level one-dimensional array namedstrToppingsthat stores the 14 available pizza toppings?

A. Dim strToppings(13) As String
B. Private strToppings(13) As String
C. Dim strToppings(14) As String
D. Private strToppings(14) As String

Answer: B

Computer Science & Information Technology

You might also like to view...

What command must be selected in order for the Command Button Wizard to work?

A) Command Button toggle B) Custom Navigation wizard C) Use Control Wizards D) Use Forms Wizard

Computer Science & Information Technology

Which of the following lines would be the prototype for an overloaded cast operator function that converts an object of user-defined type Time into a double?

a. Time::operator double() const; b. Time::static_cast double() const; c. Time::operator_cast(double) const; d. Time::double() const;

Computer Science & Information Technology