You are reviewing the architecture for a system that allows race officials to enter the results of 5K race results. The results are then made available to students using a web application. The architecture is shown below:
Use the drop-down menus to select the answer choice that answers each question. Each correct selection is worth one point.
Hot Area:
Hot Area:
You are reviewing the following code that saves uploaded images.
For each of the following statements, select Yes if the statement is true. Otherwise, select No. Each correct selection is worth one point.
Hot Area:
Hot Area:
You have the following flowchart:
Use the drop-down menus to select the answer choice that completes each statement Each correct selection is worth one point.
Hot Area:
Hot Area:
Which type of function can a derived class override?
A. a non-virtual public member function
B. a private virtual function
C. a protected virtual member function
D. a static function
You are writing a Web application that processes room reservation requests. You need to verify that the room that a guest has selected is not already reserved by another guest. Which type of programming should you use to determine whether the room is still available when the request is made?
A. functional
B. dynamic
C. in-browser
D. server-side
You have a class named Glass that inherits from a base class named Window. The Window class includes a protected method named break(). How should you call the Glass class implementation of the break() method?
A. Window.break();
B. Glass.break();
C. this.break();
D. base.break();
You are reviewing a design for a database. A portion of this design is shown in the exhibit. Note that you may choose to view either the Crow's Foot Notation or Chen Notation version of the design. (To view the Crow's Foot Notation, click the Exhibit A button. To view the Chen Notation, click the Exhibit B button.)
Which term is used to describe the relationship between Customer and Order?
A. many-to-many
B. one-to-many
C. one-dimensional
D. one-to-one
E. multi-dimensional
You are creating the necessary variables for an application. The data you will store in these variables has the following characteristics:
Consists of numbers
Includes numbers that have decimal points
Requires more than seven digits of precision
You need to use a data type that will minimize the amount of memory that is used.
Which data type should you use?
A.
Decimal
B.
Single
C.
Byte
D.
Double
Which type of application has the following characteristics when it is installed?
Runs continuously in the background by default when the startup type is set to automatic
Presents no user interface
A.
Console-based
B.
Windows Forms
C.
Windows Service
D.
Batch file
You need to create a stored procedure that passes in a person's name and age. Which statement should you use to create the stored procedure?
A. B. C. D.