YouTube Icon

Interview Questions.

Top 100+ Sharepoint Developer Interview Questions And Answers - Jun 01, 2020

fluid

Top 100+ Sharepoint Developer Interview Questions And Answers

Question 1. Whats Are The New Delegate Controls In Sharepoint 2013?

Answer :

In SharePoint 2013, three New Delegate Controls had been Introduced for the motive of showing the brand new Top Suite bar (with links SkyDrive, NewsFeed,Sync,comply with).

These Controls are :

SuiteBarBrandingDelegate delegate Control
SuiteLinksDelegate delegate Control
PromotedActions Delegate Control
Question 2. What Are The Changes In Csom And Rest Based Apis?

Answer :

Microsoft has progressed each Client Side Object Model (CSOM) and Representational State Transfer (REST) based APIs by using adding a far wanted assist for the Search, User Profiles, Taxonomies, and Publishing Object Model.Client.Svc service is prolonged with REST abilties and accepts HTTP GET, PUT, POST requests.

VB.NET Interview Questions
Question 3. How Does An App For Sharepoint Requests Permissions To Access Sharepoint Resources?

Answer :

An app for SharePoint requests the permissions that it needs during set up from the user who's installing it after which the developer of an app must request, thru the app happen file, the permissions an app desires.

Question four. What Is The New Spsecurityeventreceiver?

Answer :

SharePoint 2013 Introduces a Cloud App Model that enables you to Create apps.Apps for SharePoint are self-contained portions of functionality that enlarge the abilties of a SharePoint internet site. An app may consist of SharePoint additives inclusive of lists, workflows, and placement pages, but it could additionally surface a far off net software and faraway statistics in SharePoint.

VB.NET Tutorial
Question five. What Are The Differences Between The Two Base Classes And What Are The Inherit Benefits Of Using One Over Another?

Answer :

The distinction is the Microsoft.SharePoint.WebPartPages.WebPart base class is meant for backward compatibility with preceding versions of SharePoint. The benefit of using the SharePoint WebPart base magnificence is it supported:

Cross page connections
Connections between Web Parts which are outside of a Web Part sector
Client-side connections (Web Part Page Services Component)
Data caching infrastructure
NET 2.0 WebParts are commonly considered better to use because SharePoint is constructed upon the ASP.NET 2.Zero web architecture. Inheriting from the ASP.NET 2.Zero base magnificence gives you capabilities that inherit to ASP.NET 2.Zero, together with embedding assets instead of use ClassResources for deployment of said types.
ASP.NET Interview Questions
Question 6. What Is The Gac?

Answer :

The GAC stands for the worldwide assembly cache. It is the system extensive code cache which will deliver custom binaries region into the whole trust code institution for SharePoint. Certain SharePoint assets, together with Feature Receivers need full agree with to run successfully, and therefore are placed into the GAC. You need to continually try and keep away from deployment to the GAC as tons as feasible for the reason that it's going to probably permit improvement code to do extra than it become supposed to do.

Question 7. What Is Strong Naming (signing) A Web Part Assembly File Mean?

Answer :

Signing an assembly with a strong call (a.Okay.A strong naming) uses a cryptographic key pair that offers a completely unique identity to a aspect that is being constructed. This identification can then be referred at some stage in the rest of the surroundings. In order to put in assemblies into the GAC, they must be strongly named. After signing, the binary could have a public key token identifier which can be use to sign up the component in various different locations on the server.

ASP.NET Tutorial Share Point Administration Interview Questions
Question eight. What Are Safe Controls, And What Type Of Information, Is Placed In That Element In A Sharepoint Web.Config File?

Answer :

When you set up a WebPart to SharePoint, you ought to first make it as a secure manage to use inside SharePoint inside the internet.Config file. Entries made in the safe controls element of SharePoint are encountered by using the SharePointHandler object and could be loaded within the SharePoint environment nicely, those not will no longer be loaded and could throw an mistakes.

In the normal secure control access (this is fashionable, there will be extra), there may be usually the Assembly call, the namespace, the general public key token numeric, the typename, and the safe assertion (whether or not it's miles secure or no longer). There are other elective elements.

Question 9. What Is The Createchildcontrols() Method? How Can You Use It To Do Something Simple Like Displaying A Label Control?

Answer :

The CreateChildControls approach in WebParts is used to inform the WebPart that there are children controls that need to be output for rendering. Basically, it's going to upload any baby ASP.NET controls which might be known as instantiating each manage with its applicable homes set, wire any relevant occasion handlers to the manage, and many others.

Then the upload approach of the control elegance will add the control to the controls series. In the applicable WebPart render approach, the EnsureChildControls method can be referred to as (or set to fake if no infant controls must be referred to as) to make sure that the CreateChildControls approach is administered. When the usage of CreateChildControls it means that your WebPart carries a composition of baby controls.

In order to create something like a label control in Create, you would create a brand new label manipulate the use of the new key-word, set the diverse homes of the manipulate like Visible=True and ForeColor = Color.Red, after which use Controls.Add(myLabelControl) to feature the manipulate to the controls collection. Then you could declare EnsureChildControls within the Render technique of the WebPart.

Microsoft Office SharePoint Server (MOSS) Interview Questions
Question 10. What Does The Rendercontents Method Do In An Asp.Net 2.Zero Webpart?

Answer :

The render contents method will render the WebPart content to the writer, generally an HtmlTextWriter seeing that WebParts will output to an HTML circulate. RenderContents is used to inform how the controls which are going to be displayed inside the WebPart should be rendered on the page.

Question 11. What Is The Webpartmanager Sealed Class? What Is Its Purpose?

Answer :

The WebPartManager sealed elegance is answerable for managing the whole thing taking place on a WebPart web page, including the WebParts (controls), events, and misc. Capability to be able to arise in WebPartZones. For instance, the WebPartManager is accountable for the capability this is furnished whilst you are running with transferring a WebPart from WebPartZone to WebPartZone. It is called the the imperative magnificence of the Web Part Control Set.

Asp Dot Net Mvc four Interview Questions
Question 12. What Is A Spsite And Spweb Object, And What Is The Difference Between Each Of The Objects?

Answer :

The SPSite item represents a collection of web sites (website series [a top level sites and all its subsites]). The SPWeb item represents an instance SharePoint Web, and SPWeb object contains matters like the real content material. A SPSite item carries the numerous subsites and the information regarding them.

VB.NET Interview Questions
Question 13. How Would You Go About Getting A Reference To A Site?

Answer :

C#

< view plain text >

SPSite = new  SPSite(“http:/server”);

SPWeb = SPSite.OpenWeb();

Question 14. What Does A Spwebapplication Object Represent?

Answer :

The SPWebApplication gadgets represents a SharePoint Web Application, which basically is an IIS digital server. Using the magnificence you may instigate excessive level operations, such as getting all of the capabilities of a whole Web Application instance, or doing high degree introduction operations like developing new Web Applications via code.

Question 15. Would You Use Spwebapplication To Get Information Like The Smtp Address Of The Sharepoint Site?

Answer :

Yes, on the grounds that this is a Web Application level setting. You would iterate through every SPWebApplication within the SPWebApplication series, and then use the correct property calls (OutboundMailServiceInstance) if you want to go back settings concerning the mail carrier together with the SMTP address.

Asp Dot Net Mvc Interview Questions
Question sixteen. How Do You Connect (reference) To A Sharepoint List, And How Do You Insert A New List Item?

Answer :

C#

< view plain text >

using(SPSite mySite = new SPSite(“yourserver”))

the use of(SPWeb myWeb = mySite.OpenWeb())

SPList interview List = myWeb.Lists[“list insert”];

SPListItem newItem = interview List.Items.Add();

newItem[“interview”] = “interview”;

newItem.Update();

Question 17. How Would You Loop Using Splist Through All Sharepont List Items, Assuming You Know The Name (in A String Value) Of The List You Want To Iterate Through, And Already Have All The Site Code Written?

Answer :

C#

< view plain text >

SPList interviewList = myWeb.Lists[“listtoiterate”];

foreach (SPListItem interview in interviewList)

// Do Something

Microsoft Sharepoint 2013 Interview Questions
Question 18. How Do You Return Sharepoint List Items Using Sharepoint Web Services?

Answer :

In order to retrieve listing objects from a SharePoint list thru Web Services, you must use the lists.Asmx net carrier by setting up a web reference in Visual Studio. The lists.Asmx exposes the GetListItems technique, which will permit the return of the full content of the listing in an XML node.

It will take parameters like the GUID of the call of the listing you're querying against, the GUID of the view you will question, and so on.

ASP.NET Interview Questions
Question 19. When Retrieving List Items Using Sharepoint Web Services, How Do You Specify Explicit Credentials To Be Passed To Access The List Items?

Answer :

In order to specify specific credentials with a Web Service, you usually instantiate the web carrier, after which using the credentials houses of the Web Service item you use the System.Net.NetworkCredential class to specify the username, password, and domain that you want to skip while making the internet service call and operations.

Question 20. What Is Caml, And Why Would You Use It?

Answer :

CAML stands for Collaborative Application Markup Language. CAML is an XML based language which presents statistics constructs that build up the SharePoint fields, view, and is used for desk definition for the duration of site provisioning.

CAML is accountable for rending information and the ensuing HTML this is output to the person in SharePoint. CAML may be used for an expansion of situations, ordinary is used to query, build and customize SharePoint based sites.

A popular use might be building a CAML query in a SharePoint WebPart in an effort to retrieve values from a SharePoint list.

Sharepoint Online Interview Questions
Question 21. What Is Impersonation, And When Would You Use Impersonation?

Answer :

Impersonation can basically provide the capability of executing something in the context of a exceptional identification, as an example assigning an account to users with anonymous get admission to. You would use impersonation so as to access assets on behalf of the consumer with a one of a kind account, that normally, that wouldn’t be able to get entry to or execute something.

Question 22. What Is The Idesign Times Html Provider Interface, And When Can You Use It In Webparts?

Answer :

The IDesign Times Html Provider interface uses the characteristic GetDesignTimeHtml() that can incorporate your relevant render methods. It was useful to apply in 2003 because it allowed your WebPart to have a preview whilst a web page was edited in FrontPage with the Webpart on it, due to the fact the GetDesignTimeHtml() method contains the HTML for the designer to render.

Question 23. What Are Webpart Properties, And What Are Some Of The Attributes You See When Declaring Webpart Properties In Code?

Answer :

WebPart houses are just like ASP.NET control houses, they're used to have interaction with and specify attributes that need to be carried out to a WebPart by a user. Some of the attributes you notice with ASP.NET 2.0 homes are WebDescription, WebDisplayName, Category, Personalizable, and WebBrowsable. Although most of those properties come from the System.Web.UI.WebControls.WebParts class, ones like Category come out of System.ComponentModel namespace.

Sharepoint Designer Workflow Interview Questions
Question 24. Why Are Properties Important In Webpart Development, And How Have You Exploited Them In Past Development Projects? What Must Each Custom Property Have?

Answer :

Properties are important because WebParts allow tiers of personalization for each user. WebPart homes make it viable for a person to interact, regulate, and boom standard enjoy value with the programmatic assets which you expand without having the want to apply an outside editor or right any code.

A quite simple example of exploiting a belongings could be some thing like permitting the consumer to alternate the text at the WebPart design interface for you to show anything string of textual content they choice.

Each custom property which you have ought to have the proper get and set accessor strategies.

Share Point Administration Interview Questions
Question 25. What Are Classresources? How Do You Reference And Deploy Resources With An Asp.Net 2.Zero Webpart?

Answer :

ClassResources are used whilst inheriting from the SharePoint.WebPart.WebPartPages.WebPart base elegance, and are defined in the SharePoint solution file as things that should be stored in the wpresources listing at the server. It is a helpful listing to apply that allows you to install custom pix. In ASP.NET 2.0, typically matters which include pics are referenced through embedding them as assets inside an assembly. The appropriate component approximately ClassResources is that they can help to put off recompiles to alternate small interface adjustments or changes to external JavaScript documents.

Question 26. What Is A Sharepoint Solution File? How Does It Differ From Webpart .Cab Files In Legacy Development? What Does It Contain?

Answer :

A SharePoint answer document is basically a .Cupboard record with all a builders ustom componets suffixed with a .Wsp extension that aids in deployment. The huge difference with SharePoint answer files is is that an answer:lets in deployment to all WFE’s in a farmis quite plausible from the interface allowing deployment, retraction, and versioningCan package all forms of assets like site definitions, feature definitions (and related additives), Webparts, and so forth.

.Net Deployment Interview Questions
Question 27. What Is A .Ddf File And What Does It Have To Do With Sharepoint Solution Creation?

Answer :

A .Ddf record is a information directive document and is used when building the SharePoint solution package specifying the supply files and their vacation spot locations. The essential component for a person to apprehend is that the .Ddf file will be surpassed as a parameter to the MAKECAB software to orchestrate production of the SharePoint solution fiel.

Microsoft Office SharePoint Server (MOSS) Interview Questions
Question 28. What File Does A Sharepoint Solution Package Use To Orchestrate (describe) Its Packaged Contents?

Answer :

The answer Manifest.XML file.

Question 29. What Deployment Mechanism Can You Use To Instigate Code Access Security Attributes For Your Webparts?

Answer :

SharePoint answer documents can add a good way to take care of code access safety deployment troubles. This is accomplished inside the element inside the SharePoint answer happen.XML, which makes it less difficult to get assemblies the perfect permissions in an effort to function within the bin listing of the net utility.

.NET Assemblies Interview Questions
Question 30. What Is A Sharepoint Feature? What Files Are Used To Define A Feature?

Answer :

A SharePoint Feature is a purposeful factor that may be activated and deactivate at various scopes during a SharePoint instances, such as on the farm, web site series, internet, etc.

Features have their very own receiver structure, which can help you entice occasions inclusive of while a characteristic is putting in, uninstalling, activated, or deactivated. They are useful because they allow ease of upgrades and versioning.

The  documents which might be used to define a feature are the feature.Xml and occur document. The characteristic XML report defines the actual function and will make SharePoint privy to the hooked up function. The take place file carries details about the characteristic along with capability.

Question 31. What Types Of Sharepoint Assets Can Be Deployed With A Sharepoint Feature?

Answer :

Features can do a lot. For example, you could installation

Simple web page customizations
Custom website online navigation
WebParts
pages
list kinds
listing instances
event handlers
workflows
custom moves
just to call a few
Question 32. What Are Event Receivers?

Answer :

Event receivers are instructions that inherit from the SpItemEventReceiver or SPListEventReceiver base class (both of which derive out of the summary base elegance SpEventReceiver Base), and provide the choice of responding to activities as they arise inside SharePoint, which include adding an item or deleting an item.

Question 33. When Would You Use An Event Receiver?

Answer :

Since occasion receivers respond to events, you may use a receiver for something as easy as canceling an motion, consisting of deleting a document library via the use of the Cancel belongings. This might basically prevent customers from deleting any documents in case you desired to hold retention of stored statistics.

Asp Dot Net Mvc four Interview Questions
Question 34. What Base Class Do Event Receivers Inherit From?

Answer :

Event receivers both inherit from the SPListEventReceiver base class or the SPItemEventReceiver base class, both which derive from the summary base class SPEventReceiverBase.

Question 35. What Is The Difference Between An Asynchronous And Synchronous Event Receivers?

Answer :

An asynchronous occasion occurs after an action has taken vicinity, and a synchronous occasion takes place before an movement has take vicinity. For instance, an asynchronous occasion is ItemAdded, and its sister synchronous occasion is ItemAdding.

Question 36. How Could You Append A String To The Title Of A Site When It Is Provisioned?

Answer :

In the OnActivated occasion:

C#

< view plain text >

SPWeb web site = siteCollection.RootWeb;

web site.Title+=”interview”;

website.Update();

Asp Dot Net Mvc Interview Questions
Question 37. Can An Event Receiver Be Deployed Through A Sharepoint Feature?

Answer :

Yes.

Question 38. What Is A Content Type?

Answer :

A content type is an data blueprint essentially that may be re-used at some point of a SharePoint surroundings for defining things like metadata and related behaviors. It is essentially an extension of a SharePoint list, however makes it transportable to be used at some point of an instance no matter wherein the instantiation occurs, ergo has location independence.

Multiple content kinds can exist in one file library assuming that the right document library settings are enabled. The content kind will comprise matters like the metadata, listform pages, workflows, templates (if a file content material type), and related custom written functionality.

Question 39. Can A Content Type Have Receivers Associated With It?

Answer :

Yes, a content material type will have an event receiver related to it, either inheriting from the SPListEventReceiver base class for list degree events, or inheriting from the SPItemEventReceiver base elegance. Whenever the content type is instantiated, it'll be situation to the occasion receivers which can be related to it.

Question forty. What Two Files Are Typically (this Is Kept Generally) Included When Developing A Content Type, And What Is The Purpose Of Each?

Answer :

There is generally the main content kind report that holds matters just like the content material kind ID, call, institution, description, and model. There is also the ContentType.Fields report which includes the fields to encompass in the content material type that has the ID, Type, Name, DisplayName, StaticName, Hidden, Required, and Sealed elements. They are associated with the aid of the FieldRefs element in the primary content type file.

Microsoft Sharepoint 2013 Interview Questions
Question forty one. What Is An Ancestral Type And What Does It Have To Do With Content Types?

Answer :

An ancestral kind is the bottom kind that the content material type is deriving from, which include Document (zero×0101). The ancestral type will define the metadata fields that are protected with the custom content material kind.

Question forty two. Can A List Definition Be Derived From A Custom Content Type?

Answer :

Yes, a list definition can derive from a content material type which can be visible within the schema.XML of the list definition within the detail.

Sharepoint Online Interview Questions
Question forty three. When Creating A List Definition, How Can You Create An Instance Of The List?

Answer :

You can create a brand new instance of a list by developing an example.XML file.

Question forty four. What Is A Field Control?

Answer :

Field controls are simple ASP.NET 2.0 server controls that provide the fundamental area functionality of SharePoint. They provide simple preferred functionality which include displaying or enhancing list records because it seems on SharePoint listing pages.

Question forty five. What Base Class Do Custom Field Controls Inherit From?

Answer :

This varies. Generally, custom discipline controls inherit from the Microsoft.SharePoint.WebControls.BaseFieldControl namespace, however you can inherit from the default discipline controls.

Question forty six. What Is A Sharepoint Site Definition? What Is Ghosted (uncustomized) And Unghosted (customized)?

Answer :

SharePoint website online definitions are the middle set of capability from which SharePoint site are constructed from, constructing from the SiteTemplates directory within the SharePoint 12 hive.

Site definitions allow several websites to inherit from a core set of files at the record gadget, even though appear to have precise pages, thereby growing performance and allowing adjustments that take place to a website propagate to all web sites that inherit from a domain definition.

Ghosted method that when SharePoint creates a brand new web site it'll reference the documents in the associated web page definition upon site provisioning.

Unghosted means that the website online has been edited with an external editor, and consequently the customizations are instead stored in the database, breaking the inheritance of those files from the report system.

Question 47. What Does Cmdui.Xml Contain?

Answer :

The definitions for the out-of-the-field ribbon elements are split throughout numerous files inside the SharePoint root, with TEMPLATE GLOBAL XML CMDUI.XML being the primary one.

Question 48. Why Would You Use Linq Over Caml For Data Retrieval?

Answer :

Unlike CAML, with LINQ to SharePoint provider, you're running with strongly typed listing item items. For example, an item within the Announcements listing is an item of kind Announcement and an item on a Tasks listing is an object of type Task. You can then enumerate the objects and get the homes in your use. Also, you may use LINQ syntax and the LINQ key phrases constructed into C# and VB for LINQ queries.

Question 49. What Is Difference Between Load() And Loadquery() Methods ?

Answer :

Load approach populates the consumer item directly with what it gets data from the server i.E. A group object like ListItemCollection and many others. But LoadQuery returns the data as a very new series in IEnumerable layout.

Other principal difference is that the Collections that you load the use of the Load() approach are eligible for garbage series only when the patron context variable itself goes out of scope where as, in these collections go out of scope at the cease of IEnumerable listing

Question 50. How Do You Access Ecmascript Object Model Api’s ?

Answer :

The ECMAScript library is to be had in a number of JS documents in the LAYOUTS folder. The predominant document among wide variety of .Js documents is SP.Js. When you include this document within the ASPX page the use of a ScriptLink control, all other required JS documents are loaded automatically.

By linking SP.Js in your page, the SP namespace receives registered. SP is the SharePoint namespace that incorporates all objects. For debugging purposes every js report also has a ‘debug’ equivalent within the equal folder.

Question fifty one. What Is The Purpose Of Calling Clientcontext.Executequery() ?

Answer :

ExecuteQuery offers you the option to limit the variety of roundtrips to the server from your consumer code. All the additives loaded into the clientcontext are accomplished in one move.

Question 52. Can You Deploy .Wsp Solutions From Sharepoint 2010 In Sharepoint 2013?

Answer :

Yes. SharePoint 2013 offers Support for both 14 Hive and 15 Hive. Solutions from SharePoint 2010 may be deployed in SharePoint 2013 both in 14 Hive,15 Hive or both. This may be carried out the use of the new “CompatibilityLevel” parameter of Install-SPSolution cmdlet with which you may now Deploy your wsp Solutions to fourteen hive, 15 hive or both.

Question fifty three. Can You Create & Deploy Sandbox Solutions In Sharepoint 2013?

Answer :

Sandbox Solutions are depreciated in SharePoint 2013.You can nonetheless Create them and deploy them but they are no longer supported with the aid of Microsoft (not 100% certain approximately this though).

Question 54. What Is The New Js Link Property On Spfield?

Answer :

New “SPField.JSLink” assets has been added to help specify any external JavaScript document Containing any Rendering good judgment for Out-of-Box or Custom area type.With JSLink builders can now Control the Rendering (the presentation and validation) of any Field (Custom or Out-of-field) on List paperwork in addition to in Views by means of virtually adding a reference to an External or deployed JavaScript record.

Question fifty five. Is Callout Popups A Replacement To Dialogs In Sharepoint 2013?

Answer :

No. Dialog Framework nonetheless exists.

Question fifty six. What Are Callout Popups In Sharepoint 2013?

Answer :

Similar to Dialog framework in SharePoint 2010, Microsoft has added a brand new Callout Popup framework to Create Hover Popups that you realize as Preview Windows as well. These NotificationTooltipHelp (some thing you name it..) Callout Popups may be completely Customized to add Custom Text & Actions for directing End-customers.For extra details see The new Hover OverPreviewCallout Popups in SharePoint 2013

Question fifty seven. Can We View Pdf Files In Callout Popups?

Answer :

Yes. A Custom Result kind and Display template would be wished.

Question fifty eight. Are There Any Changes To Solutions Deployed In Bin Directory And Gac In Sharepoint 2013?

Answer :

You can no longer add partial agree with Solution Packages to the bin listing.Any documents deployed to the bin directory ought to be complete accept as true with. Any deployment scripts wishes to be updated to ensure that they specify the ideal believe stage. After the discharge of .NET Framework 4.0, the GAC turned into break up into two, one for each CLR.

C:windowsassembly is the region for .NET versions 1.0 thru three.Five and c:windowsmicrosoft.Netassembly is area for all the dlls for venture Created in .NET Framework four.Zero.

Question 59. How Are Sandbox Solution Migrated In Sharepoint 2013?

Answer :

Sandbox Solutions are upgraded with the Content databases.

Question 60. What’s New With Visual Webpart In Sharepoint 2013?

Answer :

A new Visual WebPart Template has been brought to Visual Studio 2012 for Creating Visual Webparts for SharePoint 2013. In this new Template each the User Control and WebPart Classes are merged to Create one template unlike SharePoint 2010 wherein you had a separate ascx and webpart record.Also, now you may Create each Sandbox and Farm solutions using Visual WebPart Template.

Question 61. What’s The New Tilesviewwebpart In Sharepoint 2013?

Answer :

SharePoint 2013 Introduces a new “Getting Started” WebPart that has “Tiles” to offer an easy access to some of the main links within the Site like – adding listslibraries,Creating masterpage and so on.To Programmatically Create this new WebPart a brand new summary base magnificence TilesViewWebPart has been introduced in SharePoint API.You need to Create a Custom Webpart and Inherit from TilesViewWebpart and Override GetTiles() to Create Custom tiles.

Question sixty two. Why Should A Company Migrate To Sharepoint 2013?

Answer :

Microsoft has brought some Incredible capabilities to SharePoint 2013 that may be of huge gain to all the Companies that use SharePoint on a big scale. Most of the new Features are Introduced for Improving SharePoint Performance (for each Browser and SQL) and to beautify the well-known Web Content Management Capabilities.There is an Improvement for all – stop customers, builders and IT directors.

Question sixty three. What Is The Licensing Model For Sharepoint 2013?

Answer :

With SharePoint 2013 Microsoft has Introduced User License Enforcement Capabilities – which means exclusive licenses may be assigned to distinct users primarily based on Active Directory protection companies which might be added in.

A institution of admins for example might need functions which are offered by Enterprise license but a group give up users then again can paintings with Standard license and would no longer want to pay greater.

By default the User License Enforcement is disabled and ought to first be enabled to begin assigning, the usage of, and enforcing user licensing abilties.

Question 64. How Does Sharepoint 2013 Improve Performance?

Answer :

SharePoint 2013 Introduces Minimal Download Strategy and Distributed Cache Service to Improve Page Load; and Shredded Storage to Improve Storage required for saving files.

Question sixty five. What Is Minimal Download Strategy?

Answer :

Minimal Download Strategy in SharePoint 2013 improves rendering overall performance while browsing content where big components of the web page do now not exchange supplying a greater fluid navigation revel in. For instance whilst navigating between a website? Domestic page and Shared Documents web page handiest the Content that has modified among the supply and destination page (controls and placeholders within the content region) are downloaded and Url subsequently updated wherein the chrome is endured.

Question 66. How Does Shredded Storage Work?

Answer :

Every Document in SharePoint 2013 is now saved as multiple threaded BLOBS inside the new Streams statistics desk. Whenever a brand new Version of a record is created, a new Record is written on this facts desk that incorporates handiest the thread BLOBS of the authentic document that corresponds to the Change, merged with the new Changes.

In different phrases a new Blob with Changes is brought as a brand new row within the table. Each BLOB that gets delivered Contains a numerical Id that represents the supply BLOB.

At the stop it's far the process of BLOB Index to keep the track of Blobs and to create a complete record with the Combination of entries that factor to the unchanged shreds of the preceding version(s) and the entries that factor to the newly added Changed shreds.

Question 67. What Is The New Analytics Processing Component In Sharepoint 2013?

Answer :

The Analytics Processing Component in SharePoint Server 2013 analyzes both the Content and the manner users engage with it.The outcomes from the analysis are brought to the items in the search index to be utilized by Search Webparts,Recommendation Reports,Most Popular Items reviews and different WebParts.

Question 68. What Analysis Are Done By Analytics Processing Component In Sharepoint 2013?

Answer :

The Analytics Processing Component runs two primary styles of analyses: Search analytics and Usage analytics. Search analytics analyzes content material within the search index, and utilization analytics analyzes the person movements.

Question sixty nine. What Are Device Channels In Sharepoint 2013?

Answer :

With device channels in SharePoint 2013, you can render a single publishing web page in more than one approaches by the use of specific designs that concentrate on distinctive devices for example cellular gadgets and so forth.These tool channels can every be given a distinctive master page and CSS report to offer customers a extra premiere viewing enjoy.

Question 70. What Is Device Channel Panel Control In Sharepoint 2013?

Answer :

Device Channel Panel is a brand new manipulate that you could consist of in a web page format to govern what content is rendered in which channel. The Device Channel Panel is a container that is mapped to 1 or greater channels.

Question 71. How Does Backward Compatibility Works In Sharepoint 2013?

Answer :

In SharePoint 2013 with the brand new Compatibility Level parameter of Install -SPSolution cmdlet you may now installation your .Wsp or Solution to both 14 hive or 15 hive or both.

Question seventy two. What Is Distributed Cache Service?

Answer :

The Distributed Cache carrier offers caching functions in SharePoint Server 2013. The microblog functions and feeds rely upon the Distributed Cache to keep records for terribly fast retrieval across all entities. The Distributed Cache provider is constructed on Windows Server AppFabric, which implements the AppFabric Caching service. Windows Server AppFabric installs with the prerequisites for SharePoint Server 2013.

Question 73. What’s New With Web Content Management In Sharepoint 2013?

Answer :

For End users and Contributors, a few very Interactive features along with Drag and Drop of documents,Convert to PDF(Print to pdf),Quick edit (datasheet view),Document Library Search(Find a File),Get Embed code for documents and Out of container PDF Support etc. Has been brought in Web Content Management.

Question seventy four. What Is The New Out-of-field Pdf Support?

Answer :

SharePoint 2013 now offers Out-of-box PDF Support and what that honestly means is that PDF icon is now natively supported and PDF whilst opened in SharePoint 2013 will try to open within the Adobe Reader and spark off user to either checkout & open or open the report in PDF directly.

Question 75. What Is Embed Code And How Do You Get Embed Code For A Document?

Answer :

SharePoint 2013 provides a aid to get ?Mbed Information?For documents and other digital Content sorts inclusive of Videos,Audios etc. To be brought on any SharePoint Page or in a Microblogging feed.

Question seventy six. What Are The New “digital Content Types”?

Answer :

In SharePoint 2013 Microsoft has brought a new set of content kinds known as virtual Asset Content Types?For better use of Audio, Video and Images as Web Content.These content types can be added to any library and can be used as a one of the gadgets documents.

Question seventy seven. How Does The New Video Content Type Work In Sharepoint 2013?

Answer :

Video Content kind added to SharePoint 2013 is a completely beneficial addition for Content Authors.The Improved Assets Library gives assist for Video Content Types and gives numerous Out-of-Box views like ?Thumbnails?And Out-of-Box pages like ?Ideo Page?To View Videos in a totally Interactive way.

Videos in SharePoint 2013 are Organized in a manner much like “file units”. SharePoint Creates a stub (think of it as a folder) to maintain a video and all of the associated contents, which includes user-defined properties, thumbnails, video renditions, and different documents associated with the video. You can use the Video Content Type in Asserts Library houses.

Question 78. What Players Are Supported For Playing Sharepoint 2013 Video Files?

Answer :

SharePoint 2013 helps two Video gamers – HTML five player and a Silverlight player.SharePoint chooses the player robotically, relying on the video format that it encounters inside the video set (the collection of documents that are associated with the video). If the layout may be played at the HTML five player, the SharePoint makes use of the Silverlight player.

Question 79. What Is “picture Renditions”?

Answer :

Image renditions allow you to render a single picture in multiple approaches. An image can be displayed in numerous sizes or with specific cropping.

Question eighty. What Is The New Iframes Support In Sharepoint 2013?

Answer :

SharePoint 2013 turned into introduced with the new Out-of-Box Support for IFrames.Admins can now embed dynamic content material from different web sites, such youtube films or maps to any SharePoint website by way of the use of IFrames. Admins could need to add the Domain for the outside website in TML Field Security first.

Question 81. How Would You Use “associated Items” Column?

Answer :

A new Column type related Items has been Introduced in SharePoint 2013 wherein you may upload connection with some other Item or a record from any ListLibrary as a associated entity to one of the Item using Related Items column.

Question eighty two. What Is Cross-web page Publishing?

Answer :

Cross-Site Publishing is a brand new Feature in SharePoint Server 2013 that permits you to reuse content across website online collections,net packages, and farms.You can use go-web page publishing to Create branded Internet, intranet and extranet publishing sites.

Question 83. What’s New With Social Capabilities In Sharepoint 2013?

Answer :

In SharePoint 2013 Microsoft has Introduced new Social Capabilities to permit customers Collaborate Socially within the Company.My Sites have been more suitable Incredibly to Integrate those Social features.Some of the brand new Features added are Community Sites,Microblogging,NewsfeedSite feed,Follow human beings and Follow Sites.

Question 84. What New With Development In Sharepoint 2013?

Answer :

Apart from the new App Model for Creating Custom Components, Microsoft has added some new Namespaces to work with newly added – Social,Event Receivers,Delegate Controls,Callout Popups and different Custom Components in SharePoint 2013.In addition to these training a few new templates in Visual Studio 2012 has also been brought to Create better answers.

Question 85. What’s The New App Model?

Answer :

SharePoint 2013 Introduces a Cloud App Model that enables you to Create apps.Apps for SharePoint are self-contained portions of capability that increase the competencies of a SharePoint internet site. An app can also encompass SharePoint components consisting of lists, workflows, and location pages, however it is able to also surface a far flung net utility and faraway statistics in SharePoint.To see how its different from Farm solution

Question 86. What Kind Of Apps Can Developed?

Answer :

The Code for an app runs in specific places, depending on where your app is hosted.They in no way run inside the context of SharePoint Server, however they will run inside the context of the browser or within the context of the hosted platform.You Can Develop 3 form of Apps –SharePoint-hosted apps Provider-hosted and autohosted apps.In the cloudApps that have a combination of Components in SharePoint and in the cloud

Question 87. How Do You Force A Solution To Be Deployed To 15 Hive And Not 14 Hive?

Answer :

If the answer was Created in Visual Studio 2010, you would add SharePointVersion=”15.Zero″ characteristic in Solution’s take place.Xml file to force it to install in 15 Hive instead of 14 Hive.If the Solution however is Created in Visual Studio 2012, you don’t want to do some thing, it gets deployed to fifteen Hive by means of default.

Question 88. How Do You Deploy Solution To 14 Hive Or 15 Hive Without Modifying Solution.?

Answer :

In SharePoint 2013 with the brand new compatibility Level parameter of Install-SPSolution cmdlet you can now Deploy your wsp Solutions to 14 hive, 15 hive or both.

Question 89. Can You Deploy Master Page And Custom Css From Sharepoint 2010 In Sharepoint 2013?

Answer :

Master Pages and Css has Changed lots in SharePoint 2013.You can set up a master web page in Master web page gallery but the styles from antique center.Css desires to be up to date.

Question 90. Can You Use Fabulous forty Templates In Sharepoint 2013?

Answer :

As per MSDN, Microsoft is not Creating any New Versions of these Templates.The old Sites based on these templates Can be upgraded best if the Templates are Installed correctly in SharePoint 2013.You can attempt installing wsp of Fab 40 with CompatabilityLevel as 15 and improve the present web site collections.

Question 91. How Would You A Migrate A Site Collection In Sharepoint 2013?

Answer :

Backup and Restore SharePoint 2010 Content database to your SharePoint 2013 farm.
Run Test-SPContentDatabase cmdlet to identify lacking Components in conjunction with capability errors and associated warnings. Check the upgrade log and install any missing components and re-run the cmdlet to confirm.
Attach the Content database to the preferred web software the use of Mount-SPContentDatabase cmdlet.
After efficiently mounting the content database to web software, the site need to be available in 14 mode.
Next, to Upgrade the web page to 15 Hive, Navigate to SiteUpgrade.Aspx web page in Site Setting of your web site collection.
Click on “Upgrade the Site Collection” button.
During the improve The SiteUpgrade.Aspx page shows the development and provides a link to an improve log for troubleshooting purposes.
Site Collection Should now be handy in 15 mode.
Question ninety two. Can I Turn Off Social – Follow & Site Feed In Sharepoint 2013?

Answer :

Yes.You Can de-activiate Follow & Social by way of disabling following Content function and placement Feeds feature on the Team web site(within the written Order).By default, the Site feed feature on a crew website online is enabled.

Question 93. What Is Suitebarbrandingdelegate Delegate Control Used For?

Answer :

SuiteBarBrandingDelegate Delegate Control is chargeable for displaying ‘SharePoint’ or ‘Office 365′ text on top left of the new SharePoint 2013 website (in the blue bar). This text can best be replaced through Overriding SuiteBarBrandingDelegate Delegate Control with a custom Custom Control Created using Visual Studio.

Question 94. What Is Suitelinksdelegate Delegate Control Used For?

Answer :

SuiteLinksDelegate Delegate Control is liable for displaying Links “NewsFeed, SkyDrive and Sites” in top proper of the new SharePoint 2013 web site (within the blue bar). These Links can be replaced via Overriding SuiteLinksDelegate Delegate Control the usage of a Custom Control Created the usage of Visual Studio




CFG