Certiport Software Development #2 with Complete Solutions, Exams of Advanced Education

Certiport Software Development #2 with Complete Solutions

Typology: Exams

2024/2025

Available from 03/25/2025

Examwow
Examwow 🇺🇸

5

(2)

9.4K documents

1 / 5

Toggle sidebar

This page cannot be seen from the preview

Don't miss anything!

bg1
Certiport Software Development #2 with
Complete Solutions
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict// EN"
"http://www.w3.org/TR/Xhtmll-strict.dtd">
<html xmIns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<title>The Title</title>
</head>
<body>
<h1>This is a Heading.</h1>
<p>This is a paragraph</p><br>
</body>
</html>
What will cause an error?
A.) All tags are not uppercase
B.) The line break tag is incorrectly formatted - ANS-B.) The line break tag is incorrectly
formatted
A table named Student has columns named ID, Name, and Age. An index has been
created on the ID column.
What advantage does this index provide?
A.) It speeds up query execution.
B.) It reorders the records alphabetically. - ANS-A.) It speeds up query execution.
Class C and Class D inherit from Class B. Class B inherits from Class A.
The classes have the methods shown in the following table.
Class Method
A m1
B m2
C m3
D m4
A.) m1, m2, m3
B.) only m2, m3
C.) only m3, m4
D.) only m1, m3 - ANS-A.) m1, m2, m3
pf3
pf4
pf5

Partial preview of the text

Download Certiport Software Development #2 with Complete Solutions and more Exams Advanced Education in PDF only on Docsity!

Certiport Software Development #2 with

Complete Solutions

The Title

This is a Heading.

This is a paragraph

What will cause an error? A.) All tags are not uppercase B.) The line break tag is incorrectly formatted - ANS-B.) The line break tag is incorrectly formatted A table named Student has columns named ID, Name, and Age. An index has been created on the ID column. What advantage does this index provide? A.) It speeds up query execution. B.) It reorders the records alphabetically. - ANS-A.) It speeds up query execution. Class C and Class D inherit from Class B. Class B inherits from Class A. The classes have the methods shown in the following table. Class Method A m B m C m D m A.) m1, m2, m B.) only m2, m C.) only m3, m D.) only m1, m3 - ANS-A.) m1, m2, m

Dim beakerFull As Boolean = Ture Dim flameOn As Boolean = False Dim iResult As Integer Select Case beakerFull Case True Select Case flameOn Case True iResult = 1 Case True iResult = 2 End Select Case False Select Case flameOn Case False iResult = 3 Case False iResult = 3 End Select End Select What will the variable result be? A.) 4 B.) 1 C.) 3 D.) 2 - ANS-D.) 2 In the application life cycle, the revision of an application after it has been deployed is referred to as: A.)Monitoring B.) Maintenance C.) Integration D.) Unit testing - ANS-B.) Maintenance You are creating a database for a student directory. The Students table contains the following fields: firstName lastName emailAddress telephoneNumber You need to retrieve the data from the firstName, lastName, and emailAddress fields for all students listed in the directory. The results must be in alphabetical order according to lastName and then firstName.

In the life cycle of an ASP. NET Web page, which phase follows the SaveStateCompletephase? A.) Load B.) Postlnit C.) Render D.) PostBack - ANS-C.) Render You create an application that uses Simple Object Access Protocol (SOAP).Which technology provides information about the application's functionality to other applications? A.) Common Intermediate Language(CIL) B.) Web Service Description Language (WSDL) - ANS-B.) Web Service Description Language (WSDL) Which language uses Data Definition Language (DDL) and Data Manipulation Language(DML)? A.) C# B.) SQL - ANS-B.) SQL Which language was designed for the primary purpose of querying data, modifying data, and managing databases in a Relational Database Management System? A.) Java B.) SQL C.) HTML - ANS-B.) SQL The ASP.NET MVC page lifecycle The ______ event determines which action method is needed and then calls that method. - ANS-Controller The ASP.NET MVC page lifecycle The URL pattern is matched during the ______ event. - ANS-Route Which type of Windows application presents a parent window that contains child windows? A.) Single-document interface (SDI) B.) Multiple-document interface (MDI) - ANS-B.) Multiple-document interface (MDI) The purpose of a constructor in a class is to:

A.) Inherit from the base class. B.) Create a value type. C.) Initialize an object of that class. - ANS-C.) Initialize an object of that class. A class named Manager is derived from a parent class named Employee. The Manager class includes characteristics that are unique to managers. Which term is used to describe this object-oriented concept? A.) Encapsulation B.) Data hiding C.) Inheritance - ANS-C.) Inheritance Which term is used to describe a class that inherits functionality from an existing class? A.) Derived class B.) Inherited Class - ANS-A.) Derived class In which order do the typical phases of the Software Development Life Cycle occur? A.) Design, requirements gathering, development, and testing B.) Requirements gathering, design, development, and testing - ANS-B.) Requirements gathering, design, development, and testing Which type of function can a derived class override? A.) a protected virtual member function B.) a private virtual function - ANS-A.) a protected virtual member function You need to create a property in a class. Consumers of the class must be able to read the values of the property. Consumers of the class must be prevented from writing values to the property. Which property procedure should you include? A.) set B.) get - ANS-B.) get

  • ANS-