TEST EXAM CURRENTLY TESTING
COMPLETE EXAM QUESTIONS WITH
DETAILED VERIFIED ANSWERS (100%
CORRECT ANSWERS) /ALREADY
GRADED A+
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 - ....ANSWER...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.
A.) SELECT firstName, lastName, emailAddress
FROM Students ORDER BY lastName, firstName
B.) SELECT firstName, lastName, emailAddress
FROM Students ORDER BY lastName, firstName ,
emailAddress - ....ANSWER...A.) SELECT firstName,
lastName, emailAddress FROM Students ORDER BY
lastName, firstName
Which statement should you use to create the stored
procedure?
A. CREATE PROCEDURE StoreData @UserName
nvarchar(255)
B. CREATE PROCEDURE StoreData @Age int
C. CREATE PROCEDURE StoreData @UserName
nvarchar(255), @Age int - ....ANSWER...C. CREATE
,PROCEDURE StoreData @UserName nvarchar(255),
@Age int
The ASP.NET MVC page lifecycle
The ______ event determines which action method is
needed and then calls that method. -
....ANSWER...Controller
The ASP.NET MVC page lifecycle
The URL pattern is matched during the ______ event.
- ....ANSWER...Route
Which type of Windows application presents a parent
window that contains child windows?
A.) Single-document interface (SDI)
B.) Multiple-document interface (MDI) -
....ANSWER...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. - ....ANSWER...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 - ....ANSWER...C.) Inheritance
Which term is used to describe a class that inherits
functionality from an existing class?
A.) Derived class
B.) Inherited Class - ....ANSWER...A.) Derived class
Two classes named Circle and Square inherit from
the Shape class. Circle and Square both inherit Area