Thursday, May 12, 2016

Tibco BW certification Sample Questions

TB0-107: TIBCO Business Works 5 Certification Exam Sample Questions
Please note: Your successful completion of these sample questions is not a guarantee of passing TIBCO's actual certification exam.
1.     Which three modes are available for install? (Choose three.)
A.    GUI mode
B.    Silent mode
C.    Replay mode
D.    Console mode
E.     Production mode

2.     Your TIBCO BusinessWorks process needs to retrieve certain messages from a specific queue.
Which is the preferred method to accomplish this?
A.    use any of the JMS queue receiver activities; set the Message Selector property; set the Acknowledge mode property
B.    bridge the queue to a topic; use the JMS Topic Subscriber activity to set the Message Selector property; set the Acknowledge mode property
C.    use the Get JMS Queue Message activity to retrieve messages from the queue; check if the message matches your requirements; use the Confirm activity to remove it from the queue
D.    use any of the JMS queue receiver activities; once message is received, determine if the message matches your requirements; if not, return it back to the server with the JMS Queue Confirm activity

3.     Your organization has created a standard for organizing TIBCO BusinessWorks projects.
Which is most suited to this task?
A.    TIBCO Adapters
B.    TIBCO Portal Builder
C.    TIBCO Domain Utility
D.    TIBCO Designer templates

  1. A process is being built. You need to count the number of times that this process is executed.
What do you create to accomplish this?
A.    Static variable
B.    Shared variable
C.    Process variable
D.    Dynamic variable
E.     Job Shared variable

5.     Which TIBCO BusinessWorks activity do you use to manage and restart recoverable process instances programmatically?
A.    onStartup
B.    Checkpoint
C.    Engine Command
D.    External Command

6.     The $Employee array consists of two strings, firstName and lastName as shown:
Firstname
Lastname
John
Doe
Fred
Bloggs
Jim
Smith
           The firstNames must be extracted in the following format: "John,Fred,Jim"
             Which statement can accomplish this?
A.    concat-sequence($Employee/firstName)
B.    concat-sequence-format($Employee/*, ',')
C.    concat-sequence($Employee/firstName, ',')
D.    concat-sequence-format($Employee/firstName)
E.     concat-sequence-format($Employee/firstName, ',')

7.     You have two lists. One list contains the EmployeeIDs and the other list contains the Employee Pay. Each item in the EmployeeID list corresponds to the same position in the Pay List. For example: EmployeeID number 60 has a pay of 3000.
Employee Id
Pay
20
2000
40
4000
60
3000
          How do you combine these lists into a single list, containing the EmployeeID and        corresponding Pay?
A.    use an iterate group; "for-each-group" EmployeeID, match the pay by array position
B.    use "surround with choice" logic for each EmployeeID; for each ID, traverse the Pay List to find the pay
C.    use "surround with for-each-group" logic for EmployeeID list; match the corresponding Pay using "for-each" logic
D.    use "for-each" logic for EmployeeID list; map the Pay List; choose the "merge parallel repeating structure" logic

8.     Which two statements are true about the Catch activity? (Choose two.)
A.    It can handle all exceptions within a process.
B.    It receives control of execution when a Rethrow activity is executed.
C.    It receives control of execution when an unhandled exception occurs.
D.    It can handle only one kind of exception. For multiple exception handling, multiple Catch activities must be used.

9.     The IT department decides to upgrade from TIBCO Runtime Agent 5.2, TIBCO Administrator 5.2 and TIBCO BusinessWorks 5.2 to TIBCO Runtime Agent 5.3, TIBCO Administrator 5.3 and TIBCO BusinessWorks 5.3.
Which two statements are true?(Choose two.)
A.    TIBCO BusinessWorks 5.3 can be installed on TIBCO Runtime Agent 5.2.
B.    TIBCO Administrator 5.3 requires an environment using TIBCO Runtime Agent 5.3.
C.    An application edited by TIBCO Designer 5.3 can later be edited by TIBCO Designer 5.2.
D.    An application designed using TIBCO Designer 5.2 can be successfully deployed using TIBCO Administrator 5.3.

10.  You are migrating your test environment to production and want to change the TIBCO Rendezvous service port used in this project from 7200 to 7400. 
What is the recommended method to accomplish this task before deployment?
A.    modify the server DAT file using a text editor
B.    modify the TRA file to add the service parameter
C.    open the project in TIBCO Administrator, change the service variable, and deploy
D.    use a Global Variable to set the service variable and change it before completing deployment

11.  Using the TIBCO Administrator, which three settings can you configure? (Choose three.)
A.    max log file size
B.    shared resources
C.    max log file count 
D.    subprocess Call Order
E.     whether or not to run as NT Service

12.  A developer implements an exception handling routine and uses the Write to Log activity. This activity sets the msgCode field to 1001.  Which action should you take in TIBCO Administrator to let the operator know when this occurs?
A.    create an Event on the process of type Any Failure
B.    create an Event on the process of type Log Event and set the Match field to 1001
C.    create an Event on the process of type Suspended Process and set the Description field to 1001
D.    in the Tracing tab, add a Search Condition of 'Message Code matches 1001' and select the Publish Rule button




Answers:
1. A, B and D
2. A
3. D
4. B
5. C
6. E
7. D
8. A and C
9. B and D
10. D
11. A, C and E
12. B



========================================================================

Previous Questions
==================================================

Q 1) How can unauthorized users be prevented from triggering a process
     a) Making the whole business process SSL encrypted
     b) Making only the starter of the business process SSL encrypted
    c) Assigning roles to users in administrator
    ….


Q 2) What are the various options for multi-user development in Designer
     a) Perforce
     b) File Sharing
     c) XML Canon
     d) VSS
     e) PVCS
     f) TIBCO Smart Mapper

Q 3) Suppose a test and a prodution setup is to be deployed in the same network,
     what care has to be taken?
     a) Using different Subject/topic/queue names
     b) Having 2 different domains
     c) test and production should run in two different machines A and B.
     d) test and production should run in same machine A

Q 4) If TIBCO has to be setup within a network, using JMS as transport, how do you
     implement conversation level security
     (Options included encrypting using SSL)
A 4) SSL

Q 5) If, in a production setup, the default RV port has to be changed from 7500 to 7600,
   how would you achieve this in the least complicated manner?
   (essentially, the usage of global variables, and tweaking it using admin or designer
   or modifying the TRA file is what was being asked)


Q 6)  Why HTTP(S) is used to administrate business process?
a) Because HTTP(S) supports multi-cast
b) Because HTTP(S) does not need any configuration for different subnets
c) Because HTTP(S) supports point-to-point

Q 7) If we use a file reader to read a CSV file, and it has to be converted such that fields
  can be easily mapped to a JDBC Update task which task should be used in the middle.
A 7) Parse Data


Q 8) Which are the  re-usable components among the following?
     A list of 6 was provided, choose four.
    a) JDBC Connection
    b) XML Schema
    c) Timer
    d) FTP Connection etc


Q 9) Some questions on Mandatory fields of certain tasks, like FTP Connection,
   Generic Adapter Configuration, FTP with firewall etc.,
A 9) FTP Connection --
     Generic Adapter Configuration --
     FT with firewall -- must specify Proxy host and port information.

Q 10) Couple of questions on Groups. One involving transaction/roll-back. One
          involving choosing none.



Q 13) A question on transitions i.e. how to design a process such that depending on
   number of records updated in a database, 3 different sub-processes may be called.
   (This one had more than one correct answer)
   a) 3 transitions fom JDBC update,
   b) define a sub-process, which is called dynamically
   c) define a group to iterate



Q 14) A process which a had a group within a group. The inner one was a JDBC
    update and the outer one had a Parse XML and the inner group. The question
    was what should the nature of the outer and inner group be such that all
    database updates happen, or none of the happen.

a)      The inner group should be iterate
b)      The inner group should be made transaction group
c)      The outer group should iterate
d)     The outer group should be made transaction group





A 14) Mention the outer group as JDBC transaction group.

Q 15) Which are things you can see in administrator?
  a) OS version?
  b) Machines in the domain?
  c) Machines in the subnets?
  d) Alerts?

Q 16) In a business process you want to render an XML from another source with repeating elements, How do you do it?
a) Using Accumulate activity?
b) Using the accumate option of a group?
c) Using the accumate option of the process? (not sure about this option)


Q 17) A question about the restrictions, if any, if a secondary server accesses the
   admin GUI.


Q 18) A question about the user management in admin. Different ways of
   authentication  (Domain utility, Corporate LDAP etc were among the options)


Q 19) Which type of transports could be used to communicate between Tibco
   Administrator and deployed services?   (choose 3)
  a) JMS
  b) RV
  c) HTTP
  d) HTTPS

Q 20) What is the first step that you need to do to work on a resource from a
   team development system?
  a) Acquire Resource
  b) ...
  c) Make local copy
  d) ...


Q 21) In order to ensure that the response is sent back to the client which made
   a request to the HTTP Receiver,   which configuration is mandatory in the
   'Send HTTP Response' activity
  a) It cannot be ensured
  b)...
  c)
  d) 'Reply For' needs to configured to point to the HTTP Receiver


Q 22) Which activity can be used for adding comments to a process...
  a) Inspector
  b) Mapper
  c) Label

Q 23) Which of the following are true while setting Breakpoints during testing.
   (choose 3)
  a) before an activity
  b) after an activity
  c) on a transition
  d) breakpoint based on condition

Q 24) Which of the following are true while using Java Schema activity
  (choose 2?). (I am not too sure about the options).
  a) All public and private members are mapped to XML
  b) Only Public members are included for mapping
  c) Allows you to specify single java class to configure java to xml activity
  d) Allows you to specify any number of java classes

Q 25) Choose all process starters among given list
  a) Adapter Request-Response Server
  b) Adapter Subscriber
  c) File Poller
  d) On Event Timeout
  e) On Shutdown
  f) On Startup
  g) Timer
  h) HTTP Receiver
  i) JMS Queue Receiver
  j) JMS Topic Subscriber
  k) Receive Mail
  l) RMI Server
  m) SOAP Event Source
  n) TCP Receiver


Q 26) What needs to be configured for the Data format activity? (choose 3)
   (not too sure about options)
  a) XML Schema
  b) Data format
  c) Field offset
  d) delimiter fields

Q 27) What is mandatory information for configuring 'generic adapter configuration'?
a) AE Version?
b) SDK application name
c) instance name

Q 28) Arrange in order steps provided for deploying a BW project into
   production environment.   (About 5 steps were provided)


Q 29) There was a question on matching the activity type with the intended operation.
  (E.g. WSDL resource needed to matched with a SOAP service).


Q 30) Activity used to modify the value of process variable within a process.
  a) Assign activity
  b) Mapper
  c) Start activity
  d)...

Q 31) Purpose of the inspector activity.
a) The Inspector activity is used to write the output of any or all activities
  and process variables to a file and/or stdout.

Q 32) Question on the JMS message types.

Q 33) The process variables available for all activites
a) $_processContext & $_globalVariables

Q 34) Which utility is used to add a machine to an administrative domain
a) Domain Utility.
b) TIBCO Administrator
c) Designer
d) Modifying the .tra file

Q 35) The only mandatory configuration parameter for HTTP Connection
a) Port.
b) Host
c) Username
d) Password

Q 36) What are the limitations of  a secondary administration server
a) Can not perform any activity that requires READ_WRITE permission
   like deploying applications, adding users etc.


Q 37) How to parameterize file paths, ports etc in an application
a) Using global variables.
b) Changing the .tra file
c) Changing the system properties


Q 38) Where are the designer preferences stored
a) Inside a .TIBCO folder in the user home directory.
b) Inside the .DESIGER folder of user home directory


Q 39) Modes of install which prompt for user input
a) GUI
b) Console.
c) Silent

Q 40) When spawn option is checked, while calling sub processes, what does happen?
a) In this case the sub process executes in a different thread/process.
b) Sub-process has different global and process variables?
c) Sub-process has copy-of parent process?


Q 41) Wire formats for adapter messages
a) AE
b) RV or XML for RV transport
c)  XML for JMS transport

Q 42) Options for storing credentials in BW
    a) Certificate & Private key,
    b) Identity file (certificate and key in one file)
    c) userid/password.

Q 43) What are the additional parameters we need to supply for Firewall proxy servers?
a) Username and Password
b) Local proxy host and port
c) Remote proxy IP or host address
d) Proxy port

Q 44) What are the questions asked when you drag and drop the process variables from processContext to
   The input variables, by showing the input-wizard?
a)      Are you sure?
b)     Make copy-of
c)      Make copy-of for each?

Q 12) One question about putting an Generate error task inside a group. Question on the
      behavior of the process in case error is encountered.
    a) Process fails, error generates but group continues iteration
    b) group stops but process continues etc.
This is same as the below question…Q 45.

A 45) The following sub-process is called from a process. If inside the group (which has ParseXML, GenerateError and UpdateDatabase activity)
  The process follows the GenerateError activity, what happens to the parent process, which called this process?
a)      The original process dies immediately?
b)      The Original process dies after the sub-process dies and its return state is available to it?
c)      The Sub-process dies immediately after sending the error to parent process?
d)     The sub-process group continues? (not sure of this option)


Q 46) What are the components you need to run the deployed process?
a) Designer
b) Administrator
c) TRA
d) BW

Gaurav Sheel

1. Your corporate network is divided into different subnets (something like that). with secure channel within each subnets but unsecured channel in between subnets. What messaging channel will you suggest ?
 a.) RV over SSL
 b.) RV daemon with SSL*
 c.) HTTP over SSL.
 d.) JMS with SSL

 2. There is a Validation  process. (a diagram) suggest the two JMS activityes you will use. Process looked like:
JMS ACtivity - Call Credit Card Validation Process --> JMS Activity --> STOP

Answer according to me was : JMS queue receiver and Reply-To JMS MEssage.
(options i don't remeber)

3. Which Tool will you use to resolve external Schemaa conflicts?
  - Schema Configuration Manager.
  - TIBCO Turbo XML Server
  - TIBCO XML Canon
      TIBCO XPATH Manager or something like this
      Mapping Wizard *
  ( I don't know the correct answer for this .. even options i don't remember fully but you look out for inputs tab and map some new value to an existing value of some activity. Then a dialog box comes which asks replace formula or incorporate formula .. the Answer will be the name of that dialog box).
 
 4. There is a process with HTTP receiver --> JDBC activity --> HTTP Reply --> Stop. The JDBC activity may give one Record, No Record or Error. This has to be sent as response to HTTP. You have to return the Record details if 1 record is found, return "No Records found" msg if no record is found or show a static error message if error occurs. What way will you check the output of JDBC activity?

 - Check for No of records first.. else Display No Record message, Error goes default.
 - Check Error first then No of Records and No record found becomes Default.
 - Do parallel tranistion for No Of Record and Error "No Record found" becomes default otheriwse.
 - Check Existance of record and then Error . "No Record found" becomes default.

 5. Which product handles the Conflicts in IMPORTED schema from out side Project.
  - TIBCO Obfuscator server
  - TIBCO Smart MApper.
  - ....
  - .... (don't know the options. don't knwo the answer)
 
 6. there was a Order processing process that contained 3 subprocess. 2 of which coudd run in parallel and one was to be done sequentially. Question asked how will you configure the process so that correct sequence is maintained?.
 options were long ones. check the Inter process communications in Process Design Guide.
 Basically they had ORDER_ID as the key. This was supposed to be used as sequence key in the Wait Notify activity.

 7. MIME type required fields. (Check the Send Mail pallate in  BW 5.2).

 8. Question on what all java functions can be used for Activity Java Custom function.
   See the Notes in Question Bank or look into the Java Custom Function activity docs. They have listed it in bullets. (This question is already there in bank).



Vikram Bhatia

  1. What are the requirements for JRE during installation of BW

A.  JRE is installed by the TRA installer
B.   JRE must be installed before installing any BW components
C.  If a JRE exists, it can be used, otherwise TRA will use embedded JRE for installation
D.  All existing JREs must be uninstalled before installing any BW components

  1. What do you configure in an Adapter Archive (pick 3)

a)   Adapter schema to be deployed
b)   adapter resources to be deployed
c)   BW adapter to be deployed
d)     Adapter Global variables               

  1. What are the various ways to acomplish inter-process communication in BW

a)     Msg Bus Signal-In Acitivity
b)    Wait/Notify Activities
c)     Configure IIOP Pipes
d)     Use Critical Section Groups    

  1. Which 3 of these are required for configuring alerts in Adinistrator?

a)       
b)     
c)       
d)      

  1. Which BW function would return the current date and time? (pick 2)

a)     today()
b)    timestamp()
c)     create-dateTime()
d)    format-dateTime()
e)      current-dateTime()     

  1. While creating EAR, what gets included by default (pick 3)

a)     Shared Connections
b)    Process schemas
c)     Configured services
d)    Adapter Resources
e)      Shared libraries           


Others

  1. Purpose of the inspector activity.

2.   Question on the JMS message types.

3.   The process variables available for all activities - $_process Context & $_global Variables

4.   Which utility is used to add a machine to an administrative domain - domain utility?

5.   The only mandatory configuration parameter for HTTP Connection - port.

6.   There were question with multiple activities as options and asking to select the process starters among them.

7.   How to annotate a portion of a business process diagram - Label resource.

8.   Limitations wrt a secondary administration server - Can’t perform any activity that requires READ_WRITE permission like deploying applications, adding users etc.

9.   How to parameterize file paths, ports etc in an application - using global variables.

10.                The kind of roles available inside administrator - read, write, administer & super user.

11.                Where are the designer preferences stored - inside a .TIBCO folder in the user home directory?

12.                Modes of install which prompt for user input - GUI & Console.

13.                Regarding the spawn option when calling sub processes - in this case the sub process executes in a different thread/process.

14.                Wire formats for adapter messages - JMS XML & for Rendezvous XML, AE, & RV format.

15.            Options for storing credentials in BW - Certificate & Private key, Identity file (certificate and key in one file) & userid/password.

16.                Mandatory fields of FTP Connection

17.                Transaction group

18.                HTTPS  advantage/disadvantages

19.                Separation of dev and production environment

20.                Secondary server limitations

21.                Use of Domain utility

22.                If a JDBC Query activity gives output and you have three different processes. The output of the query is 0, 1, 2 records then you need to call three different process. How will you achieve the same? (Choose two)
A.  Have three transitions with condition which call the process.
B.   Call a sub process, and then in XPath specify which process to call.


23.                HTTPS over HTTP, RV for TIBCO Administrator and BW communication will communicate. (Choose One)
A.  Increase response, unsecure
B.   Slow response, secure
C.  Slow response, unsecure and
D.  Fast response and secure.

24.                If there is an outer group which has a JDBC update activity and an inner group which has another JDBC Update activity. Which correct option will you choose for making sure both are in transaction?
A.  Outer one transaction and the inner one iterate,
B.   Outer one iterate and the inner one transaction

25.                What is the use of Inspector activity? (Choose one)
A.  Print the contents of the process to stdout or to a log file,
B.  
C. 
26.                If the output of a business process file needs to have a method which is not available in the list of existing XPath functions what will you do? (Choose one)
A.  create custom java activity
B.   write custom java function
C. 


27.                What are the mandatory parameters required for FTP activity? (Choose four)
A.  Host
B.   Port
C.  Username
D.  Password
E.   Proxy Host
F.   Proxy Port

28.                For FTP activity to use with firewall, which are the three mandatory attributes (Choose three).
A.  Firewall option checked
B.   user name, password
C.  proxy user name, proxy password
D.  Proxy host
E.   proxy port

29.                Which activity will be used to retrieve resources (something of that sort)? (Choose one)
A.  SOAP Request Reply
B.   SOAP Event Source
C.  Retrieve Resources
D.  SOAP Send Fault
E.   SOAP Send Reply

30.                 What activities can you use that gives an xml output? (something of this sort) (Choose three)
A.  Render XML using dtd
B.   Render XML using XSD
C.  Transform XML using Stylesheet

31.                Java schema can convert a java class to XML schema. Select the following rules? (Choose three)
A.  Only the public data members of the Java class are mapped to XML elements.
B.   All members of the java class.
C.  Java Bean accessors and modifiers are mapped to appropriate XML element names.
D.  The Java class member public variable name is mapped to an XML element with the same name

32.                There was a question on which attributes are mandatory in a Data Format activity


33.                If after a Mapper activity you have to update a table in SQL Server and another table in Oracle Server. Which approach will achieve the result in the fastest way? (Choose one)
A.  Parallel transition
B.   After the Mapper activity have a SQL Server update and then an Oracle update with no activities in between.
C. 


34.                If your organization wants to scale your existing business process application, then which options should you consider in your design? (Choose two)
A.  Rendezvous Distribute Queue
B.   JMS Service
C.  JMS Queue Subscriber

35.                If your boss wants you to standardize the folder structure that can be used throughout the organization, which one will you choose? (Choose one)
A.  Designer Templates
B.  
C. 

36.                Which activity you can add background colors? (Choose one)
A.  Label
B.   Any
C.  Transition

37.                Which activities below are reusable components? (Choose four)
A.  Sub process
B.   Timer
C.  Java Schema
D.  JMS Connection
E.   one more option

38.                If a generate error activity is placed in a sub process, and an error is thrown in the activity, then what will happen if an error is thrown? (Choose one)
A.  The sub process thread dies after the error is thrown.
B.   The control is passed to the parent process and the parent process dies
C.  The control is passed to the parent process and the parent process gets control of the $_error variable.

39.                Where is the log file and other preferences of designer stored? (Choose one)
A.  TIBCO folder in USER_HOME directory
B.  
C. 
 
TIBCO BW Certification Site Sample Questions


40.                        Which three components are required for installing the BusinessWorks environment to support both development and deployment? (Choose three.)

A.  TIBCO Hawk
B.  TIBCO Designer
C.  TIBCO Administrator
D.  TIBCO Runtime Agent
E.   TIBCO Enterprise for JMS
 
41.                        You are developing an application which will produce data to be consumed by several hundred client applications, all located within the same network campus. Which messaging makes the most efficient use of network bandwidth?

A.  SOAP
B.  JMS topics
C.  JMS queues
D.  TIBCO Rendezvous

42.                        What must be done to manage a TIBCO Administration Domain which spans multiple subnets?

A.  TIBCO Administration Domains are restricted to single subnets.
B.  Domain infrastructure handles this by design. No additional tasks are required.
C.  A TIBCO Rendezvous routing daemon (rvrd) must be configured on each subnet.
D.  JMS servers must be configured to forward messages to neighboring JMS servers
43.                        Which three strategies are available for TIBCO Administrator server high availability and failover? (Choose three.)

A.  multicast snap shot replication
B.  cold stand-by using disk mirroring
C.  failover using cluster clients over IIOP
D.  warm stand-by using snap shot replication
E.   primary/secondary server with peer synchronization
F.   failover using an intelligent IP traffic switch (ie., Big IP, Cisco Local Director)

44.                        Which activity type returns the WSDL or WSIL to the requestor's socket?
 
A.  SOAP Send Reply
B.  Retrieve Resources
C.  SOAP Queue Sender
D.  Send HTTP Response

45.                        The process flow requires that a message read from a queue is delivered to a target database only once. In the event of DBMS operation failure, the message should be put back.

How can you accomplish this in the most reliable fashion?

A.  receive (destructively) a message and attempt a DBMS operation; on failure, put the message back on the queue
B.  receive a message and save it via Checkpoint; on DBMS failure, complete the process flow and put the Checkpointed message back
C.  read (non-destructively) a message from the queue and attempt to insert it into a database; in case of failure do nothing, in case of success, delete the message from the queue
D.  receive a message using Client Acknowledgement; when a database operation is successful, acknowledge the message as processed; on DBMS failure, complete the process without acknowledgement


46.                        The scope of user-defined process variables is _____.
 
A.  only the process definition where the user-defined process variables are defined
B.  the process definition where the user-defined process variables are defined and any subprocesses called from that process
C.  within any process definition in the project that contains the process definition where the user-defined process variables are defined
D.  within any adapter or process definition in the project that contains the component where the user-defined process variables are defined

 
47.                        You have an application in which you want to get a document from a web server which contains text data formatted as a comma separated value table.

Which BusinessWorks activity could you use to accomplish this?


A.  FTP Get
B.  Receive Web Page
C.  Send HTTP Request
D.  SOAP Request Reply
 
48.                        Which three are part of a valid WSDL configuration? (Choose three.)
 
A.  Message
B.  PortType
C.  Operation
D.  MessageType
 
49.                        What must be true for the $_error object to be available at run-time in a BusinessWorks process definition?
 
A.  An activity must create an exception.
B.  There must be a group with action type 'none.'
C.  An activity which has an exception must also have an error transition.
D.  There must a mapper which has an XPath expression referencing $_error.
 
50.                        Every BusinessWorks process activity has an optional field used for documentation.

What is this field called and on what tab does it reside?

 
A.  The field is called Description and is located on the Input tab.
B.  The field is called Comments and is located on the Name tab.
C.  The field is called Description and is located on the Configuration tab.
D.  The field is called Documentation and is located on the Configuration tab.

 
51.                        Which application is used to create Global Variables?
 
A.  TIBCO Designer
B.  TIBCO Administrator
C.  TIBCO Domain Utility
D.  TIBCO BusinessWorks
Answers:
1. B, C & D
2. D
3. C
4. B, E & F
5. D
6. D
7. A
8. C
9. A, B, & C
10. C
11. C
12. A

No comments:

Post a Comment