You need to ensure that all of the text boxes in the table headers use the correct business unit font properties

You are developing a new SQL Server Reporting Services (SSRS) report in SQL Server
Data Tools (SSDT).
The report must define a report parameter to prompt the user for the business unit. Each
business unit has a unique font scheme combination of font and size properties.
You need to ensure that all of the text boxes in the table headers use the correct business
unit font properties.
What should you do? (More than one answer choice may achieve the goal. Select the BEST
answer.)

You are developing a new SQL Server Reporting Services (SSRS) report in SQL Server
Data Tools (SSDT).
The report must define a report parameter to prompt the user for the business unit. Each
business unit has a unique font scheme combination of font and size properties.
You need to ensure that all of the text boxes in the table headers use the correct business
unit font properties.
What should you do? (More than one answer choice may achieve the goal. Select the BEST
answer.)

A.
Add one report variable for FontFamily Assign it with an expression to return the
appropriate colors. For each header text box, set the Color and FontSize properties by using
the variables.

B.
For each header text box, assign expressions to the FontFamily and FontSize properties.

C.
Add two report variables named FontFamily and FontSize. Assign them with expressions
to return the appropriate colors. For each header text box, use expressions to set the
FontFamily and FontSize properties by using the variables.

D.
Add two Microsoft Visual C# functions to the code block of the report to implement
FontFamily and FontSize functions. For each header text box, use expressions to set the
FontFamily and FontSize properties by using the functions.



Leave a Reply 11

Your email address will not be published. Required fields are marked *


Ralph

Ralph

As Raul wrote c# is not allowed, so the answer D is not correct. I would recommend the C, as this would make the least effort. Once defined variable that will be used in all the others control properties of the report.

jak

jak

1 variable should be enough to adjust font size and font scheme ?
no?

derek cao

derek cao

Each business unit has a unique font scheme combination of font and size properties.

so A seems to be better.

Hugo

Hugo

The text mentions FONT(font Family) and SIZE properties. Nothing about COLOR (??).

Moreover, two parameters seems legit for me. One combination per Business units and you obtain your “font” (including size) properties.

So C for me. 🙂

Myra

Myra

The question doesn’t mention color, but all the answers are related to color. So here are three things:
– FontFamily
– FontSize
– Color

B and D are out of consideration obviously.
A doesn’t mention how to define FontSize, so I would vote for C.

Shailesh Panday

Shailesh Panday

A is better bet, you need to control the font scheme depending on the business unit selected.. you don’t need two variables to do this.

Cray

Cray

C is the best option