CLAD Exam Questions
125 real CLAD exam questions with expert-verified answers and explanations. Page 3 of 3.
- Question #101Loops and Timing
This time indicator should update every second, starting when the user clicks the Start Timing button and stopping when the user clicks the Stop Timing button. What values must be...
event structuretimeoutmillisecondswhile loop - Question #102File I/O
Which of the following VIs will generate a human-readable text file?
binary filetext fileread from filefile format - Question #103Data Flow
Which of the following scenarios would cause this VI to be broken?
case structureselector tunnelbroken VIwiring rules - Question #104Loops and Timing
A DAQ Assistant Task is configured to read between -10V and +10V. The DAQ Assistant Task is configured to read between -5V and +5V. Which VI Snippet will continually output all acq...
DAQvoltage rangecontinuous acquisitiondata loss prevention - Question #105Data Types and Structures
The following VI is reading data from thermocouples. What settings for Physical Channel and data index would allow data indicator to display the data from the fourth thermocouple?
array indexingzero-based indexDAQ channelsthermocouple - Question #106Data Types and Structures
What will be displayed in Data Array Out after the VI runs with Data Array In and name input as shown?
cluster arraysearch arraydata manipulationarray output - Question #107Data Types and Structures
What of these could cause the Case Structure's case selector to show numbers instead of the Enum text?
enumcase structuretype definitionselector display - Question #108Data Flow
Why is LabVIEW a data flow programming language?
data flow paradigmexecution modelblock diagramnode execution - Question #109User Interface Design
Which chart update mode should be used to show running data continuously scrolling form left to right across the chart?
waveform chartstrip chartupdate modescrolling display - Question #110Debugging and Error Handling
You have a breakpoint in the code contained within the False case of a Case structure. Will the VI execution pause if the code is the True case of the Case structure is being execu...
breakpointcase structureexecution pausedebugging tools - Question #111SubVIs and Modular Programming
If possible, a Sequence structure should be replaced with a(n):
sequence structurestate machinedesign patternscalability - Question #112Loops and Timing
Which of the following statements is TRUE about the following code segment? Image description: A LabVIEW block diagram showing a While Loop. Inside the loop, a Numeric Constant (10...
while loopshift registerloop executioniteration count - Question #113Data Flow
Which of the following does not conform to the Dataflow programming paradigm?
data flow paradigmlocal variablesrace conditionsprogramming model - Question #114Loops and Timing
For implementing state diagrams that allow future scalability, the best choice for a base structure is?
state machinecase structurescalabilityloop architecture - Question #115Loops and Timing
What does the Value Out indicator display after the VI executes? Image description: A LabVIEW block diagram showing a For Loop with N=0. An 'Empty Array' constant is inside the loo...
for loopauto-indexingN=0array output - Question #116User Interface Design
Which Property Node attribute changes the text color attributes of any digital numeric control from a subVI?
property nodenumeric controltext colorfront panel programming - Question #117Data Types and Structures
If the input to a is 2 and b is 128, what value does the Result indicator display after the VI executes? Image description: A LabVIEW block diagram with two numeric inputs 'a' (val...
bitwise ANDright shiftbinary arithmeticnumeric operations - Question #118Debugging and Error Handling
A VI has Automatic Error Handling enabled. It calls a subVI that has Automatic Error Handling disabled. The Error Out terminal of the subVI is unwired in the calling VI. What does...
automatic error handlingerror propagationsubVI error terminalerror wiring - Question #119SubVIs and Modular Programming
You have a front panel control on a top-level VI that you must control from within a subVI. What must you pass to the subVI?
VI referencefront panel controlsubVI communicationproperty node - Question #120Data Flow
What equation is equivalent to the code? Image description: A LabVIEW block diagram showing three numeric inputs: a, b, c. Inputs 'a' and 'b' are wired to a 'a*a+b*b' (square and s...
data flow tracingmathematical functionsblock diagramnumeric operations - Question #121Loops and Timing
When the program executes, the user presses and then releases Boolean Control with Switch Until Released mechanical action. Assuming that the starting value of Boolean Control is F...
While LoopBoolean mechanical actionshift registerloop condition - Question #122File I/O
How many bytes does LabVIEW write to the file when the code executes? Image description: A LabVIEW block diagram. An 'UnB Array' constant contains a 2D array: [[1, 2, 3], [4, 5, 6]...
Write to Binary Filebinary file formatarray size prependdata type size - Question #123Data Types and Structures
Which data type is NOT accepted by the case selector on a case structure ?
Case structurecase selectordata typesarrays - Question #124Loops and Timing
Auto-indexing at a loop boundary is a feature that allows: (More than one answer may apply).
Auto-indexingFor Looparray traversalloop boundary - Question #125Debugging and Error Handling
Which variable is commonly used to eliminate race conditions by preventing simultaneous access to code or data?
Race conditionssemaphoresynchronizationparallel access