SAS DI Quiz

SAS DI Intermediate Quiz

SAS DI Quiz : This SAS DI Intermediate Quiz contains set of 60 SAS DI Quiz which will help to clear any exam which is designed for Intermediate.



1) Which one of the following programs contains a syntax error?

  1. proc sql;
  2. select product.*, cost.unitcost, sales.quantity from product p, cost c, sales s
  3. where p.item = c.item and p.item = s.item;
  4. quit;

 

  1. proc sql;
  2. select product.*, cost.unitcost, sales.quantity from product, cost, sales
  3. where product.item = cost.item and product.item = sales.item;
  4. quit;

 

  1. proc sql;
  2. select p.*, unitcost, s.quantity
  3. from product as p, cost as c, sales as s where p.item = item and
  4. item = s.item;
  5. quit;

 

  1. proc sql;
  2. select p.*, c.unitcost, s.quantity from product, cost, sales
  3. where product.item = cost.item and product.item = sales.item;
  4. quit;

Answer : D

 
 
2) Can we use SAS functions within the macro facility ?

  1. Not possible
  2. Yes,by using the %SYSFUNC macro function.
  3. Yes by using do loop
  4. yes,with macro defination

Answer : B

 
 
3) How do we resolve a macro variable within single quotation marks?
 

  1. Use CALL EXECUTE
  2. Use the %STR and %UNQUOTE
  3. Can’t be resolved
  4. use %let

Answer : B

 
 
4) Which statement is true regarding the SAS My Folder metadata location?

  1. The My Folder location is a valid place to share content.
  2. Every user with a SAS metadata identity has a My Folder location.
  3. The My Folder location is a temporary work location.
  4. The My Folder location is only available to the user it belongs to.

Answer : B

 
 
5) Assume that you have completed the Register Tables wizard in SAS Data Integration Studio. Which statement is true?

  1. The physical table(s) selectedare copied to the application server specified in the library.
  2. The physical table(s) selectedare copied to the SAS Folders location specified in the wizard.
  3. Metadata for the physical table(s) selected is stored on the application server specified in the library
  4. Metadata for the physical table(s) selected is stored in the SAS Folders location specified in the wizard

Answer : D

 
 
6) Registering metadata for an ODBC data source involves registering:

  1. A library that will use a SAS/ACCESS engine to a specific database
  2. only an ODBC data source definition
  3. A server definition that points to the ODBC data source and a library accessing this server definition
  4. A table pointing directly to the ODBC data source

Answer : C

 
 
7) SAS Data Integration Studio is dependent on which administration functions?

  1. Setting up of SAS Information Map environment.
  2. Setting up of SAS Web and SAS Portal environments.
  3. Setting up of SAS Application Servers.
  4. Setting up of SAS Libraries definitions.

Answer : C

 
 
8) Assume that you have completed the Register Tables wizard in SAS Data Integration Studio. Which
statement is true?

  1. The physical table(s) selected are copied to the application server specified in the library.
  2. The physical table(s) selected are copied to the SAS Folders location specified in the wizard.
  3. Metadata for the physical table(s) selected is stored on the application server specified in the library.
  4. Metadata for the physical table(s) selected is stored in the SAS Folders location specified in the wizar

Answer : D

 
 
9) The ability to deploy a SAS Data Integration Studio job as a Web service or a SAS Stored Process
requires additional set up that is performed in which client application?

  1. SAS Data Integration Studio
  2. SAS Enterprise Guide
  3. SAS Job Deployment Studio
  4. SAS Management Console

Answer : D

 
 
10) The Platform Process Manager server is part of the Platform Suite for SAS. Which statement is FALSE regarding the Platform Process Manager server?

  1. The server enables you to schedule jobs using a variety of recurrence criteria and dependencies on other jobs, time events, or file events.
  2. The server enables you to schedule jobs using a variety of recurrence criteria but does NOT allow you to specify any type of dependencies.
  3. The Flow Manager application (part of the Platform Suite for SAS) can be used to manage already scheduled
  4. Metadata for the Platform Process Manager server must be defined and must include the network address or host name of a machine as well as the port number for the server.

Answer : B




 
11) Which statement regarding scheduling SAS Data Integration Studio jobs is true?

  1. To schedule a job flow you must first use SAS Management Console to deploy the job for scheduling.
  2. To schedule the job on the Platform Process Manager you require a dependency generator.
  3. Multiple job flows can be scheduled to a deployment directory.
  4. To schedule a job flow in SAS Management console you must first deploy the job for scheduling using SAS Data Integration Studio.

Answer : D

 
 
12) Which statement defines the characteristics of a SAS Stored Process?

  1. SAS metadata that describes how to collect and store data sources.
  2. A document that stores the steps and locations for building a data mart.
  3. A SAS program that is stored on the server and described by metadata.
  4. A user written SAS PROC step.

Answer : C

 
 
13) In SAS Data Integration Studio, an index can be specified/defined in which location?

  1. the Indexes tab in the properties of a Table Loader transformation
  2. the Indexes tab in the properties of a table metadata object
  3. the Indexes tab in the properties for any transformation
  4. the Indexes tab in the properties of a job metadata object

Answer : B

 
 
14) Which statement is FALSE regarding foreign keys?

  1. A foreign key is one or more columns that are associated with a primary key or unique key in another
  2. A table can have zero or more foreign keys.
  3. A foreign key cannot exist without an associated primary or unique key.
  4. A table can have only one foreign key define

Answer : D

 
 
15) Assume that SAS Data Integration Studio Table Loader is being used in a job. The load style selected is Update/Insert. Which statement is true regarding theAssume that SAS Data Integration Studio? Table Loader is being used in a job. The load style select

  1. From the source table, matching rows are updated in the target table and new rows are added.
  2. From the source table, matching rows AND new rows are added, but the original matching row in the target table is marked as inactive.
  3. From the source table, matching rows are skipped, and new rows are added.
  4. A or C, depending on further options chosen.

Answer : D

 
 
16) The DICTIONARY.MACROS table stores information about which of the following?

  1. user defined macro variables only
  2. system defined macro variables only
  3. both user and system defined macro variables
  4. macros stored in the autocall macro library only

Answer : C

 
 
17) The following SAS program is submitted:
%let a = cat;
%macro animal(a = frog);
%let a = bird;
%mend;
%animal(a = pig)
%put a is &a;
Which one of the following is written to the SAS log?
 

  1. a is &a
  2. a is cat
  3. a is pig
  4. a is bird

Answer : B

 
 
18) The following SAS program is submitted:
%let value = .5;
%let add = 5;
%let newval = %eval(&value = &add);
Which one of the following is the resulting value of the macro variable NEWVAL?
 

  1. 5
  2. 5
  3. .5 + 5
  4. null

Answer : D

 
 
19) The following SAS program is submitted:
%let name = Patel’s Restaurant;
Which one of the following statements avoids problems associated with the unbalanced quotation mark?
 

  1. %let name = Patel%’s Restaurant;
  2. %let name = %str(Patel’s Restaurant);
  3. %let name = Patel%str(‘)s Restaurant;
  4. %let name = %str(Patel%’s Restaurant);

Answer : D

 
 
20) Which of the following is true about SAS automatic macro variables?

  1. They are always read only.
  2. All can have their value changed by a user.
  3. Some can have the value changed by a user.
  4. They can only be used inside of a macro definition.

Answer : C




 
21) Within SAS Data Integration Studio, how many inputs and outputs can be defined for a Generated
transformation?

  1. A transformation can have zero or more inputs and exactly one output.
  2. A transformation needs at least one input and at least one output.
  3. A transformation can have zero or more inputs and zero or more outputs.
  4. A transformation needs at least one input and exactly one output.

Answer : C

 
 
22) How can you test the interaction of the options of a SAS Data Integration Studio Generated
transformation?

  1. The transformation has to be used within a job to interactively test the options with the Test Prompt button in the Options window from the properties of the transformation within the job editor.
  2. The options can be tested after finalizing and saving the transformation with the Test Prompt item on the Tools menu.
  3. The options can be tested only after adding all options that are assigned to the source code with the Test Prompt button in the Options window of the New Transformation wizard.
  4. The options can be tested at any time after adding them to the transformation with the Test Prompt button in the Options window of the New Transformation wizar

Answer : D

 
 
23) Within SAS Data Integration Studio, how is the internal code of a SAS Code transformation assigned to
its options?

  1. SAS macro variables
  2. columns of SAS datasets
  3. SAS formats
  4. SAS macro calls

Answer : A

 
 
24) A user needs to find out who has the SAS Data Integration Studio job “Create Tables” checked out. What
action should the user perform?

  1. They need to select the “Properties” menu option and then the “Advanced” tab for the SAS Data Integration Studio job “Create Tables” within Data Integration studio.
  2. They need to select the History menu option for the SAS Data Integration Studio job “Create Tables” once it has been checked in.
  3. They need to select the History menu option for the SAS Data Integration Studio job “Create Tables”.
  4. They are not able to find out who has the SAS Data Integration Studio job “Create Tables” in checked out status because they are not an administrator.

Answer : C

 
 
25) Choose location of following designer tab task:
Select and manipulate an object that
displays in the Diagram tab.

  1. Navigate pane
  2. SQL Clauses pane
  3. Tables pane
  4. Properties pane

Answer : A

 
 
26) Choose location of following designer tab task:
Add SQL clauses to the flow shown
on the Diagram tab.

  1. Navigate pane
  2. SQL Clauses pane
  3. Tables pane
  4. Properties pane

Answer : B

 
 
27) Choose location of following designer tab task:
Review the list of columns in the
source table and the target table.
Note that you can specify alphabetic
display of the columns by selecting
Display columns in alphabetical
order.

  1. Navigate pane
  2. SQL Clauses pane
  3. Tables pane
  4. Properties pane

Answer : C

 
 
28) Choose location of following designer tab task:
Display and update the main
properties of an object that is
selected on the Diagram tab. The
title of this pane changes to match
the object selected in the Navigate
pane

  1. Navigate pane
  2. SQL Clauses pane
  3. Tables pane
  4. Properties pane

Answer : D

 
 
29) Find the debugging keyword for the join algorithm:table name
 

  1. sqxsort
  2. sqxjm
  3. sqxjhsh
  4. sqxrc

Answer : D

 
 
30) Find the debugging keyword for the join algorithm:hash join
 

  1. sqxsort
  2. sqxjm
  3. Not avilable
  4. sqxrc

Answer : C




 
31) Find the debugging keyword for the join algorithm:sort-merge join
 

  1. sqxsort
  2. sqxjm
  3. sqxjhsh
  4. sqxrc

Answer : B

 
 
32) Maintains a limited history of changes using multiple columns for selected variables.

  1. Type 1 SCD
  2. Type 2 SCD
  3. Type 3 SCD
  4. SQL join

Answer : C

 
 
33) No history of data changes

  1. Type 1 SCD
  2. Type 2 SCD
  3. Type 3 SCD
  4. SQL join

Answer : A

 
 
34) Full history of data changes

  1. Type 1 SCD
  2. Type 2 SCD
  3. Type 3 SCD
  4. SQL join

Answer : B

 
 
35) When writing postcode in the Precode and Postcode tab of the Transpose transformation in SAS Data Integration Studio, which symbol allows you to reference the transformation output table regardless of the actual physical name for that target table?

  1. &syslast
  2. syslast
  3. &target
  4. %target

Answer : A

 
 
36) Which statement best describes a deployment directory as used in the Schedule Manager in SAS
Management Console?

  1. A folder or directory location on a server where the SAS code from a deployed SAS Data integration Studio job is stored.
  2. A location in the metadata repository where job flows are deployed.
  3. A location in the SAS Management console job directory storing the metadata for jobs that can be added to job
  4. A SAS Folder in the Schedule Manager plug-in within SAS Management Console containing listings of all flows organized by server type.

Answer : A

 
 
37) In SAS Data Integration Studio, which component allows the definition of job flows with dependencies
between different jobs?

  1. the deployment wizard of SAS Data Integration Studio
  2. the Scheduling Manager plug-in in SAS Management Console
  3. the Scheduling Server
  4. the SAS DATA Step Batch Server

Answer : B

 
 
38) Which batch server is queried to retrieve the command needed to run traditional .SAS programs having
DATA and PROC steps?

  1. SAS Java Batch Server
  2. SAS DATA Step Batch Server
  3. SAS Generic Batch Server
  4. SAS PROC Step Batch Server

Answer : B

 
 
39) In SAS Data Integration Studio, primary keys, foreign keys and unique keys can be specified/defined in
which location?

  1. the Keys tab in the properties of a Table Loader transformation
  2. the Keys tab in the properties for any transformation
  3. the Keys tab in the properties of a table metadata object
  4. the Keys tab in the properties of a job metadata object

Answer : C

 
 
40) When using the Table Loader transformation in SAS Data Integration Studio to update an existing table
containing indexes or constraints, which statement is true?

  1. You can control the removal and/or creation of indexes and constraints in the target table only if you are using a Load style other than Replace.
  2. You can control the removal and/or creation of indexes and constraints in the target table for all Load
  3. If using the Append to Existing load style, indexes and constraints can be added but not removed.
  4. For the Update/Insert load style it is possible to remove indexes not required for the Update/Insert processing, but no indexes can be adde

Answer : B




 
41) Assume that SAS Data Integration Studio Table Loader is being used in a job. The load style selected is
Append to Existing. Which statement is true regardingAssume that SAS Data Integration Studio? Table
Loader is being used in a job. The load style selec

  1. It generates PROC APPEND code.
  2. It generates PROC SQL code.
  3. It generates either PROC SQL code or PROC APPEND code depending on further option choices.
  4. It generates DATA STEP APPEND code.

Answer : C

 
 
42) Choose correct description for the technique –
Directly enter
an expression
into an
Expression
field
 

  1. Double-click in the field in which you want to enter the expression. A cursor displays in the field. (The button disappears.) Enter your expression into the field. For example, to write today’s date to every row in a column, you can enter the expres Right-click in an Expression column. Then, click Advanced in the pop-up menu to access the Expression window.
  2. Use the Expression Builder to create an expression. Then, click OK to save the expression, close the Expression window, and display the exp Select the Price source column and the DiscountedPrice target column.
  3. Right-click either selected variable, and select Expression from the popup Then, select Advanced to access the Expression window.
  4. Use the Expression Builder to create an e Select the source columns and target column to be used in the mapping. For example, you can use the values of the Price and Discount columns in the source in an expression. Then, the result can be written to thenDiscountedPrice column in the target.

Answer : A

 
 
43) Choose correct description for the technique –
Create
expressions
that use no
source
columns

  1. Double-click in the field in which you want to enter the expression. A cursor displays in the field. (The button disappears.) Enter your expression into the field. For example, to write today’s date to every row in a column, you can enter the expres Right-click in an Expression column. Then, click Advanced in the pop-up menu to access the Expression window.
  2. Use the Expression Builder to create an expression. Then, click OK to save the expression, close the Expression window, and display the exp Select the Price source column and the DiscountedPrice target column.
  3. Right-click either selected variable, and select Expression from the popup Then, select Advanced to access the Expression window.
  4. Use the Expression Builder to create an e Select the source columns and target column to be used in the mapping. For example, you can use the values of the Price and Discount columns in the source in an expression. Then, the result can be written to the DiscountedPrice column in the target.

Answer : B

 
 
44) Choose correct description for the technique –
Create
expressions
that use a
single source
column
 

  1. Double-click in the field in which you want to enter the expression. A cursor displays in the field. (The button disappears.) Enter your expression into the field. For example, to write today’s date to every row in a column, you can enter the expres Right-click in an Expression column. Then, click Advanced in the pop-up menu to access the Expression window.
  2. Use the Expression Builder to create an expression. Then, click OK to save the expression, close the Expression window, and display the exp Select the Price source column and the DiscountedPrice target column.
  3. Right-click either selected variable, and select Expression from the popup Then, select Advanced to access the Expression window.
  4. Use the Expression Builder to create an e Select the source columns and target column to be used in the mapping. For example, you can use the values of the Price and Discount columns in the source in an expression. Then, the result can be written to the DiscountedPrice column in the target.

Answer : C

 
 
45) Choose correct description for the technique –
Create
expressions
that use two or
more source
columns
 

  1. Double-click in the field in which you want to enter the expression. Acursor displays in the field. (The button disappears.) Enter your expression into the field. For example, to write today’s date to every row in a column, you can enter the expres Right-click in an Expression column. Then, click Advanced in the pop-up menu to access the Expression window.
  2. Use the Expression Builder to create an expression. Then, click OK to save the expression, close the Expression window, and display the exp
  3. Select the Price source column and the DiscountedPrice target column. Right-click either selected variable, and select Expression from the popup Then, select Advanced to access the Expression window.
  4. Use the Expression Builder to create an e Select the source columns and target column to be used in the mapping. For example, you can use the values of the Price and Discount columns in the source in an expression. Then, the result can be written to the DiscountedPrice column in the target.

Answer : D

 
 
46) Identify the sort enhancement technique from the below description:
Pre-sorting in relational databases might outperform sorting
that is based on SAS. Use options of the SAS Data
Integration Studio Extract transformation to generate an
ORDER BY clause in

  1. Direct sort utility files to fast storage devices
  2. Distribute sort utility files across multiple devices
  3. Pre-sort explicitly on the most common sort key
  4. Use relational database sort engines to pre-sort tables without data order issues

Answer : D

 
 
47)
Identify the sort enhancement technique from the below description:
SAS Data Integration Studio might arrange a table in sort
order, one or multiple times. For large tables in which sort
order is required multiple times, look for a common sort
order. Use

  1. Direct sort utility files to fast storage devices
  2. Distribute sort utility files across multiple devices
  3. Pre-sort explicitly on the most common sort key
  4. Use relational database sort engines to pre-sort tables without data order issues

Answer : C

 
 
48) Identify the sort enhancement technique from the below description:
Distribute SORT procedure utility files across multiple fast,
less-utilized devices. Direct the SORT procedure utility file
of each job to a different device. Use the WORK invocation
opti

  1. Direct sort utility files to fast storage devices
  2. Distribute sort utility files across multiple devices
  3. Pre-sort explicitly on the most common sort key
  4. Use relational database sort engines to pre-sort tables without data order issues

Answer : B

 
 
49) Identify the sort enhancement technique from the below description:
Because sorting is so I/O intensive, it is important to start
with only the rows and columns that are needed for the sort.
The SORT procedure WORK files and the output file are
dependent

  1. Direct sort utility files to fast storage devices
  2. Distribute sort utility files across multiple devices
  3. Pre-sort explicitly on the most common sort key
  4. Size input data

Answer : D

 
 
50) In SAS Data Integration Studio, which statement is FALSE regarding status handling?

  1. When a job is executed in SAS Data Integration Studio, a return code for each transformation in the job is captured in a macro variable. The return code for the job is set to the least successful transformation in the SAS Data Integration Studio ena
  2. If status handling has been defined for a transformation or the job, a macro definition (and a call to it) will be added to the generated code to check for the specified condition(s).
  3. Only one Condition/Action pair can be defined for a single transformation or for a job.
  4. The available Condition/Action pairs for transformations and jobs will vary – that is, different Condition/Action pairs may exist for the SQL Join transformation versus the Table Loader

Answer : C




 
51) After creating a stored process from a SAS Data Integration Studio job, how can you test the stored
process to make sure it runs correctly?

  1. Execute the stored process in SAS Data Integration Studio.
  2. Execute the stored process in SAS Management Console.
  3. Execute the stored process using the SAS Add-In for Microsoft Office or SAS Enterprise Guide.
  4. Execute the stored process using SAS Display Manager’s Stored Process Test window.

Answer : C

 
 
52) The following SAS program is submitted:
%macro test(var);
%let jobs = BLACKSMITH WORDSMITH SWORDSMITH;
%let type = %index(&jobs,&var);
%mend;
%test(SMITH)
Which one of the following is the resulting value of the macro variable TYPE?
 

  1. 0
  2. 3
  3. 6
  4. null

Answer : C

 
 
53) You can specify the server status messages that are encountered in a SAS Data
Integration Studio session by using the –MessageLevel level_value option. Valid
values for level_value are

  1. FINE
  2. FIND
  3. INDEX
  4. MSGLEVEL

Answer : A

 
 
54) Method for Specifying Metadata for
A set of table metadata in Common Warehouse
Metamodel (CWM) format or in a format that is
supported by a SAS Metadata Bridge.
 

  1. Select File -> Import -> Metadata from the menu bar
  2. Select an appropriate destination folder in the tree view, and then select File -> Import -> SAS Package from the menu bar
  3. Select File -> Register Tables from the menu bar
  4. Select File -> New -> External File -> Delimited from the menu bar

Answer : A

 
 
55) Defination of Fork transforamtion

  1. Marks the beginning of the iterative processing sequence in an iterative job.
  2. Marks the end of the iterative processing sequence in an iterative job
  3. Marks the end of a portion of a SAS job that was running in parallel with another portion of that job. Any code between the Fork transformation and the Fork End transformation is executed in one SAS session.
  4. Marks the beginning of a separate session that allows a portion of a SAS job to be run in parallel along with another piece of SAS code.

Answer : D

 
 
56) Defination of Fork End  transforamtion

  1. Marks the beginning of the iterative processing sequence in an iterative job.
  2. Marks the end of the iterative processing sequence in an iterative job
  3. Marks the end of a portion of a SAS job that was running in parallel with another portion of that job. Any code between the Fork transformation and the Fork End transformation is executed in one SAS session.
  4. Marks the beginning of a separate session that allows a portion of a SAS job to be run in parallel along with another piece of SAS code.

Answer : C

 
 
57) Defination of Loop End  transforamtion

  1. Marks the beginning of the iterative processing sequence in an iterative job.
  2. Marks the end of the iterative processing sequence in an iterative job
  3. Marks the end of a portion of a SAS job that was running in parallel with another portion of that job. Any code between the Fork transformation and the Fork End transformation is executed in one SAS session.
  4. Marks the beginning of a separate session that allows a portion of a SAS job to be run in parallel along with another piece of SAS code.

Answer : B

 
 
58) Defination of Wait For Completion transformation
 

  1. Provides logic to allow any part or all parts of a Fork job to complete before moving on to the next processing step. Inputs are typically an output table from the Fork transformation.
  2. Provides status-handling logic at a desired point in the process flow diagram for a job Can be inserted between existing transformations and removed later without affecting the mappings in the original process flow.
  3. Marks the beginning of a conditional process in a job
  4. Marks the end of a conditional process in a job

Answer : A

 
 
59) Defination of SCD Type
1 Loader

  1. Enables you to load a dimension table using type 1 updates. Type 1 updates insert new rows, update existing rows, and generate surrogate key values in a dimension table without maintaining a history of data changes. Each business key is represented by a s
  2. Loads source data into a dimension table, detects changes between source and target rows, updates change tracking columns, and applies generated key values. This transformation implements slowly changing dimensions
  3. Loads a target, adds generated whole number values to a surrogate key column,and sorts and saves the source based on the values in the business key column or columns
  4. Selects multiple sets of rows from one source and writes each set of rows to a different target. Typically used to create two or more subsets of a source. Can also be used to create two or more copies of a source.

Answer : A

 
 
60) Defination of SCD Type
2 Loader

  1. Enables you to load a dimension table using type 1 updates. Type 1 updates insert new rows, update existing rows, and generate surrogate key values in a dimension table without maintaining a history of data changes. Each business key is represented by a s
  2. Loads source data into a dimension table, detects changes between source and target rows, updates change tracking columns, and applies generated key values. This transformation implements slowly changing dimensions
  3. Loads a target, adds generated whole number values to a surrogate key column, and sorts and saves the source based on the values in the business key column or columns
  4. Selects multiple sets of rows from one source and writes each set of rows to a different target. Typically used to create two or more subsets of a source. Can also be used to create two or more copies of a source.

Answer : B

 
 
61) Defination of Surrogate
Key
Generator

  1. Enables you to load a dimension table using type 1 updates. Type 1 updates insert new rows, update existing rows, and generate surrogate key values in a dimension table without maintaining a history of data changes. Each business key is represented by a s
  2. Loads source data into a dimension table, detects changes between source and target rows, updates change tracking columns, and applies generated key values.This transformation implements slowly changing dimensions
  3. Loads a target, adds generated whole number values to a surrogate key column, and sorts and saves the source based on the values in the business key column or columns
  4. Selects multiple sets of rows from one source and writes each set of rows to a different target. Typically used to create two or more subsets of a source. Can also be used to create two or more copies of a source.

Answer : C

 
 
62) Defination of Apply Lookup
Standardization

  1. Enables you to select and apply DataFlux schemes that standardize the format, casing, and spelling of character columns in a source table.
  2. Enables you to analyze source data and generate match codes based on common information shared by clusters of records. Comparing match codes instead of actual data enables you to identify records that are in fact the same entity, despite minor variations
  3. Enables you to select and execute a DataFlux job that is stored on a DataFlux Data Management Server. You can execute DataFlux DataManagement Studio data jobs, process jobs, and profiles. You can also execute Architect jobs that were created with DataFlu
  4. Enables you to select and execute a data job that has been configured as a real-time service and deployed to a DataFlux Data Management Server

Answer : A