In the Choose Document Type dialog box, you can select any of the following as the document type EXCEPT ____.

A. ASP JavaScript
B. HTML
C. ColdFusion
D. PHP MySQL


Answer: B

Computer Science & Information Technology

You might also like to view...

Write a program that searches a file of numbers and displays the largest number, the smallest number, and the average of all the numbers in the file. Do not assume that the numbers in the file are in any special order. Your program should obtain the file name from the user. Use either a text file or a binary file. For the text-file version, assume one number per line. For the binary-file version, use numbers of type double that are written using writeDouble.

This project is deceptive: it requires more programs than the ones listed in the problem definition to process binary and text files containing floating point numbers; additional programs are required to create and view the data files. The solution shown here has separate programs to create and view data files, one for text and another for binary files. The program to process text files requires a method to translate the numbers from a String to type double. The easiest way is to use the wrapper class Double’s parseDouble method. 1) Develop the class to create and view binary data files. Good models to follow are Doubler, Listing 10.8, for the overall program organization, and BinaryOutputDemo, Listing 10.5, for showing the file contents. 2) Develop the class to process the data in a binary file (display the high, low and average), again using Doubler, Listing 10.8, as the model. Use the programs from these two steps to develop similar programs for text files, but use TextFileOutputDemo, Listing 10.1, and TextFileInputDemo, Listing 10.2, as models for writing to and reading from text files.

Computer Science & Information Technology

Union queries can be created in:

A) Design view or SQL view. B) Design view, Datasheet view or SQL view. C) Design view only. D) SQL view only.

Computer Science & Information Technology

After an Amazon EC2-VPC instance is launched, can I change the VPC security groups it belongs to?

A. No B. Yes C. Only if you are the root user D. Only if the tag "VPC_Change_Group" is true

Computer Science & Information Technology

Answer the following statement(s) true (T) or false (F)

1. Organizations employ data warehouses to store junk data. 2. Unstructured data comes from a single source. 3.An SQL database stops abruptly when it encounters an error in the update process. 4. The goal of a NoSQL database is to provide very fast performance even as the amount of data that must be processed continues to grow. 5. Hadoop is designed for processing large volumes of data by dividing the work into a set of independent tasks that are executed in parallel on a large number of servers.

Computer Science & Information Technology