New deck Flashcards

1
Q

What is required before any use, alteration, or development of land in Trinidad and Tobago?

A

Approval from the Town and Country Planning Division (TCPD)

This ensures alignment with local planning regulations, zoning laws, and environmental considerations.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What does the Advisory Town Planning Panel (ATPP) do?

A

Reviews decisions made by the TCPD regarding development applications

This includes applications that have been denied or subjected to specific conditions.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What is the purpose of the Appeals Management Information System (AMIS)?

A

To streamline and digitize the appeals application process

It enhances internal operations of the ATPP by automating data collection and management.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

How does AMIS improve the appeals process?

A

By reducing time and effort needed for manual handling

This leads to improved accuracy, consistency, and a quicker review process.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What is a SharePoint Add-In?

A

A self-contained piece of functionality that extends the capabilities of SharePoint websites

It solves a well-defined business problem.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What is meant by a ‘high trust’ add-in in SharePoint?

A

A provider-hosted add-in installed to an on-premises SharePoint farm using a certificate to establish trust

It differs from low trust add-ins which use a context token.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What are the main modules of the AMIS application?

A
  1. Remote web application (Add-In)
  2. Appellants List
  3. Appellant Documents Library
  4. Appeals Application Workflow

Each module plays a specific role in the appeals process.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

What happens during development and updates of a SharePoint add-in?

A

Changes trigger SharePoint to uninstall and then reinstall the updated application

This can lead to the loss of important list and appellant data if the add-in includes an add-in web.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

What is required for installing the SharePoint Workflow Manager?

A

SharePoint Server 2013, SQL Server, and Internet Information Services

Other prerequisites include SharePoint Workflow Manager Client and Azure Service Fabric Runtime.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

What is the purpose of creating a site collection in SharePoint?

A

To manage resources and security for collections of sites

A site collection can have multiple subsites.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

What services must be started for server-to-server add-in use?

A

User Profile Service Application and App Management Service

These services are essential for creating high trust provider-hosted add-ins.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

What is a high trust add-in primarily intended for?

A

Use in an on-premise environment

It allows the add-in to use any user identity needed.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

What type of certificate is needed for a high-trust SharePoint Add-In?

A

An X.509 digital certificate

It can be a domain-issued certificate, a commercial certificate, or a self-signed certificate for debugging.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

True or False: SharePoint 2010 workflows have been retired.

A

True

They were retired on August 1st, 2020 for new tenants.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

What is the recommended version of Visual Studio for developing SharePoint 2013 add-ins?

A

Visual Studio 2012, 2013, or 2015

Visual Studio 2022 is only available for SharePoint 2016, 2019, and SharePoint Online.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

Fill in the blank: A __________ is a group of websites that share common features and are under a single top-level site.

A

Site Collection

Site collections help in organizing content and managing permissions effectively.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
17
Q

What is the significance of the isolated add-in domain in SharePoint?

A

To enhance security by isolating add-in components

The add-in domain should not be a subdomain of the host SharePoint domain.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
18
Q

What command is used to create an isolated add-in domain?

A

Set-SPAppDomain “<your>"</your>

Replace <your> with your actual add-in domain.</your>

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
19
Q

What is the role of the SPManagedAccount in SharePoint?

A

To specify an account for the SPSubscriptionService and AppManagementServiceInstance services

This account must have appropriate permissions.

20
Q

What does the AMIS application enhance in the appeals process?

A

Appellant experience and overall productivity within the ATPP

It achieves this through quicker evaluations and timely feedback.

21
Q

What is an example of a task that AMIS automates?

A

Data collection and management

This minimizes manual handling and errors.

22
Q

What must be done if an add-in includes an add-in web and is uninstalled?

A

The add-in web and its data will be deleted

This can result in loss of important information.

23
Q

What is the purpose of the .cer file in SharePoint?

A

To facilitate secure communication and trust between SharePoint and remote web applications.

24
Q

What permissions must the add-in pool identity have for the C:\Certs folder?

A

Read rights.

25
Which IIS add-in pool serves the SharePoint web application for testing?
OServerPortalAppPool.
26
What is the first step to create a .cer file from a certificate in IIS?
Double-click Server Certificates in IIS manager.
27
What should be selected in the Certificate Export Wizard to export a certificate?
No, do not export the private key.
28
What command is used to ensure SharePoint treats the certificate as a root authority?
New-SPTrustedRootAuthority.
29
What is the format for constructing an issuer ID in SharePoint?
_specific_issuer_GUID_@_realm_GUID_.
30
What switch must be used when registering the certificate as a trusted token issuer?
-IsTrustBroker.
31
What must be done to ensure immediate registration of the token issuer?
Run the iisreset command.
32
True or False: SharePoint accepts self-signed certificates by default.
False.
33
What PowerShell command is used to allow OAuth over HTTP in SharePoint?
$serviceConfig.AllowOAuthOverHttp = $true.
34
What is the file name for the PowerShell script used for debugging SharePoint configuration?
HighTrustConfig-ForDebugOnly.ps1.
35
What version of SharePoint Designer is recommended for compatibility with Microsoft Office 2013?
32-bit version.
36
What packages were added during the development phase for processing form data?
* DocumentFormat.OpenXml * DocumentFormat.OpenXml.Framework.
37
What principle does the implementation of strongly typed reusable partial views adhere to?
DRY (Don't Repeat Yourself) principle.
38
Where is the entry point for the JavaScript file located in the project structure?
src project folder.
39
What is the primary method in the HomeController responsible for handling SharePoint operations?
createAppealApplication.
40
What type of validation was implemented in the Appeals Application model?
Custom validation rules.
41
What are the key metadata fields in a custom task content type?
* Task Title * Assigned To * Due Date * Priority * Status * Project Name.
42
What is a content type in SharePoint?
A collection of metadata fields and settings that defines a specific category of content.
43
What parent content type is used to create custom task content types?
Workflow Task (SharePoint 2013).
44
What is the first step to create a custom content type in SharePoint Designer?
Select Content Types and click Content Type New.
45
What must be done to assign a custom content type to a task list in SharePoint?
Add the custom content type to the task list under Content Types.
46
True or False: SharePoint Designer 2013 workflows can only be started manually.
False.