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
-
WebPart can be disabled
-
WebPart can be closed
-
WebPart can be deleted
-
WebPart can be minimized
B,C,D
Correct answer
Explanation
WebParts can be closed by users and removed permanently by page owners. They can also be minimized to reduce screen space while remaining on the page. WebParts cannot be individually disabled - they must be closed or removed from the page.
-
Feature.xml
-
Schema.xml
-
Manifest.xml
-
Elements.xml
A,D
Correct answer
Explanation
Feature.xml defines the feature itself including properties and activation scope. Elements.xml contains the feature's actual elements like site columns, content types, or list templates. Schema.xml defines list views and forms, while Manifest.xml is for solution packages.
-
drive:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\12\ISAPI\bin
-
drive:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\12\ISAPI
-
drive:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\12\bin
-
drive:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\12\ADMISAPI
B
Correct answer
Explanation
The Microsoft.SharePoint.dll is located in the ISAPI folder under the 12 hive: 'Program Files\Common Files\Microsoft Shared\Web Server Extensions\12\ISAPI'. This is the correct location to add references when developing SharePoint solutions.
-
Onet.xml
-
Web.config file for the SharePoint Application.
-
It can not be done.
-
Alerttemplates.xml file
D
Correct answer
Explanation
Email alert templates in SharePoint 2007 are stored in and can be modified through the AlertTemplates.xml file located in the SharePoint hive. This file contains all the email notification templates used by SharePoint alerts.
-
In Content DB
-
In File System
-
Either in File System or Content DB
-
In DB System
A
Correct answer
Explanation
When files are edited using SharePoint Designer, they become customized files stored in the Content Database rather than on the file system. This customization model allows SharePoint to maintain version history and track unghosted (customized) pages separately from the site definition files on disk.
-
The Web Part Zone which are added to the customized page are removed when we reset it to original site definition
-
The contents in the Web Parts which are inside the Web Part Zones which are there in the default Site Definition is not changed
-
The Web Part Zone which are added to the customized page are not removed when we reset it to original site definition
-
The additional web parts which are added in the Web Part Zone which were part of original site definition are not removed.
A,B,D
Correct answer
Explanation
When resetting a customized page to site definition: (A) Any Web Part Zones added during customization are removed, (B) Web Parts within zones that existed in the original site definition retain their content because those zones are part of the template, (D) Additional Web Parts added to original zones are not removed. Option C is incorrect because custom zones are indeed removed during reset.
-
zzz Members
-
zzz Owners
-
zzz Visitors
-
zzz Readers
A,B,C
Correct answer
Explanation
When creating a Site Collection named 'zzz' based on the Team Site template, SharePoint automatically creates three default SharePoint groups: zzz Members (Contribute permissions), zzz Owners (Full Control permissions), and zzz Visitors (Read permissions). There is no 'zzz Readers' group created.
-
Feature.xml
-
Schema.xml
-
Manifest.xml
-
Elements.xml
A,D
Correct answer
Explanation
SharePoint Features require two XML files: Feature.xml contains metadata (name, ID, scope, description) and Elements.xml contains the feature's actual definitions (lists, modules, content types). Schema.xml is for list definitions, not features. Manifest.xml is not a SharePoint term.
-
The Web Part Zone which are added to the customized page are removed when we reset it to original site definition
-
The contents in the Web Parts which are inside the Web Part Zones which are there in the default Site Definition is not changed
-
The Web Part Zone which are added to the customized page are not removed when we reset it to original site definition
-
The additional web parts which are added in the Web Part Zone which were part of original site definition are not removed.
A,B,D
Correct answer
Explanation
When resetting a customized page to site definition: (A) Web Part Zones added to the customized page are removed, (B) Contents of Web Parts that were part of the original site definition are not changed, and (D) Additional web parts added in zones from the original definition are not removed. Option C is incorrect because added zones ARE removed during reset.
-
zzz Members
-
zzz Owners
-
zzz Visitors
-
zzz Readers
A,B,C
Correct answer
Explanation
When creating a Site Collection named 'zzz' using the Team Site template, SharePoint automatically creates three groups: zzz Members (for contributors), zzz Owners (for administrators), and zzz Visitors (for readers). There is no 'Readers' group - that's what Visitors is for.
-
Feature.xml
-
Schema.xml
-
Manifest.xml
-
Elements.xml
A,D
Correct answer
Explanation
To create a feature in SharePoint 2007, you need two XML files: Feature.xml (which defines the feature itself - its ID, name, scope, etc.) and Elements.xml (which defines what the feature does - the actual elements like site columns, content types, etc.). Schema.xml is for list definitions, Manifest.xml is not used for features.
-
In Cache
-
Cookies
-
In Global variable
-
URL Strings
B
Correct answer
Explanation
ASP.NET stores session IDs in cookies by default, allowing the server to identify users across HTTP requests. Option B is correct - cookies are the default storage mechanism for session IDs. Options A, C, and D represent alternative storage methods but are not the default behavior.
-
Yes
-
No
-
May be
-
None of the above
B
Correct answer
Explanation
IIS (Internet Information Services) is not required to develop ASP.NET 2.0 web applications. You can develop and test ASP.NET applications locally using the built-in ASP.NET Development Server (Cassini) or Visual Studio's built-in web server without needing IIS installed on your development machine.
-
Prerender()
-
Init()
-
Load()
-
Unload()
B
Correct answer
Explanation
In ASP.NET page lifecycle, Init() is the first method fired during page load, followed by Load(), then other events like PreRender(). Unload() is called much later when the page is destroyed.
-
System.Net.HttpClient
-
System.Net.WebClient
-
Sytem.Net.InetClient
-
Sytem.Net.SoapClient
B
Correct answer
Explanation
WebClient provides HTTP functionality for accessing websites in .NET. HttpClient is modern but not available in older .NET versions, while InetClient and SoapClient are not valid .NET classes for web access.