Computer Knowledge
Software Development and Management
3,064 Questions
Software development and management focuses on the system development life cycle, enterprise architecture, and configuration management. It tests your familiarity with system analysis, design models, and IT project planning. This subject is essential for specialist and banking officer scale examinations.
System analysis and designSoftware development life cycleConfiguration managementEnterprise architectureObject oriented design
Software Development and Management Questions
-
RegularExpressionValidator
-
RegularPatternValidator
-
CompareValidator
-
CustomValidator
-
RequiredFieldValidator
A
Correct answer
Explanation
RegularExpressionValidator control in ASP.NET is used to check the user input based on a pattern that we define using RegularExpression. If the value does not match with the RegularExpression, then an error message is displayed.
-
Post is safer then Get method.
-
Post requests are not stored in browser's history.
-
Post requests cannot be bookmarked.
-
Post request have no restriction on data length.
-
Post exposes the data in the URL.
E
Correct answer
Explanation
The data is not visible in the URL. The Get method displays the data in the QueryString. This makes Post a safer choice than the Get method.
-
Configuration information is stored in XML-based text files.
-
It is extensible.
-
A web application can have only one web.config file.
-
The user cannot access a web.config file directly.
-
Changes in the configuration files are updated automatically.
C
Correct answer
Explanation
There can be multiple web.config file in multiple directories on an ASP.NET Web application server. Each Web.config file applies configuration settings to its own directory and all child directories.
-
TimeOut
-
Destroy
-
Abandon
-
Remove
-
Session.Contents.Remove
C
Correct answer
Explanation
The Abandon method destroys all the objects stored in a Session object and releases their resources. If you do not call the Abandon method explicitly, the server destroys these objects when the session times out.
-
-
/ and ?
-
-
? and _ (underscore)
-
C
Correct answer
Explanation
The users attribute in web.config allows two wild card characters: * and ?. Anonymous users are identified using a question mark (?). We can specify all authenticated users using an asterisk (*).
-
It can appear anywhere in an HTML page.
-
!DOCTYPE is not an HTML tag.
-
It does not have an end tag.
-
If the !DOCTYPE is not specified the page will be rendered in quirks mode.
-
The !DOCTYPE refers to DTD.
A
Correct answer
Explanation
The !DOCTYPE declaration must be the very first thing in your HTML document, before the html tag.
-
OidCollection
-
OidEnumerator
-
Oid
-
ProtectedData
-
ProtectedMemory
B
Correct answer
Explanation
It provides the ability to navigate through an OidCollection object.
-
Garbage Collection
-
Stack walk
-
Web forms
-
Window forms
-
Processes
B
Correct answer
Explanation
This concept is helpful to anyone interested in building a profiler to examine managed applications.
-
StackTrace
-
HelpLink
-
Message
-
Source
-
XmlException
A
Correct answer
Explanation
It is a list of the pending method calls at the point at which the exception was detected.
-
Android Debug Bridge or adb
-
AVD or Android Virtual Device
-
Emulator.exe
-
DX.exe
-
None of these
A
Correct answer
Explanation
The tool that will become very useful to us when we are using command-line programming is Android Debug Bridge or adb (adb.exe).
-
android.util
-
android.os
-
android.text
-
android.database
-
android.graphics
A
Correct answer
Explanation
The android.util library has core utility package which contains low level classes for XML parsing utilities in the application.
-
Microsoft Windows XP or higher
-
Mac OS 10.5.8 or higher
-
Linux 2.7 or higher
-
All of the above
-
<activity>
-
<services>
-
<os>
-
<provider>
-
<receiver>
-
Run as
-
Android virtual devices (or AVD for short)
-
Emulator
-
Hardware (mobile phone having android OS)
B
Correct answer
Explanation
Android virtual devices (or AVD for short) defines a particular device’s software version and hardware format to run user designed application in.
-
Device Users
-
Login Information
-
Words added by user
-
Language words
C
Correct answer
Explanation
The UserDictionary content provider stores words that users have added to their personal dictionary (for autocorrect and suggestion purposes). It doesn't store device users, login credentials, or general language words from the system dictionary - only user-added custom words.