Month: February 2014

CLAD 02-30

CLAD 02-30

In the figure below, the output of Array Size is…

  1. A 1-D Array of {-25, 25, 50}
  2. A 1-D Array of {-25, 25}
  3. A 2-D Array of {{-25, -50, -50}, {50, 25, 25}}
  4. A 1-D Array of {75, -50, 25}

CLAD 02-09

CLAD 02-09

In the figure below, the output of Array Size is…

  1. 1D Array of {2, 3}
  2. 1D Array of {3, 2}
  3. 2
  4. None of the above.

CLAD 02-05

CLAD 02-05

The most efficient method for creating an array is:

  1. Placing a Build Array function in a While Loop.
  2. Initializing an array and then replacing elements in a While Loop.
  3. Using a For Loop with Auto-Indexing.
  4. Using a While Loop with Auto-Indexing.

CLAD 01-28

CLAD 01-28

Which of the following statements is NOT valid?

  1. You can make a Cluster of Clusters.
  2. You can make an Array of Arrays.
  3. You can make a Cluster of Arrays.
  4. You can make an Array of Clusters.

CLAD 03-04

CLAD 03-04

Which server must be started before running DataSocket VIs?

  1. HTTP Server
  2. DataSocket Server
  3. FTP Server
  4. OPC Server

CLAD 01-21

CLAD 01-21

What is the value in Shift Register Answer after the following code has executed?

  1. 16
  2. 24
  3. 32
  4. 10

CLAD 01-17

CLAD 01-17

Auto-indexing at a loop boundary is a feature that allows:
(More than one answer may apply).

  1. Arrays to be automatically traversed from one iteration to the next.
  2. Array functions to automatically index array elements.
  3. Functions that use arrays to automatically index them.
  4. Arrays to be automatically accumulated at loop boundaries.

CLAD 02-39

CLAD 02-39

Which combination of words correctly completes the following statement?

The _________________ indicates the total number of times the loop will execute and the ______________ returns the number of times the loop has executed minus one.

  1. count terminal, ; conditional terminal, .
  2. conditional terminal, ; iteration terminal, .
  3. count terminal, ; iteration terminal, .
  4. conditional terminal, ; count terminal, .

CLAD 03-35

CLAD 03-35

Which of the following statements is true about the iteration terminal ?

  1. It returns the number of times the loop has executed.
  2. It returns the number of times the loop has executed, plus one.
  3. It returns the number of times the loop has executed, minus one.
  4. It returns a constant number.

CLAD 03-26

CLAD 03-26

Under which of the following conditions does a For Loop stop executing?

  1. When a true value is present at the conditional terminal and the conditional terminal is .
  2. When the value of the iteration terminal, , is one less than the value of the count terminal, .
  3. When the value of the iteration terminal, , is one more than the value of the count terminal, .
  4. None of the above.
Top