sharepoint 2013 interview questions-apps

6
sharepointsecurity.com http://www.sharepointsecurity.com/sharepoint/sharepoint-development/75-sharepoint-2013-interview-questions-developer/ 75 SharePoint 2013 Interview Questions – Developer Yesterday I shared some SharePoint 2013 IT Pro interview questions I had to use for a contract position I was filling, they are located here. In this post, I will share the correlating list of 75 developer questions I was using. In interviews, I rarely ask people to write code, so most of these are concept development questions. Things like how one used an object and basic C# constructs are left out, since there are numerous sources for that already available. These questions are specific to SharePoint 2013. 1) Describe the Cloud App Model. The Cloud App Model that enables you to create apps. Apps for SharePoint are self-contained pieces of functionality that extend the capabilities of a SharePoint website. 2) Why build Apps? Enables you to build apps for SharePoint by using familiar tools and a rich set of features. Familiar programming model and access to SharePoint data and services, Multiple options for hosting, Familiar user experience for end users, Integration with apps for Office, and SharePoint Store and App Catalog. 3) What as an App in its most basic form? A web application that is registered with SharePoint using an app manifest 4) What is an app manifest? An app manifest is an XML file that declares the basic properties of the app along with where the app will run and what to do when the app is started. 5) Where can the code for an app run? SharePoint-hosted apps, Provider-hosted and auto hosted apps, Apps that have a mix of components in SharePoint and in the cloud 6) How does an app communicate with SharePoint? 1. REST and JavaScript APIs 2. Managed APIs (.NET) 7) How can the app authenticate to SharePoint? 1. Inside SharePoint 2. In the cloud 8) How are apps distributed? Apps for SharePoint are distributed as an app package. 9) What are some options for app publishing? 1. Public SharePoint app store 2. Organization’s app catalog 10) What is OData?

Upload: sandeep-kumar-vemula

Post on 15-Apr-2016

14 views

Category:

Documents


0 download

DESCRIPTION

sharepoint

TRANSCRIPT

Page 1: SharePoint 2013 Interview Questions-APPS

sharepointsecurity.comhttp://www.sharepointsecurity.com/sharepoint/sharepoint-development/75-sharepoint-2013-interview-questions-developer/

75 SharePoint 2013 Interview Questions – Developer

Yesterday I shared some SharePoint 2013 IT Pro interview questions I had to use for a contract position I wasfilling, they are located here. In this post, I will share the correlating list of 75 developer questions I was using. Ininterviews, I rarely ask people to write code, so most of these are concept development questions. Things likehow one used an object and basic C# constructs are left out, since there are numerous sources for that alreadyavailable. These questions are specific to SharePoint 2013.

1) Describe the Cloud App Model.

The Cloud App Model that enables you to create apps. Apps for SharePoint are self-contained pieces offunctionality that extend the capabilities of a SharePoint website.

2) Why build Apps?

Enables you to build apps for SharePoint by using familiar tools and a rich set of features. Familiar programmingmodel and access to SharePoint data and services, Multiple options for hosting, Familiar user experience for endusers, Integration with apps for Office, and SharePoint Store and App Catalog.

3) What as an App in its most basic form?

A web application that is registered with SharePoint using an app manifest

4) What is an app manifest?

An app manifest is an XML file that declares the basic properties of the app along with where the app will run andwhat to do when the app is started.

5) Where can the code for an app run?

SharePoint-hosted apps, Provider-hosted and auto hosted apps, Apps that have a mix of components inSharePoint and in the cloud

6) How does an app communicate with SharePoint?

1. REST and JavaScript APIs

2. Managed APIs (.NET)

7) How can the app authenticate to SharePoint?

1. Inside SharePoint

2. In the cloud

8) How are apps distributed?

Apps for SharePoint are distributed as an app package.

9) What are some options for app publishing?

1. Public SharePoint app store

2. Organization’s app catalog

10) What is OData?

Page 2: SharePoint 2013 Interview Questions-APPS

The Open Data protocol (OData) lets you access a data source, such as a database, by browsing to a speciallyconstructed URL.

11) What is the primary benefit of OData?

Simplified approach for connecting to and working with data sources that are hosted within an organization.

12) What technologies does OData use?

1. HTTP

2. Atom

3. JavaScript Object Notation (JSON)

13) How can you avoid direct code against the OData source?

Business Connectivity Services (BCS) can communicate with OData sources, or producers, without having tocode directly to the OData source.

14) What is an OData producer, and some examples?

Producers expose their data in a structured way via a web service. Examples include SharePoint Foundation2010, SharePoint Server 2010, SQL Azure, Windows Azure Table Storage, Windows Azure Marketplace, SQLServer Reporting Services, Microsoft Dynamics CRM 2011, Windows Live.

15) What is OAuth?

An open protocol for authorization.

16) What does OAuth enable?

Secure authorization from desktop and web applications in a simple and standard way.

17) What is OAuth used?

To authorize requests by an app for SharePoint to access SharePoint resources on behalf of a user and toauthenticate apps in the Office Store, an app catalog, or a developer tenant.

18) What is an Access token?

Access tokens are issued by the OAuth security token service (STS) to request app permissions.

19) What are the three types of authorization policies?

user-only policy, user + app policy, or app-only policy

20) How does an app for SharePoint requests permissions to access SharePoint resources?

An app for SharePoint requests the permissions that it needs during installation from the user who is installing itand then the developer of an app must request, through the app manifest file, the permissions an app needs.

21) How is an app granted the permissions requested?

An app must be granted permissions by the user who is installing it and users can grant only the permissions thatthey have; the user installing the app must be able to grant all permissions required by the app, or app installationfails.

22) When is an app granted the permissions it asked for?

An app is installed by a website administrator, a app is explicitly granted permission by a tenant administrator or

Page 3: SharePoint 2013 Interview Questions-APPS

website administrator or an end user gives consent.

23) What are scopes in terms of SharePoint permissions?

Scopes indicate where in the SharePoint hierarchy a permission request applies.

24) What are some of the features of Office 365 Development Tools?

Create and manage projects, develop apps, share and publish apps.

25) What office technology can be used to build SharePoint 2013 workflows?

Visio 2013 includes a SharePoint 2013 Workflow template that can be used.

26) What is a workflow stage shape in SharePoint Designer 2013?

A stage can contain any number of shapes and may include branching. The stage or step itself might be one nodeof a longer workflow.

27) What is a workflow loop shape in SharePoint Designer 2013?

Loops are a series of connected shapes that will execute as a loop, returning from the last shape in the series tothe first, until a condition is satisfied.

28) What is a step shape in SharePoint Designer 2013?

Steps represent a grouped series of sequential actions.

29) What is an example approach to navigate SharePoint data structure in SharePoint 2013?

Managed code or the SharePoint REST service.

30) What is the SPContextWebInformation structure?

Contains the initialization properties that can be used in subsequent REST requests.

31) What is a WebInfo object?

From REST resources it is an object that contains the scalar properties of the site, but that does not include anyassociated entity sets such as list collections or field collections.

32) What request type from a REST resource allows one to create a SharePoint object?

POST request.

33) What request type from a REST resource allows one to access the contents of a file ?

GET request.

34) What request type from a REST resource allows one update the contents of a file?

PUT request.

35) What request type from a REST resource allows one to delete a SharePoint object?

POST to that resource including an X-Http-Method header of DELETE.

36) What are HTML ETags?

The SharePoint REST service uses HTML ETags for concurrency control.

Page 4: SharePoint 2013 Interview Questions-APPS

37) What are ETags useful for?

When you perform a PUT, PATCH, MERGE, or DELETE request, you can specify an ETag in the If-Match HTTPrequest header.

38) What are the factors to consider when choosing a SharePoint API?

The type of application, existing skills, and the device on which the code runs.

39) What is Client-side rendering?

Client-side rendering provides a mechanism that you can use to produce your own output for a set of controls thatare hosted in a SharePoint page.

40) What are remote event receivers?

Remote event receivers handle events that occur to an item in the app, such as a list, a list item, or a web.

41) What is Microsoft Push Notification Service?

Using the Microsoft Push Notification Service (MPNS), Windows Phone apps can receive notifications through theInternet of events triggered on Microsoft SharePoint Server.

42) What is the benefit os MPNS?

The app can be registered to receive notifications from the server, and an event receiver can initiate a notificationand send it to the receiving app for handling.

43) What are some benefits of the new Geolocation field type?

Allows incorporation of location, maps, and proximity search features into their web and mobile apps andsolutions.

44) What are interactive social feeds?

Interactive social feeds are designed to encourage people to share information and to stay connected with peopleand content.

45) What are some common programming tasks when working with social feeds?

Get the user for the current context, get the feed for the current user, get the personal feed for a particular user.

46) What are feed types?

Feed types represent slices of feed data.

47) What are some examples of feed types?

Personal, News, Timeline, Likes, and Everyone.

48) What method do the server, client, and JavaScript object models use to retrieve feed types?

The GetFeed method.

49) What API’s can be used to programmatically follow people?

Client object models, mobile client object model, JavaScript object model, representational State Transfer (REST)service, and server object model.

50) What is the SocialFollowingManager object?

Page 5: SharePoint 2013 Interview Questions-APPS

Consolidates the core Following People and Following Content functionality for the current user.

51) What is the PeopleManager object?

Provides some functionality that SocialFollowingManager does not provide, not really worth grilling about.

52) What is an external content enrichment web service?

Enables users to modify the managed properties of crawled items before they are indexed.

53) At a high level, how does the web service client work?

The web service client works with managed properties that you can configure as input properties or as outputproperties.

54) What is a trigger condition in terms of a web service callout?

A trigger condition is an expression that is used to configure the web service callout.

55) How does one use the Search .NET Framework managed CSOM?

Get a ClientContext instance then use the Microsoft.SharePoint.Client.Search.Query namespace

56) Do custom search solutions support SQL syntax?

No.

57) What are Query properties?

Provide information about a search query.

58) What is the the ONEAR operator?

Provides ordered near functionality.

59) What is a display template in terms of SharePoint search?

Display templates define the visual layout and behavior of a result type by using HTML, CSS, and JavaScript.

60) What are result types in terms of SharePoint search?

Result types define how to display a set of search results.

61) How does one use the connector framework in terms of SharePoint search?

Enables you to retrieve claims information for content stored in custom external data sources that are crawled.

62) What is Keyword Query Language (KQL)?

Allows you to you specify the search terms or property restrictions that are passed directly to the search service.

63) What is FAST Query Language (FQL)?

FQL is a structured query language that supports advanced query operators.

64) What is the workflow execution host in the new workflow infrastructure in SharePoint 2013?

Windows Azure.

65) Are workflows are no longer compiled into managed assemblies?

No they are fully declarative.

Page 6: SharePoint 2013 Interview Questions-APPS

66) What is meant by a fully declarative workflow?

The workflow is described (literally) in XAML and then executed interpretively at run time.

67) What is the Design Manager?

The Design Manager enables a step-by-step approach for creating design assets that you can use to brand sites.

68) What is the Snippet Gallery?

Allows a user to select a component, configure its properties and update the snippet, copy the HTML snippetthat’s generated, and paste that HTML snippet into your HTML file.

69) What are Device channels?

Device channels define channels for one or more devices allowing finely-tuned control over how mobile usersexperience your site.

70) What is managed navigation?

Managed navigation is the taxonomy-based alternative to the traditional SharePoint navigation feature.

71) What are Catalogs?

Allow you to incorporate lists into your publishing sites.

72) At a high level, what is cross-site publishing?

Enables you to reuse content across multiple site collections.

73) What is the Machine Translation Service?

The Machine Translation Service is a new service application in SharePoint 2013 that provides automaticmachine translation of files and sites.

74) What is PowerPoint Automation Services?

Allows conversion from the PowerPoint binary file format (.ppt) and the PowerPoint Open XML file format (.pptx) toother formats.

75) What are the supported source presentation formats?

Open XML File Format presentation format (.pptx) and PowerPoint 97–2003 presentation (.ppt).