[Updated] Goldman Sachs Aptitude Test Questions and Answers
Practice List of TCS Digital Coding Questions !!!
Take 50+ FREE!! Online Data Interpretation Mock test to crack any Exams.

Technical Interview Questions and Answers :: WebMethod

    21 / 166

    What is meaning of different kill command in UNIX? what is TERM?
    Answer:

    The '-9' is the signal_number and specifies that the kill message sent should be of the KILL (non-catchable, non-ignorable) type.

    Please Login First :

    22 / 166

    What is Transformers?
    Answer:

    Transformers are the services you use to accomplish value transformations in the Pipeline view. You can only insert a transformer into a MAP step. You can use any service as a transformer. This includes any Java, C, or flow service that you create and any built-in services in WmPublic, such as the pub.date.getCurrentDateString and the pub.string.concat services. By using transformers, you can invoke multiple services (and

    Please Login First :

    23 / 166

    Difference between Any server and All server in Scheduler.
    Answer:

    Any server - The task runs on any server connected to the database. Use this option if the task only needs to run on one server and it doesn't manner which one. For example, in a clustered environment, if all servers in the cluster share a single database for a parts inventory application, and a particular function needs to run on that database once a day, any server in the cluster can perform that function. The Any server option is the default setting when clustering is enabled.
    Note: The Any server option does not specify an order in which servers are used to execute tasks. In other words, no load balancing is performed. Instead, an instance of the scheduler runs on each server connected to the database. Periodically, each instance checks the database in which information about scheduled jobs is stored. The first scheduler instance to find a task that is due to start runs it, then marks the task as

    Please Login First :

    24 / 166

    What is API?
    Answer:

    An API for a website is code that allows two software programs to communicate with each another. The API spells out the proper way for a developer to write a program requesting services from an operating system or other application.

    Please Login First :

    25 / 166

    What are the HTTP methods?(Verbs)
    Answer:

    GET - to get one or more resource.
    POST - To create a new resource.
    PUT - TO update a resource
    PATCH - Partially Update a resource.
    DELETE - to Delete a resource.


    Please Login First :

    26 / 166

    What is difference between min pool value set to 0 and 1?
    Answer:

    Setting the min connection value to 0 permits the pool to close all connections in the pool after the idle/expiration time has passed. This is the recommended setting for production environments. This avoids keeping unused connections too long and helps avoid stale connections (Stale connection : connections that the adapter thinks are still good, but the resource has closed.)

    Please Login First :

    27 / 166

    What Is the Pipeline?
    Answer:

    The pipeline is the general term used to refer to the data structure in which input, and output values are maintained for a flow service. It allows services in the flow to share data.

    Please Login First :

    28 / 166

    What are the different Setting of the REPEAT Counter?
    Answer:

    The REPEAT step's Count property specifies the maximum number of times the server re-executes the child steps in the REPEAT step.
    If you set "Count" to The REPEAT step:
    0 Does not re-execute children.
    Any value > 0 Re-executes children up to this number of times.
    -1 or blank Re-executes children as long as the specified Repeat on condition is true.

    Please Login First :

    29 / 166

    How flow service saved in Integration server?
    Answer:

    The flow service is saved as xml on disk i.e when not in used or if you want a local copy.

    But when loaded in IS, it loads as Java.

    Please Login First :

    30 / 166

    Which communication protocol used between IS and Terracota?
    Answer:

    TCP communication protocol used to communicate between IS and Terracota.

    Please Login First :