0

platforms and products Online Quiz - 88

Description: platforms and products Online Quiz - 88
Number of Questions: 20
Created by:
Tags: platforms and products
Attempted 0/20 Correct 0 Score 0

The default port at which MQ listener runs:

  1. 80

  2. 1414

  3. 1415

  4. 1416


Correct Option: B

data a; one=1; run; data b; set a(in=a) a(in=b); if a and b; run; How many observations in dataset b?

  1. 0

  2. 1

  3. 2

  4. Error


Correct Option: A

Data B; X=1; S=X*5; Rename S=Multiply; Keep Multiply; Run; How many variables in dataset B?

  1. 2

  2. 0

  3. 3

  4. 1


Correct Option: B

AI Explanation

To answer this question, let's go through the given code step by step:

  1. Data B; - This statement creates a new dataset named B.

  2. X=1; - This statement assigns the value 1 to the variable X.

  3. S=X*5; - This statement calculates the value of S by multiplying the value of X (which is 1) by 5. Therefore, S becomes 5.

  4. Rename S=Multiply; - This statement renames the variable S to Multiply.

  5. Keep Multiply; - This statement keeps only the variable Multiply in the dataset.

  6. Run; - This statement executes the code.

Based on the given code, only one variable, Multiply, is kept in the dataset B. Therefore, the correct answer is D) 1.

If the webMethods Integration Server is started with from the server root directory with this command, "bin\server.bat -debug 9 -log none", what does this tell the server to do?

  1. Start in level 9 debug mode but does not write any server log information

  2. Start in level 9 debug mode and write all server log information to the screen

  3. Start in level 9 debug mode and write all of the server log information to the Unix syslog or NT event log

  4. There is no level 9 debug mode so the server will fail to start


Correct Option: B

For a REPEAT operation to execute as long as the specified repeat condition remains true, the count parameter needs to be set to:

  1. -1

  2. 0

  3. 1

  4. NULL


Correct Option: A

You are tasked to create a BRANCH which will execute a service only if a string named "partNo" begins with "WEBM". With the evaluate labels parameter set to "true", what is the correct syntax for the label of the service?

  1. %partNo%=="WEBM*"

  2. %partNo%==/^WEBM/

  3. %partNo%==/$WEBM/

  4. %partNo%!=/WEBM.*/


Correct Option: B

AI Explanation

To answer this question, let's go through each option to understand why it is correct or incorrect:

Option A) %partNo%=="WEBM*" - This option is incorrect because the asterisk (*) is not a valid wildcard character in this context. It should be replaced with a regular expression.

Option B) %partNo%==/^WEBM/ - This option is correct. The syntax "/^WEBM/" is a regular expression that matches any string that begins with "WEBM". Therefore, it satisfies the requirement of the question.

Option C) %partNo%==/$WEBM/ - This option is incorrect because the dollar sign ($) is not a valid character in this context. It should be replaced with a regular expression.

Option D) %partNo%!=/WEBM./ - This option is incorrect because the question asks for the label of the service, not the condition to exclude the service. Additionally, the regular expression "/WEBM./" matches any string that contains "WEBM" followed by any number of characters.

The correct answer is B. This option is correct because "/^WEBM/" is a regular expression that matches any string that begins with "WEBM".

The Integration Server requires access to the Java classes for each JDBC driver that it will use. Typically, where must such Java classes be placed?

  1. webMethods6\IntegrationServer\lib

  2. webMethods6\IntegrationServer\lib\jars

  3. webMethods6\IntegrationServer\bin\jars

  4. webMethods6\IntegrationServer\bin


Correct Option: B

AI Explanation

To answer this question, you need to understand where the Integration Server requires access to the Java classes for each JDBC driver that it will use.

Option A) webMethods6\IntegrationServer\lib - This option is incorrect because the "lib" folder is generally used for storing libraries and not specifically for JDBC driver classes.

Option B) webMethods6\IntegrationServer\lib\jars - This option is correct because the "lib\jars" folder is typically where the Integration Server requires the Java classes for each JDBC driver. Placing the JDBC driver classes in this folder allows the Integration Server to access and use them.

Option C) webMethods6\IntegrationServer\bin\jars - This option is incorrect because the "bin\jars" folder is generally used for storing executable files and not specifically for JDBC driver classes.

Option D) webMethods6\IntegrationServer\bin - This option is incorrect because the "bin" folder is generally used for storing binary files and not specifically for JDBC driver classes.

The correct answer is B) webMethods6\IntegrationServer\lib\jars. This option is correct because placing the Java classes for each JDBC driver in this folder allows the Integration Server to access and use them.

Which of the following is a valid reference to an Integration Server service named "quoteService" inside the folder "stock" within the parent folder "bank"?

  1. bank.stock.quoteService

  2. bank/stock:quoteService

  3. bank/stock.quoteService

  4. bank.stock:quoteService


Correct Option: D

What is the default port for the Broker Server?

  1. 5000

  2. 5649

  3. 6849

  4. 6869


Correct Option: C

Which is the correct format for referencing a service called "process" within the within a folder named "Database" that is contained within a Package called "MyCompany"?

  1. MyCompany:Database.process

  2. Database:process

  3. MyCompany.Database/process

  4. Database.process


Correct Option: B

AI Explanation

To answer this question, you need to understand the correct format for referencing a service within a folder and package.

Option A) MyCompany:Database.process - This option is incorrect because it uses a colon (:) to separate the package and folder, which is not the correct format for referencing a service within a folder.

Option B) Database:process - This option is correct because it uses a colon (:) to separate the folder and the service, which is the correct format for referencing a service within a folder.

Option C) MyCompany.Database/process - This option is incorrect because it uses a dot (.) to separate the package and folder, which is not the correct format for referencing a service within a folder.

Option D) Database.process - This option is incorrect because it does not specify the package that contains the folder, which is necessary for referencing a service within a folder.

The correct answer is B) Database:process. This option is correct because it uses the correct format for referencing a service within a folder.

The Integration Server WmPublic package comes with many useful services. Some of the services in the pub.schema Folder can be used to:

  1. Validate objects and the pipeline

  2. Generate services that interact with external databases

  3. Perform string manipulation and substitution operations

  4. Convert DTD files to XSD schemas


Correct Option: A

Using webMethods Integration Server, there are 2 languages which can be used to query XML documents. They are:

  1. XSL and WSL

  2. XQL and WSL

  3. WQL and XQL

  4. XSLT and XPATH


Correct Option: C

AI Explanation

To answer this question, let's go through each option to understand why it is correct or incorrect:

Option A) XSL and WSL - This option is incorrect because XSL (Extensible Stylesheet Language) is used for transforming XML documents into different formats, and WSL (Web Services Language) is not a valid language for querying XML documents.

Option B) XQL and WSL - This option is incorrect because although XQL (XML Query Language) is a valid language for querying XML documents, WSL (Web Services Language) is not a valid language for querying XML documents.

Option C) WQL and XQL - This option is correct because both WQL (WebMethods Query Language) and XQL (XML Query Language) are valid languages for querying XML documents in webMethods Integration Server.

Option D) XSLT and XPATH - This option is incorrect because XSLT (Extensible Stylesheet Language Transformations) is used for transforming XML documents, and XPath is used for navigating and querying XML documents, but it is not one of the supported languages in webMethods Integration Server.

The correct answer is C) WQL and XQL. These are the two languages that can be used to query XML documents in webMethods Integration Server.

Communications with the webMethods Integration Server is handled via listeners. On which ports can the webMethods Integration Server have an active listener?

  1. 5555, 8021, 80, and/or 443 only

  2. Port numbers greater than or equal to 1000 only

  3. Any valid port number not already in use

  4. Ports 21, 80, 443, and any port number above 1000


Correct Option: C
Explanation:

To solve this question, the user needs to have knowledge of webMethods Integration Server and how it handles communications.

Option A is incorrect. While ports 5555, 8021, 80, and 443 can be used for listeners, they are not the only ports available for use.

Option B is incorrect. Port numbers greater than or equal to 1000 are not the only ports available for use.

Option C is correct. The webMethods Integration Server can have an active listener on any valid port number that is not already in use.

Option D is incorrect. While ports 21, 80, and 443 can be used for listeners, any port number above 1000 is not guaranteed to be available for use.

Therefore, the answer is: C. Any valid port number not already in use.

What status can no longer process report requests but can accept and process control requests?

  1. stopped

  2. standby

  3. paused

  4. unknown


Correct Option: A

What can an administrator use to transfer security data from one location to another using Series 7 namespaces?

  1. Local authentication cache (.lac) file

  2. Configuration specification (.ccs) file

  3. Settings (.csa) file

  4. Local authentication export (.lae) file


Correct Option: D

what the Planning administration console service does?

  1. manages communications with Contributor Web and Contributor Add-in for Excel users.

  2. manages communications with the Planning Job Server subsystem

  3. manages communication with the Contributor Administration Console

  4. manages communications for real-time reporting from Contributor plan data in IBM Cognos 8.


Correct Option: C

What is created after the administrator initializes the metric store?

  1. a relational database

  2. a metric package

  3. a metric extract

  4. an object extract


Correct Option: B
- Hide questions