Online Training On SharePoint |
Question on Feature Scope
a. Web
b. Site
c. Web Application
d. Farm
Check Answer
Question on Solution
a. Onet.XML
b. Manifest.XML
c. Feature.XML
d. Elements.XML
Check Answer
Question on List Backup
Question 91: Which MOSS feature is used to take the Back up of the List:
a. List Content Type
b. List Definition
c. List Template
d. List Backup
Question on Lookup Column
a. Multiple Line of Text
b. Single Line of Text
c. Calculated
d. Person or Group
Question on STSADM Commands
a.Stsadm commands are used to do SharePoint administration jobs.
b.Stsadm commands are timer jobs which are used to create and delete sites in MOSS 2007.
c.Backup of sharepoint sites can be taken using Stsadm Commands.
d.SharePoint Web Services can be consumed using Stsadm commands.
Check Answer
Question on Page Layout
a. Page Layout depicts about the Design of the page where it can be used only to a particular site.
b. Page Layout is a webpart page where only custom webparts can be added using SharePoint designer.
c. Page Layout is used to design site pages which depicts the structure of the page and can be re-used across the sub sites.
d.Page Layout is a webpart page where it can be associated to Application (Layout) page to design webpartzones.
Check Answer
Question on SharePoint Object Model
Question 87: Select the correct statments:
a. SharePoint Object model works only on the server where SharePoint is installed
b. SharePoint Object model is not a part of .NET Framework.
c. SharePoint Object model works irrespective of the server where SharePoint is installed.
d. All of the above
Check Answer
Question on SharePoint Object Model
Question 86: Which one of the following reference is added to use SharePoint object model in .NET Applications:
a. Microsoft.Sharepoint
b. Microsoft.MOSS.Sharepoint
c. Microsoft.WSS.Sharepoint
d. Microsoft.SharepointObjectModel
Check Answer
Question on SharePoint Web Services
Question 85: Which one of the following is correct about SharePoint Web Services:
a. SharePoint Web Services works only on the server where SharePoint is installed .
b. SharePoint Web Services is not a part of .NET Framework.
c. SharePoint Web Services works irrespective of the server where SharePoint is installed.
d. None of the above
Question on Ghosted and Unghosted pages
a. MOSS 2007
b. WSS 3.0
c. MOSS 2003
d. SharePoint 2003
Check Answer
Question on XML Forms
Question 83: Which one of the following is chosen the best when dealing with XML based data entry forms:
a. InfoPath
b. Data View Web part
c. BDC web part
d. None of the above
Question on Lists
Question 82: Which one is chosen the best for receiving emails when there are any inserts/updates happen in List :
a. Event Handlers
b. Workflows
c. Alerts
d. Timer Jobs
Question On PageLayouts
Question 81: Page Layout are created using:
a. SharePoint Designer
b. Visual Studio 2005
c. WSS 3.0
d. All of the above
Question on SharePoint designer workflows
Question 80: SharePoint designer workflows can be associated to:
a. Multiple Document Libraries
b. Single Document Library
c. Multiple Lists
d. None of the above
Question on CAML Queries
Question 79: CAML Queries are used in:
a. Consuming SharePoint Web services
b. SharePoint Designer Workflows
c. SharePoint Object Model
d. Writing SQL Queries using SharePoint Web services
Question on Events
Question 78: Choose the asynchronous events below (Multiple Selection):
a. ItemDeleted
b. ItemDeleting
c. ItemUpdated
d. ItemUpdating
Question on the classes of WebPart
Question 77: What are the two base classes you are going to use for a WebPart in SharePoint 2007, to inherit from :
a. Microsoft.SharePoint.WebPartPages.WebPart
b. Microsoft.WSS.WebPartPages.WebPart
c. System.Web.UI.WebControls.WebPart
d. System.Web.UI.WebControls.WebParts.WebPart
Question on List Data
Question 76: To fetch all the data from a SharePoint list to a DataTable the correct code snippet would be:
a. SPSite site = new SPSite(http://servername:12345/);
SPWeb web = new SPWeb();
web = site.OpenWeb();
SPList list = web.Lists[“ListName”];
DataTable tblItems = list.GetDataTable();
b. SPSite site = new SPSite(http://servername:12345/);
SPWeb web = new SPWeb();
SPList list = web.Lists[“ListName”];
DataTable tblItems = list.Items.GetDataTable();
c. SPSite site = new SPSite(http://servername:12345/);
SPWeb web = new SPWeb();
web = site.OpenWeb();
SPList list = web.Lists[“ListName”];
DataTable tblItems = list.Items.GetDataTable();
d. SPSite site = new SPSite(http://servername:12345/);
SPWeb web = new SPWeb();
web = site.OpenWeb();
SPList list = web.Lists[“ListName”];
DataTable tblItems = list.Items.GetTable();
Question on Workflows
Question 75: Workflows cannot be triggered from:
a. Content Types
b. Site Columns
c. List Items
d. Document Library List Items.
Question on SiteTemplate and SiteDefinition
Question 74: Which of the following are true about SiteTemplate and SiteDefinition (Multiple Selection)
a. Both are xml files
b. SiteDefinition is mandatory to create SiteTemplate
c. SiteTemplate is Mandatory to create SiteDefinition.
d. Both SiteDefinition and SiteTemplate are same but created in a different fashion.