1.
Which dll is important for COM ?
Correct Answer
E. Microsoft.SharePoint.Client
Explanation
The Microsoft.SharePoint.Client dll is important for COM because it provides the necessary functionality and APIs for interacting with SharePoint sites and data. This dll allows developers to access and manipulate SharePoint objects, such as lists, libraries, and sites, using client-side code. It is commonly used in applications that integrate with SharePoint, enabling them to perform operations such as reading and writing data, managing permissions, and creating workflows.
2.
How can we change the item level permission ?
Correct Answer
E. None of above
Explanation
The correct answer is "None of above" because changing item level permissions cannot be done using Site Settings, List Settings, Site Permissions, or List Permissions. There is no specific option provided in the given options to change item level permissions.
3.
What is the advantage in using Windows PowerShell over
stsadm in SharePoint 2010
Correct Answer
A. Unlike stsadm, which accept and return text, Windows PowerShell is built on the Microsoft .NET Framework
Explanation
Windows PowerShell has an advantage over stsadm in SharePoint 2010 because it is built on the Microsoft .NET Framework. This means that PowerShell has access to the windows registry and secure appdata cache, which stsadm does not have. Therefore, PowerShell is able to perform more advanced and complex tasks compared to stsadm, making it a more powerful and versatile tool for managing SharePoint 2010.
4.
User can upload more than one document to document library Item.
Correct Answer
B. False
Explanation
The statement is false because in a document library, users can only upload one document per item.
5.
User can upload more than one document to list Item.
Correct Answer
A. True
Explanation
The statement suggests that users have the ability to upload multiple documents to a list item. This implies that there is a feature or functionality in place that allows users to select and attach more than one document to a single list item. Therefore, the answer is true.
6.
User can upload more than one document to document Set Item.
Correct Answer
A. True
Explanation
The given statement suggests that users have the ability to upload multiple documents to a document set item. This implies that the system or platform being referred to allows users to attach more than one document to a single item within a document set. Therefore, the correct answer is "True."
7.
This class belong to client object Model
Correct Answer
A. Site site =
Explanation
The given code snippet is declaring three variables: site, SPSite, and spSite. The correct answer is "Site site =". This is because the variable "site" is being declared with the data type "Site", which suggests that it belongs to the client object model. The other two variables, "SPSite" and "spSite", do not have a clear data type specified and may not be related to the client object model.
8.
Which of the following is correct
Correct Answer(s)
A. SPWeb web = SPContext.Current.Site.RootWeb;
B. SPSite site = new SPSite(SPContext.Current.Web.Url);
C. SPWeb web = site.OpenWeb();
D. SPWeb web = SPContext.Current.Site.RootWeb;
9.
Add one item(containing date and time) in list A, whenever user add a item to list B. To perform this scenario which method is useful?
Correct Answer
B. Event Handler using Server Object Model
Explanation
The Event Handler using Server Object Model is the most suitable method for performing the given scenario. Event handlers are used to respond to specific events that occur in SharePoint, such as adding an item to a list. By using the Server Object Model, the event handler can be deployed on the server and will be triggered whenever a user adds an item to list B. This allows the event handler to then add a corresponding item to list A, containing the date and time of the addition.
10.
Which of the below command is used to install feature on SharePoint 2010 site
Correct Answer
A. Stsadm -o installfeature -filename
Explanation
The correct command to install a feature on a SharePoint 2010 site is "stsadm -o installfeature -filename". This command uses the "-o" parameter to specify the operation to be performed, which in this case is "installfeature". The "-filename" parameter is used to specify the file name of the feature that needs to be installed.
11.
Where we can able to create the site content type?
Correct Answer
B. Site Setting -> Galleries
Explanation
In the given options, the correct answer is "Site Setting -> Galleries". This is because in the Site Settings section, there is an option called "Galleries" where we can create and manage different types of content for the site. This includes creating site content types, which are templates for organizing and categorizing content on the site. Therefore, the correct place to create the site content type is in the Site Setting's Galleries section.
12.
What does a SPWebApplication object
represent?
Correct Answer
A. SharePoint Web Application
Explanation
A SPWebApplication object represents a SharePoint Web Application. It is used to manage and configure the web application settings, such as authentication, policies, and service connections. This object is responsible for handling requests and managing resources for the web application, allowing users to access and interact with the SharePoint site collections and subsites within the web application.
13.
What is a SPSite and SPWeb object, and what is the difference between each of the objects?
Correct Answer(s)
A. The SPSite object represents a collection of sites (site collection [a top level sites and all its subsites]).
B. The SPWeb object represents an instance SharePoint Web, and SPWeb object contains things like the actual content.
C. A SPSite object contains the various subsites and the information regarding them.
Explanation
The SPSite object represents a collection of sites, including the top-level site and all its subsites. It contains information about the site collection and can be used to perform operations on the entire collection. On the other hand, the SPWeb object represents an individual SharePoint web within the site collection. It contains the actual content of the web, such as lists, libraries, and pages. The SPWeb object is used to perform operations specific to that web. In summary, the SPSite object represents the entire site collection, while the SPWeb object represents an individual web within that collection.
14.
What is a .ddf file
Correct Answer
A. Data directive file
Explanation
A .ddf file is a data directive file. It is used to provide instructions or directives for how data should be processed or handled. This file format is commonly used in database management systems to define the structure and organization of data. It may contain commands or specifications for data manipulation, such as creating tables, defining fields, or setting data types. The .ddf file acts as a blueprint or guide for processing and managing data effectively.
15.
What file does a SharePoint solution package
use to orchestrate (describe) its packaged contents?
Correct Answer
B. Manifest.XML
Explanation
A SharePoint solution package uses the Manifest.XML file to orchestrate its packaged contents. This file contains information about the various components included in the solution package, such as features, assemblies, files, and resources. It serves as a blueprint for SharePoint to understand how to deploy and activate the solution package on a SharePoint site. The Manifest.XML file helps SharePoint to properly organize and configure the solution package's contents during the deployment process.
16.
What base class do event receivers inherit
from?
Correct Answer(s)
A. SPListEventReciever
B. SPItemEventReciever
C. SPEventReceiverBase
Explanation
Event receivers in SharePoint inherit from the SPEventReceiverBase class. This is the base class for all event receivers and provides the necessary methods and properties to handle events in SharePoint. The SPListEventReceiver and SPItemEventReceiver classes are specific types of event receivers that inherit from SPEventReceiverBase. Therefore, the correct answer is SPListEventReciever, SPItemEventReciever, and SPEventReceiverBase.
17.
Which of the below is asynchronous event
Correct Answer
A. ItemAdded
Explanation
The correct answer is "ItemAdded" because an asynchronous event refers to an event that occurs independently of the main program flow. In this case, "ItemAdded" suggests that the event of adding an item is happening asynchronously, meaning it can occur at any time without blocking or interrupting the main program execution. On the other hand, "ItemAdding" and "ItemWillAdd" do not imply asynchronous behavior as they suggest a process that is currently happening or about to happen, respectively.
18.
Can an event receiver be deployed through a
SharePoint feature?
Correct Answer
A. True
Explanation
Yes, an event receiver can be deployed through a SharePoint feature. Event receivers are custom code that respond to specific events that occur in SharePoint, such as when an item is added or deleted. These event receivers can be packaged and deployed as part of a SharePoint feature, which allows for easy installation and activation of the event receiver on SharePoint sites.
19.
Which of the below is synchronous event
Correct Answer
B. ItemAdding
Explanation
The correct answer is "ItemAdding" because it suggests an event that occurs before an item is added, indicating a synchronous behavior where the action of adding an item is not completed until the "ItemAdding" event is finished.
20.
Can SharePoint be linked to an external data
source?
Correct Answer
A. Yes
Explanation
SharePoint can be linked to an external data source. This allows users to access and interact with data from external systems within their SharePoint sites. This integration enables organizations to consolidate and centralize their data, providing a unified view for users. By linking SharePoint to external data sources, users can leverage SharePoint's collaboration and document management features while still accessing and working with data from other systems.
21.
Where can we create SharePoint Business Taxonomy ?
Correct Answer
C. Central Admin
Explanation
In SharePoint, the Central Admin is the place where we can create the SharePoint Business Taxonomy. This is because the Central Admin is the central administration site for managing the SharePoint environment, including configuring and managing service applications, site collections, and other settings. Creating the Business Taxonomy involves defining and organizing the terms, term sets, and hierarchies that will be used for classifying and organizing content in SharePoint.
22.
What are the types of input
forms that can be created for a workflow?
Correct Answer(s)
A. Association form
B. Initiation form
C. Modification form
D. Task edit form
Explanation
The types of input forms that can be created for a workflow include association forms, initiation forms, modification forms, and task edit forms. Association forms are used to associate a workflow with a specific item or document. Initiation forms are used to gather information from users when starting a workflow. Modification forms allow users to make changes to a workflow that is already in progress. Task edit forms are used to collect input from users when they are working on a specific task within a workflow.
23.
Which of the below can be deployed using SharePoint 2010 Features?
Correct Answer(s)
A. Simple site customizations
B. Custom site navigation
C. WebParts
D. Pages
E. List types
F. Workflows
Explanation
SharePoint 2010 Features allow for the deployment of various elements within a SharePoint site. Simple site customizations, such as changing the site theme or adding a logo, can be deployed using Features. Custom site navigation can also be deployed using Features, allowing for the creation of custom menus or navigation structures. WebParts, which are customizable components that can be added to a SharePoint page, can be deployed using Features. Pages, list types, and workflows can also be deployed using Features, allowing for the creation and customization of various functionalities within a SharePoint site.
24.
How many type of connections can be crated from Infopath?
Correct Answer(s)
A. Submit
D. Receive
Explanation
Infopath is a software application that allows users to create electronic forms. The question asks about the types of connections that can be created from Infopath. The correct answer includes "Submit" and "Receive." These connections refer to the ability to submit the form data to a specified destination and receive data from an external source respectively. These connections are essential for integrating Infopath forms with other systems or workflows.