Talend Talend-Core-Developer Exam (page: 2)
Talend Core Certified Developer
Updated on: 07-Feb-2026

You need to share a connection between multiple database components in a Studio Job.
Which component should you use?

  1. tDBOutput
  2. tDBRun
  3. tDBCommit
  4. tDBConnection

Answer(s): D

Explanation:

Comprehensive and Detailed Explanation;
In Talend, when multiple components need to share the same database connection, the tDBConnection component is used.

tDBConnection (Correct Answer - Option D):

This component establishes a database connection that can be reused by multiple database components (such as tDBInput, tDBOutput, and tDBRow) within the same Job.

Reduces redundant connection creation, improving performance and efficiency.

To use it, other database components must set "Use an existing connection" in their configuration.

Why not other options?

tDBOutput (Option A): Used for writing data to a database but does not manage shared connections.

tDBRun (Option B): Used to execute a subJob but does not handle database connections.

tDBCommit (Option C): Used for committing transactions, but it requires a shared connection (which tDBConnection provides).


Reference:

Talend Studio User Guide, Talend Database Connection Management



You have a MySQL table named customers with columns named id, name, address, and country. You need to retrieve records that have a specific country based on a variable.
Which steps should you use to achieve this?

  1. Use a tDBInput component with a context variable in the SQL query.
  2. Use a tDBInput component and link it to a tMatchGroup component.
  3. Use a tDBInput component with a Run if trigger.
  4. Use a tDBInput component and link it to a tFilterColumns component.

Answer(s): A

Explanation:

Comprehensive and Detailed Explanation;
To filter records based on a specific country dynamically, the best approach is using a tDBInput component with a context variable in the SQL query (Option A).

Step-by-Step Process:

Define a Context Variable:

In the Context Variables section of Talend Studio, create a new variable (context.country) and set its value dynamically.

Configure tDBInput:

Drag and drop the tDBInput component onto the Designer.

Set up the database connection using either Built-in or Repository mode.

In the Query field, write:

SELECT id, name, address, country FROM customers WHERE country = '" + context.country + "'

Execute the Job:

The Job will retrieve only those records where the country column matches the value of the context variable.

The value of context.country can be modified at runtime, making the query dynamic.

Why not other options?

tMatchGroup (Option B): Used for record deduplication, not filtering.

Run if Trigger (Option C): Controls execution flow but does not filter records inside tDBInput.

tFilterColumns (Option D): Removes unwanted columns but does not filter records based on conditions.


Reference:

Talend Database Components Guide, Talend SQL Query Optimization



How can you create REST API metadata in Talend Studio? Choose 2 answers.

  1. Create it manually in Talend Studio.
  2. Import it from Talend API Designer.
  3. Import it from a JSON file.
  4. Import it from Talend API Tester.

Answer(s): A,B

Explanation:

Comprehensive and Detailed Explanation;
In Talend Studio, REST API metadata can be created using the following methods:

Create it manually in Talend Studio (Option A):

Users can define REST API metadata within Talend Studio by manually specifying API structure,

endpoints, HTTP methods, and parameters.

This method provides full control over the API metadata but requires manual configuration.

Import it from Talend API Designer (Option B):

If an API has been designed using Talend API Designer, it can be imported into Talend Studio.

This enables reusing the API design directly without manual recreation.

Why not other options?

Option C (Import from JSON file): Talend Studio does not support direct import of REST API metadata from generic JSON files.

Option D (Import from Talend API Tester): Talend API Tester is used for testing APIs but does not provide an option to import API definitions into Talend Studio.


Reference:

Talend Studio User Guide, Talend API Development Documentation



What is the default port for the REST Endpoint when using tRESTRequest in Talend Studio?

  1. 5040
  2. 5070
  3. 8040
  4. 8090

Answer(s): D

Explanation:

Comprehensive and Detailed Explanation;
The default REST endpoint port for tRESTRequest in Talend Studio is 8090.

Port 8090 (Correct Answer - Option D):

When running a REST service inside Talend Studio, the default listening port is 8090.

This can be changed in the component settings if required.

Other port options explained:

5040 & 5070: Not default ports used for Talend REST services.

8040: Used in Talend Runtime, not in Studio.


Reference:

Talend Studio User Guide, Talend ESB REST Service Configuration



You can initialize your component endpoint, API mappings, and documentation from your API definition.
Which API definitions are supported by tRESTRequest?

  1. CSV definition file
  2. XML definition file
  3. WSDL file
  4. OAS/Swagger 2.0 file

Answer(s): D

Explanation:

Comprehensive and Detailed Explanation;
The tRESTRequest component supports OpenAPI Specification (OAS)/Swagger 2.0 for initializing component endpoints, API mappings, and documentation.

OAS/Swagger 2.0 file (Correct Answer - Option D):

tRESTRequest allows API-first development by importing a Swagger 2.0 (OAS) definition.

This enables automatic configuration of API endpoints, request parameters, and response structures.

Why not other options?

CSV definition file (Option A): Not a valid API definition format.

XML definition file (Option B): XML files are not standard for REST API definitions.

WSDL file (Option C): WSDL is used for SOAP-based web services, not REST.


Reference:

Talend API Development Guide, Talend REST Component Documentation



Which HTTP methods are supported by tRESTRequest?

  1. GET, POST, PUT, PATCH, and DELETE
  2. POST, PATCH, and UPDATE
  3. SELECT, INSERT, UPDATE, and DELETE
  4. GET, POST, UPDATE, and DELETE

Answer(s): A

Explanation:

Comprehensive and Detailed Explanation;
The tRESTRequest component in Talend Studio is designed to handle RESTful web service requests. It supports the following HTTP methods:

GET: Retrieves data from the server.

POST: Submits data to the server, often causing a change in state or side effects.

PUT: Replaces all current representations of the target resource with the request payload.

PATCH: Applies partial modifications to a resource.

DELETE: Removes the specified resource from the server.

Therefore, the correct answer is A. GET, POST, PUT, PATCH, and DELETE.


Reference:

Talend Components Documentation, HTTP Methods Overview



You are using a tRESTClient component to call a REST service.
Which advanced option should you use to convert the response from the server to the document type?

  1. Convert Response To XML Document
  2. Convert Response To JSON Document
  3. Convert Response To DOM Document
  4. Convert Response To HTML Document

Answer(s): C

Explanation:

Comprehensive and Detailed Explanation;
In Talend Studio, the tRESTClient component includes an advanced setting called "Convert Response To DOM Document".
When this option is selected, the response from the REST service is converted into a DOM (Document Object Model) document. This allows for structured processing of the response data within Talend workflows.


Reference:

Talend Components Documentation



Which component can be used to read a CSV file in an ESB Route?

  1. tFileInputDelimited
  2. cMap
  3. cFileInputDelimited
  4. cFile
  5. tMap

Answer(s): C

Explanation:

Comprehensive and Detailed Explanation;
In Talend's Enterprise Service Bus (ESB) routes, the appropriate component to read a CSV file is cFileInputDelimited. This component is specifically designed for Camel routes to handle delimited files like CSVs.


Reference:

Talend ESB Components Documentation



Viewing Page 2 of 8



Share your comments for Talend Talend-Core-Developer exam with other users:

susan sandivore 8/28/2023 1:00:00 AM

thanks for the dump
Anonymous


Aderonke 10/31/2023 12:51:00 AM

fantastic assessments
Anonymous


Priscila 7/22/2022 9:59:00 AM

i find the xengine test engine simulator to be more fun than reading from pdf.
GERMANY


suresh 12/16/2023 10:54:00 PM

nice document
Anonymous


Wali 6/4/2023 10:07:00 PM

thank you for making the questions and answers intractive and selectable.
UNITED STATES


Nawaz 7/18/2023 1:10:00 AM

answers are correct?
UNITED STATES


das 6/23/2023 7:57:00 AM

can i belive this dump
INDIA


Sanjay 10/15/2023 1:34:00 PM

great site to practice for sitecore exam
INDIA


jaya 12/17/2023 8:36:00 AM

good for students
UNITED STATES


Bsmaind 8/20/2023 9:23:00 AM

nice practice dumps
Anonymous


kumar 11/15/2023 11:24:00 AM

nokia 4a0-114 dumps
Anonymous


Vetri 10/3/2023 12:59:00 AM

great content and wonderful to have the answers with explanation
UNITED STATES


Ranjith 8/21/2023 3:39:00 PM

for question #118, the answer is option c. the screen shot is showing the drop down, but the answer is marked incorrectly please update . thanks for sharing such nice questions.
Anonymous


Eduardo Ramírez 12/11/2023 9:55:00 PM

the correct answer for the question 29 is d.
Anonymous


Dass 11/2/2023 7:43:00 AM

question no 22: correct answers: bc, 1 per session 1 per page 1 per component always
UNITED STATES


Reddy 12/14/2023 2:42:00 AM

these are pretty useful
Anonymous


Daisy Delgado 1/9/2023 1:05:00 PM

awesome
UNITED STATES


Atif 6/13/2023 4:09:00 AM

yes please upload
UNITED STATES


Xunil 6/12/2023 3:04:00 PM

great job whoever put this together, for the greater good! thanks!
Anonymous


Lakshmi 10/2/2023 5:26:00 AM

just started to view all questions for the exam
NETHERLANDS


rani 1/19/2024 11:52:00 AM

helpful material
Anonymous


Greg 11/16/2023 6:59:00 AM

hope for the best
UNITED STATES


hi 10/5/2023 4:00:00 AM

will post exam has finished
UNITED STATES


Vmotu 8/24/2023 11:14:00 AM

really correct and good analyze!
AZERBAIJAN


hicham 5/30/2023 8:57:00 AM

excellent thanks a lot
FRANCE


Suman C 7/7/2023 8:13:00 AM

will post once pass the cka exam
INDIA


Ram 11/3/2023 5:10:00 AM

good content
Anonymous


Nagendra Pedipina 7/13/2023 2:12:00 AM

q:32 answer has to be option c
INDIA


Tamer Barakat 12/7/2023 5:17:00 PM

nice questions
Anonymous


Daryl 8/1/2022 11:33:00 PM

i really like the support team in this website. they are fast in communication and very helpful.
UNITED KINGDOM


Curtis Nakawaki 6/29/2023 9:13:00 PM

a good contemporary exam review
UNITED STATES


x-men 5/23/2023 1:02:00 AM

q23, its an array, isnt it? starts with [ and end with ]. its an array of objects, not object.
UNITED STATES


abuti 7/21/2023 6:24:00 PM

cool very helpfull
Anonymous


Krishneel 3/17/2023 10:34:00 AM

i just passed. this exam dumps is the same one from prepaway and examcollection. it has all the real test questions.
INDIA