Online Training On SharePoint
                      
Showing posts with label Free Questions for sharepoint Certification. Show all posts
Showing posts with label Free Questions for sharepoint Certification. Show all posts

Question on Feature Scope

Question 93:What are the correct values for the Scopes for a feature in SharePoint 2007 (Multiple Selection)

a. Web

b. Site

c. Web Application

d. Farm

Check Answer

Question on Solution

Question 92: Which XML files define the Solution Package:

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

Check Answer

Question on Lookup Column

Question 90: Which are the following column are supported as a lookup column in SharePoint 2007 (Multiple Selection)

a. Multiple Line of Text

b. Single Line of Text

c. Calculated

d. Person or Group


Check Answer

Question on STSADM Commands

Question 89: Which of the following are correct about stsadm commands (Multiple Selection):

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

Question 88: What is 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

Check Answers

Question on Ghosted and Unghosted pages

Question 84: Ghosting / Un Ghosting is a terminology used in:

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

Check Answer

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

Check Answer

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

Check Answer

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

Check Answer

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

Check Answer

Question on Events

Question 78: Choose the asynchronous events below (Multiple Selection):

a. ItemDeleted

b. ItemDeleting

c. ItemUpdated

d. ItemUpdating

Check Answer

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

Check Answer

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();

Check Answer

Question on Workflows

Question 75: Workflows cannot be triggered from:

a. Content Types

b. Site Columns

c. List Items

d. Document Library List Items.

Check Answer

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.

Check Answer