Sharepoint 2010 Test Questions

Reviewed by Editorial Team
The ProProfs editorial team is comprised of experienced subject matter experts. They've collectively created over 10,000 quizzes and lessons, serving over 100 million users. Our team includes in-house content moderators and subject matter experts, as well as a global network of rigorously trained contributors. All adhere to our comprehensive editorial guidelines, ensuring the delivery of high-quality content.
Learn about Our Editorial Process
| By Pravinmohite
P
Pravinmohite
Community Contributor
Quizzes Created: 2 | Total Attempts: 538
| Attempts: 474 | Questions: 24
Please wait...
Question 1 / 24
0 %
0/100
Score 0/100
1. Can SharePoint be linked to an external data source?

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.

Submit
Please wait...
About This Quiz
Sharepoint Quizzes & Trivia

SharePoint is a web-based, collaborative platform that integrates with Microsoft Office. The app helps in content management. Having adequate knowledge on the use of SharePoint helps you to... see moremake proper use of its features. Just how conversant are you with SharePoint? Take the simple quiz and see for yourself. Best of luck! see less

2. What is a .ddf 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.

Submit
3. What does a SPWebApplication object represent?

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.

Submit
4. User can upload more than one document to list Item.

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.

Submit
5. User can upload more than one document to document Set Item.

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."

Submit
6. Can an event receiver be deployed through a SharePoint feature?

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.

Submit
7. Which of the below is synchronous event

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.

Submit
8. Where can we create SharePoint Business Taxonomy ?

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.

Submit
9. What file does a SharePoint solution package use to orchestrate (describe) its packaged contents?

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.

Submit
10. Which of the below is asynchronous event

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.

Submit
11. Which dll is important for COM ?

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.

Submit
12. Where we can able to create the site content type?

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.

Submit
13. Which of the below command is used to install feature on SharePoint 2010 site

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.

Submit
14. Which of the below can be deployed using SharePoint 2010 Features?

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.

Submit
15. What is the advantage in using Windows PowerShell over stsadm in SharePoint 2010 

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.

Submit
16. 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?

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.

Submit
17. What is a SPSite and SPWeb object, and what is the difference between each of the objects?

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.

Submit
18. What are the types of input forms that can be created for a workflow?

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.

Submit
19. This class belong to client object Model

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.

Submit
20. Which of the following is correct 

Explanation

not-available-via-ai

Submit
21. User can upload more than one document to document library Item.

Explanation

The statement is false because in a document library, users can only upload one document per item.

Submit
22. How can we change the item level permission ?

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.

Submit
23. How many type of connections can be crated from Infopath?

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.

Submit
24. What base class do event receivers inherit from?

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.

Submit
View My Results

Quiz Review Timeline (Updated): Mar 22, 2023 +

Our quizzes are rigorously reviewed, monitored and continuously updated by our expert board to maintain accuracy, relevance, and timeliness.

  • Current Version
  • Mar 22, 2023
    Quiz Edited by
    ProProfs Editorial Team
  • Dec 01, 2010
    Quiz Created by
    Pravinmohite
Cancel
  • All
    All (24)
  • Unanswered
    Unanswered ()
  • Answered
    Answered ()
Can SharePoint be linked to an external data source?
What is a .ddf file 
What does a SPWebApplication object represent?
User can upload more than one document to list Item.
User can upload more than one document to document Set Item.
Can an event receiver be deployed through a SharePoint feature?
Which of the below is synchronous event
Where can we create SharePoint Business Taxonomy ?
What file does a SharePoint solution package ...
Which of the below is asynchronous event
Which dll is important for COM ?
Where we can able to create the site content type?
Which of the below command is used to install feature on SharePoint...
Which of the below can be deployed using SharePoint 2010 Features?
What is the advantage in using Windows PowerShell over ...
Add one item(containing date and time) in list A, whenever user add a...
What is a SPSite and SPWeb object, and what is the difference between...
What are the types of input forms that can be created for a workflow?
This class belong to client object Model
Which of the following is correct 
User can upload more than one document to document library Item.
How can we change the item level permission ?
How many type of connections can be crated from Infopath?
What base class do event receivers inherit from?
Alert!

Advertisement