DP-700 Exam QuestionsBrowse all questions from this exam

DP-700 Exam - Question 50


You have a Fabric workspace that contains a lakehouse named Lakehouse1.

You plan to create a data pipeline named Pipeline1 to ingest data into Lakehouse1. You will use a parameter named param1 to pass an external value into Pipeline1. The param1 parameter has a data type of int.

You need to ensure that the pipeline expression returns param1 as an int value.

How should you specify the parameter value?

Show Answer
Correct Answer:

Discussion

5 comments
Sign in to comment
zxc01Option: A
Apr 10, 2025

answer A will get int data output. answer B will get string.

12a2ecc
Apr 14, 2025

Should be "A"; "B" will be result in string, not int: https://learn.microsoft.com/en-us/fabric/data-factory/parameters#parameter-and-expression-concepts

12a2eccOption: A
Apr 14, 2025

Should be "A"; "B" will be result in string, not int: https://learn.microsoft.com/en-us/fabric/data-factory/parameters#parameter-and-expression-concepts

zxc01
Apr 15, 2025

"@pipeline().parameters.myNumber" Returns 42 as a number. This one comes from that document.

tarmapasOption: A
Apr 11, 2025

B get string output

9ExamOption: A
Apr 16, 2025

correct answer is a

13d2a97Option: B
Apr 19, 2025

@{pipeline().parameters.param1} This syntax correctly references the parameter param1 and ensures that it is treated as an integer value within the pipeline expression.