RDCR08301  Exam

Exam # of questions Description  Update
RDCR08301 118 Business Objects Certified Professional - Crystal ... 02/15/2011
[Practice Test]   [Download Study Guide(PDF)]  [Update Exam]

RDCR08301 - Exam Information
  • Description:Business Objects Certified Professional - Crystal Reports 2008
  • Passing Score:0%
  • Practice Test - Number of questions:118 questions
  • Simulation Test - Number of questions:118 questions
  • Simulation Test Duration:120 minutes
  • Has explanations:No

Question of the day

You create the following custom function to convert Celsius to Fahrenheit or vice versa depending on an argument passed to the function: Function(): Global StringVar CurrentTempType; Global NumberVar DegreeAmount; If CurrentTempType = "F" then ((DegreeAmount - 32) * 0.55) else if CurrentTempType = "C" then ((Degreeamount * 1.8) + 32); EndIf: Which change must you make to the code to successfully save the function?

Answer(s)

  1. Use an array variable.
  2. Move the argument list to the end of the formula.
  3. Change the variable scope.
  4. Convert the formula to Basic syntax.
Correct Answer

Change the variable scope.