0% found this document useful (0 votes)
433 views

Sharepoint

The document contains 60 multiple choice questions about JavaScript Object Model (JSOM), Client Side Object Model (CSOM), and SharePoint Framework (SPFx). The questions cover topics such as using JSOM and CSOM to interact with SharePoint, SharePoint app hosting models, REST APIs, LINQ queries, event receivers, workflows, web parts, and more.

Uploaded by

Shailesh Kr
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
433 views

Sharepoint

The document contains 60 multiple choice questions about JavaScript Object Model (JSOM), Client Side Object Model (CSOM), and SharePoint Framework (SPFx). The questions cover topics such as using JSOM and CSOM to interact with SharePoint, SharePoint app hosting models, REST APIs, LINQ queries, event receivers, workflows, web parts, and more.

Uploaded by

Shailesh Kr
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 9

1.

Dsa

2. I can create a timer job in sharepoint using jsom. State true or false

Select one:

True

False

3. Identify the JSOM objects

Select one or more

a. SPbasePermissionObject
b. SP web
c. SPList
d. SPViewCollection

4. Which of the following statement is correct?

Select one or more:

a. JSOM cannot be used to perform impersonated task.


b. CSOM can be used to perform impersonated task.
c. CSOM cannot be used to perform impersonated task.
d. JSOM can be used to perform impersonated task.

5. Identify the sharepoint app hosting models

Select one or more

a. Sandbox
b. Provider hosted
c. Sharepoint hosted
d. Farm Solution

6. What are the authentication methods available for the client object model application?

Select one:

a. Anonymous
b. Default(windows authentication)
c. All the listed above
d. FormAuthentication
7. Which of the classes would you use to create a new list in sharepoint using CSOM?

Select one:

a. ListCreationInformation
b. ListCreationInstance
c. SPListCreationInformation
d. SPList

8. Which of the following is correct?

Select one:

a. Context.executeQueryAsync(Function.createDelegate(this,this.success).Function.create
Delegate(this,this.failed))
b. Context.executeQueryAsync(Function.createDelegate(this,this.failed).Function.createDe
legate(this,this.success))
c. Context.executeQueryAsync(Function.createDelegate(this.success).Function.createDele
gate(this.failed))
d. Context.executeQueryAsync(Function.createDelegate(this.failed).Function.createDelega
te(this.sucess))

9. Which is the correct REST endpoint to get current user details?

Select one:

a. /sites/_api/web/User
b. /sites/_api/UserProfile/User
c. /sites/_api/UserProfile/CurrentUser
d. /sites/_api/web/CurrentUser

10. How do you specify last-in-wins concurrency checks?


Select one:

a. Don't specify ETag


b. Set ETag to *
c. Set ETag to 0
d. Set Etag to ""

11. What would you used to get data from multiple list

Select one or more

a. Content Query webpart


b. SPSiteDataQuery
c. SpQuery
d. REST API for Sharepoint Search
e. Content Search webpart
12. What are the advantages of using LINQ over CAML for data retrieval?

Select one:

a. None of the above


b. Object disposal is not required
c. All objects are accessible anonymously
d. Enables to work with strong typed objects.

13. Identify the appropriate approach to access ECMAScript object model API’s

Select one or more:

a. include sp.core.js
b. include sp.debug.js
c. import Microsoft.sharepoint.client.dll
d. include sp.js file

14. when you call executeQueryAsync in JSOM on the client side, it executes the object model code
you declared and carries on immediately, then returns .this is an asynchronous call,state true or
false

select one

true

false

15. a client is having multiple site collection provisioned and data needs to be transferred from one
site collection to other site collection using CSOM, we can access objects and push data
between the site collection. State true or false

select one

true

false

16. repeat

17. it helps us to present and exchange data in a self-descriptive and independent way. state true or
false

select one:

true

false
18. Repeat

19. Which of the following APis are available to access data in SharePoint?

Select one or more

a. Server Side object model


b. Client Side Object Model
c. REST API
d. ASMX Web Services
e. Remote Procedure call RPC piNcode

20. SCSOM allows access to SharePoint data and features from remote client State True or False
Select one
True
False

21. CSOM

Client side object model

22. The .app file is


a. A 7z file
b. A rar file
c. A zip file
d. A cab file

23. Powershell commands are required to deploy the JSOM code. State true or false.

Select one

True

False

24. repeat
25. Repeat

26. What is the preferred URL for REST API in SharePoint 2013?
a. _api
b. svc
c. /_vti_bin/_api
d. /_vti_bin/listdata.svc
27. Rest

Representational state transfer

28. We can write JSOM in Provider hosted app and state true or false
Select one
True
False

29. Which event receiver should be used in order to avoid the lIst item being deleted by adding
custom code?

Select one

a. itemDeleting
b. Itemupdated
c. itemUpdating
d. itemDeleted

30. repeat

31. in what scenario SPSiteDataQuery should be used over SPCamlQuery?

Select one or more

a. to query multiple list from multiple web application


b. to query multiple list from multiple list within the sitecollection
c. to query multiple list from multiple sitecollection
d. to query multiple list from multiple list within the subweb

32. What is the difference between update() and SystemUpdate() Methods?

Select one:

a. SystemUpdate() method executes in current user context and update() executes in


application pool context
b. Update() creates a new version whereas systemupdate() will not create a new version
on modification of data.
c. SystemUpdate() create a new version whereas update() will not create a new version on
modification of data.
d. Update() method executes in current user context and systemUpdate
() executes in application pool context.
33. What can be deployed as the sandbox Solution?

Select one:

a. Site Defination
b. Application Pages
c. List definition
d. webparts

34. repeat

35. Identity in an element for which workflows can be associated

Select one or more

a. List item
b. Content Type
c. List library
d. Site level

36. the significance of using Form Digest control the master


Select one:
a. Security validation
b. Page rendering
c. Form disposing
d. Script loading

37. Which of these column types cannot be used as lookup column for ano

Select one or more


a. multiple Lines of Text
b. Number
c. Date and Time
d. Currency

38. repeat
39. repeat

40. sharepoint application pages and content pages are stored in sharepoint database. State true or
false

Select one:

True

false
41. Synchronous event handlers will execute after the action is completed. state true or false

Select one:

True

False

42. repeat
43. repeat

44. when full trust solutions are suitable in sharepoint development,


1. If you have an on-Premise deployment of sharepoint
2. You have lot of existing solutions in earlier version of sharepoint (MOSS 2007 S
3. To develop Timer job of admin page cannot be app

Select one

a. Only 2
b. Only 1,2
c. Only 1
d. 1,2 and 3

45. **************

46. ******************

47. Select one:


a. SPFPKG
b. None of the above
c. APP
d. SPPKG

48. SpFx components can be used in the self created sites. State true or false

Select one:

True

false

49. repeat
50. repeat
51. which file defines the package metadata in a webpart?

Select one

a. pkg.xml
b. package-solution.json
c. pkg.info.json
d. package-solution.xml

52. which command is used to install the SPFx developer certificate?

Select one:

a. gelp trust-dev-cert
b. gulp trust-dev-cert
c. gulp trust-dev-certificate
d. gelp trust-dev-certificate

53. The GraphhttpClient issues a web request to the ap SP OAuth Token/Acquire to acquire a valid
access token State

Select one
True
False

54. The style being for HTML elements ty


1. Module scss file
2. Directly applying in the elements by style attribute
3. By the elements configured in option 1

Select one
a. 1,2 and 3
b. Only 1 and 3
c. Only 1
d. Only 1 and 2
e. Only 2

55. Describe the benefits of SPFX or Why we need SPFX

Select one
a. Empower SharePoint developers both inside and outside Microsoft
b. Build more productive experiences and apps that are responsive and modernes
c. build modern SharePoint experience
d. All the Listed options
56. The version of the solution can be updated in

Select one
a. serve json
b. package-solution json
c. None of the listed options
d. config json

57. What is the full form of CDN?


Answer Content Delivery Network

58. We can use SharePoint Framework that work seamlessly across different operating systems
State True or

Select one
True
False

59. In the sub class of react how will you make sure that the properties being passed from parent
class can

Select one

a. By using super(state) in the constructor


b. By using super(props) the beginning of constructor
c. By using super() the constructor
d. Asd

60. asd

You might also like