What are two possible options for representing a Web application within Internet Information Services (IIS)? (Each correct answer presents a complete solution. Choose two. )

What are two possible options for representing a Web application within Internet Information Services (IIS)? (Each correct answer presents a complete solution. Choose two. )A . Web siteB . Web directoryC . Virtual directoryD . Application serverE . Application directoryView AnswerAnswer: AC Explanation: Create a Web Application An application is...

September 19, 2019 No Comments READ MORE +

How many parameters can a default constructor have?

How many parameters can a default constructor have?A . 0B . 1C . 2D . 3 or moreView AnswerAnswer: A Explanation: If a class contains no instance constructor declarations, a default instance constructor is automatically provided. That default constructor simply invokes the parameterless constructor of the direct base class.

September 18, 2019 No Comments READ MORE +

Which type of application has the following characteristics when it is installed?

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 interfaceA . Windows ServiceB . Windows FormsC . Console-basedD . Batch fileView AnswerAnswer: A Explanation: A Windows service...

September 18, 2019 No Comments READ MORE +

Which type of Windows application presents a parent window that contains child windows?

Which type of Windows application presents a parent window that contains child windows?A . Application programming interface (API)B . Single-document interface (SDI)C . Multiple-document interface (MDI)D . Command-line interface (CLI)View AnswerAnswer: C Explanation: A multiple document interface (MDI) is a graphical user interface in which multiple windows reside under a...

September 17, 2019 No Comments READ MORE +

Which type of application allows this behavior?

You are creating an application for computers that run Windows XP or later. This application must run after the computer starts. The user must not be aware that the application is running. The application performs tasks that require permissions that the logged-in user does not have. Which type of application...

September 16, 2019 No Comments READ MORE +

Which data type should you use?

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...

September 14, 2019 No Comments READ MORE +

Which data structure should you use?

You are creating an application for a help desk center. Calls must be handled in the same order in which they were received. Which data structure should you use?A . Binary treeB . StackC . HashtableD . QueueView AnswerAnswer: D Explanation: A queue keeps the order of the items.

September 12, 2019 No Comments READ MORE +

Which type of function can a derived class override?

Which type of function can a derived class override?A . a non-virtual public member functionB . a private virtual functionC . a protected virtual member functionD . a static functionView AnswerAnswer: C Explanation: You can override virtual functions defined in a base class from the Visual Studio. The override modifier...

September 12, 2019 No Comments READ MORE +

Which type of programming should you use to determine whether the room is still available when the request is made?

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...

September 10, 2019 No Comments READ MORE +

In this XHTML code sample, what will cause an error?

In this XHTML code sample, what will cause an error? A . All tags are not in uppercase.B . The body tag is missing a background attribute.C . The line break tag is incorrectly formatted.D . The HTML tags do not read XHTMView AnswerAnswer: C Explanation: In XHTML, the <br>...

September 9, 2019 No Comments READ MORE +