Category: LabVIEW Programming Principles

CLAD 04-40

CLAD 04-40

What is the value in after substring upon completion of the following code?

  1. world!
  2. rld!
  3. h hello world!
  4. <blank>

CLAD 04-34

CLAD 04-34

What is the value in XOR Result after the following code has executed?

  1. 0
  2. 1
  3. True
  4. False

CLAD 02-12

CLAD 01-39

What is the result in new string after the following code has executed?

  1. Hello to you!
  2. Hello Two you!
  3. Hello to you!!
  4. Helloto you!

CLAD 02-18

CLAD 02-18

You need to programmatically update the value in a numeric control. Which is the most appropriate strategy?

  1. Use a Functional Global Variable
  2. Use a Local Variable
  3. Set the desired value as the default value.
  4. Use a Data Value Reference

CLAD 03-09

CLAD 03-09

You have a control on the front panel of a VI and you need to modify one of its properties at run time. Which of the following is the best approach you would take?

  1. Create an implicit property node and select the property to modify.
  2. Create a control reference, pass the reference to a property node and select the property to modify.
  3. Create a linked shared variable and select the property to modify the property.
  4. Create a local variable and select the property to modify.

CLAD 01-40

CLAD 01-40

Which of the following is the best method to update an indicator on the front panel?

  1. Use a Value Property Node.
  2. Wire directly to the indicator terminal.
  3. Use a local variable.
  4. Use a functional global variable.

CLAD 03-21

CLAD 03-21

You develop a subVI that only outputs a value and need to use this subVI in a (calling) VI. Which of the following is the best way to enforce dataflow to control the execution of the subVI.

  1. Use the subVI in a Sequence structure.
  2. Modify the subVI to have dummy inputs that can be sued from the calling VI.
  3. Modify the subVI to have Error clusters that can be used from the calling VI.
  4. Modify the subVI to have a global variable and use it from the calling VI.

CLAD 02-17

CLAD 02-17

Can a wire be used to pass data between loops that are intended to run in parallel?

  1. Yes
  2. No

CLAD 04-21

CLAD 04-21

Which of the following statements is TRUE regarding the use of Coercion Dots?

  1. Coercion Dots improve program performance
  2. Coercion Dots represent a conversion from one data type to another
  3. Coercion Dots increase memory usage
  4. Both A and B
  5. Both B and C
Tagged with:

CLAD 03-40

CLAD 03-40

Which VI memory components are ALWAYS resident for a subVI?

[More than one answer may be correct.]

  1. Data Space
  2. Front Panel
  3. Block Diagram
  4. Code
Top