Вы находитесь на странице: 1из 57

The safer , easier way to help you pass any IT exams.

Exam : CLAD

Title : Certified LabVIEW


Associate Developer
Examination

Version : V9.02

1 / 56
The safer , easier way to help you pass any IT exams.

1.How do you document a VI so that the description appears in the Show Context Help popup window?
A. Use the VI Properties Documentation window
B. Type in the Show Context Help window
C. Create a free label on the front panel
D. Edit the LabVIEW help files
Answer: A

2.Can a wire be used to pass data between loops that are intended to run in parallel?
A. Yes
B. No
Answer: B

3.Which of the following describes a Tab Control?


A. A control that outputs ASCII values equal to the selected tab label
B. A type of enumerated control
C. A control that outputs a cluster of the controls / indicators on the tabs
D. A controls that outputs the tab order of the controls on the front panel
Answer: B

4.What is an advantage of using a Strictly Typed VI ref num?


A. The data types of the target VI are known at compile time
B. The data types passed to the VI can change programmatically
C. You can flatten the data to a string to improve code performance
D. Causes dynamically loaded VIs to be loaded at the start of execution
Answer: A

5.A coercion dot indicates that:


A. The data types are consistent
B. A polymorphic operation will be performed on the data
C. A data buffer is created to handle data conversion
D. Data values are being coerced because they are out of range
Answer: C

6.Which of the following statements is true about the following block diagram?

A. The loop will execute once and the iteration terminal, , will output a value of one

B. The loop will execute once and the iteration terminal, , will output a value of zero

2 / 56
The safer , easier way to help you pass any IT exams.

C. The loop will execute infinitely and the program will have to be aborted

D. The loop will not execute and the iteration terminal, , will return a null value

Answer: C

7.Which of the following can not be used to transfer data?


A. Semaphores
B. Queues
C. Notifiers
D. Local variables
Answer: A

8.Which of the following terminals controls how many times a For loop executes?

A. Option A
B. Option B
C. Option C
D. Option D
Answer: D

9.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?
A. Create an implicit property node and select the property to modify
B. Create a control reference, pass the reference to a property node and select the property to modify
C. Create a linked shared variable and select the property to modify the property
D. Create a local variable and select the property to modify
Answer: A

10.Formula nodes accept which of the following operations?


A. Basic programming language instructions Input and Print
B. Embedding of SubVIs within the Formula Node
C. Pre and post increment (++) and decrement (--) as in the C language
D. The use of nested Formula Node structures
Answer: C

11.Which of the following is the best method to update an indicator on the front panel?
A. Use a Value property node
B. Wire directly to the indicator terminal

3 / 56
The safer , easier way to help you pass any IT exams.

C. Use a local variable


D. Use a functional global variable
Answer: B

12.Which of the following functions assembles Cluster elements by their owned labels?
A. Unbundle by Name
B. Unbundle
C. Bundle by Name
D. Bundle
Answer: C

13.What is the output of the Build Array function in the following block diagram when Concatenate Inputs
is selected?

A. 1-D Array of {1, -4, 3, 7, -2, 6}


B. b.1-D Array of {1, 7, -4, -2, 3, 6}
C. c.2-D Array of {{1, -4, 3, 0}, {7, -2, 6}}
D. d.2-D Array of {{1, -4, 3}, {7, -2, 6}}
Answer: A

14.What is the output of the Initialize Array function after the following code has executed?
A. a.1-D Array of {3, 3, 3, 3}
B. b.1-D Array of {4, 4, 4}
C. c.1-D Array of {3, 4}
D. d.1-D Array of {4, 3}
Answer: A

15.What is one disadvantage of using the State Machine VI architecture?


A. A State Machine can only traverse states in order
B. If two state changes occur at the same time, only the first state change will be handled and the second
will be lost
C. The diagram becomes significantly larger when changing from a general architecture to a State
Machine
D. State Machines cannot acquire data or use DAQ functions
Answer: B

16.What is the best method to stop a While loop on an error condition?


A. Compare the Status boolean of an error cluster with a constant and wire it to the Stop terminal
B. Connect the error wire directly to the Stop terminal
C. Create an Event structure to handle the error event
D. Use the Error Handler VI to automatically handle the error

4 / 56
The safer , easier way to help you pass any IT exams.

Answer: B

17.What mechanical action of a Boolean would you use to mimic a button on a Windows dialog?
A. Switch Until Released
B. Switch When Released
C. Latch Until Released
D. Latch When Released
Answer: D

18.Which combination of words correctly completes the following statement?


Unlike __________, which display an entire waveform that overwrites the data already stored,
___________ update periodically and maintain a history of the data previously stored.
A. Graphs; Charts
B. Charts; Plots
C. Plots; Graphs
D. C harts; Graphs
Answer: A

19.In what instance would you use the Probe tool rather than Highlight Execution?
A. To see the flow of data
B. To see the value of a wire in real-time
C. To look into a SubVI, as the process is running
D. To slowdown the VI and show data values in wires
Answer: B

20.You customize a control, select Control from the Type Def. Status pull-down menu, and save the
control as a .ctl file. You then use an instance of the custom control on your front panel window.
If you open the .ctl file and modify the control, does the control on the front panel window change?
A. Yes
B. No
Answer: B

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?
A. Use the SubVI in a Sequence structure
B. Modify the SubVI to have dummy inputs that can be used from the calling VI
C. Modify the SubVI to have Error clusters that can be used from the calling VI
D. Modify the SubVI to have a global variable and use it from the calling VI
Answer: C

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

5 / 56
The safer , easier way to help you pass any IT exams.

A. 16
B. 24
C. 32
D. 10
Answer: C

23.Which Chart update mode should be used to draw new data from left to right, then clear the chart and
draw new data again from left to right?
A. Strip Chart
B. Scope Chart
C. Sweep Chart
D. Step Chart
Answer: B

24.Which of the following illustrates an advantage of a global variable over a local variable?
A. A global variable can pass data between two independent VIs running simultaneously
B. Only the global variable can pass array data, local variables cannot
C. Global variables follow the dataflow model, and therefore cannot cause race conditions
D. Global variables do not require owned labels to operate
Answer: A

25.Which timing function (VI) is the best choice for timing control logic in applications that run for
extended periods of time?

A. Option A

6 / 56
The safer , easier way to help you pass any IT exams.

B. Option B
C. Option C
D. Option D
Answer: C

26.Under which of the following conditions does a For loop stop executing?
A. When a false value is present at the conditional terminal and the conditional terminal is
B. When the value of the iteration terminal, , is one less than the value of the count terminal,
C. When the value of the iteration terminal, , is one more than the value of the count terminal,
D. None of the above
Answer: B

27.You are inputting data that represents a circle. The circle data includes an x position, a y position, and
a radius. All three pieces of data are double-precision. In the future, you might need to store the color of
the circle, represented as an integer.
How should you represent the circle on your front panel window?
A. Three separate controls for the two positions and the radius.
B. A cluster containing all of the data.
C. A type definition containing a cluster.
D. An array with three elements.
Answer: C

28.Which of the following will cause an event to be captured by the LabVIEW Event Structure?
A. Changing a value on a Front Panel control via a mouse click
B. Update of a Front Panel control using a property node
C. Programmatic update of a Front Panel control via a control reference
D. Using VI Server to update a Front Panel control
Answer: A

29.Which of the following does not conform to data flow programming paradigm?
A. Shift Registers
B. Tunnels
C. SubVIs
D. Local Variables
Answer: D

30.You must store data that other engineers must analyze with Microsoft Excel.
Which file storage format should you use?
A. Tab-delimited ASCII
B. Custom binary format
C. TDM
D. Data log
Answer: A

7 / 56
The safer , easier way to help you pass any IT exams.

31.What is the result of the following Array addition?

A. a.1-D Array of {80, 20, 40, 10, -60}


B. b.1-D Array of {120, 30, -60}
C. c.1-D Array of {120, 30}
D. d.2-D Array of {{120, 90, 20}, {60, 30, -40}}
Answer: C

32.Which of the following statements is false?


A. A SubVI connector pane defines where to wire inputs and outputs
B. The color of a SubVI connector pane terminal matches the data type it is connected to
C. You must have an icon/connector to use a SubVI
D. A SubVI icon can be edited from the functions palette
Answer: D

33.The most efficient method for creating an array is:


A. Using a For loop with Auto-indexing
B. Placing a build array function in a While loop
C. Initializing an array and then replacing elements in a While loop
D. Using a While loop with Auto-Indexing
Answer: A

34.The following block diagram represents which common type of VI architecture?

8 / 56
The safer , easier way to help you pass any IT exams.

A. Multiple Case Structure VI


B. General VI
C. State Machine VI
D. Parallel Loop VI
Answer: C

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


A. It returns the number of times the loop has executed
B. It returns the number of times the loop has executed, plus one
C. It returns the number of times the loop has executed, minus one
D. It returns a constant number
Answer: C

36.For implementing state diagrams that allow future application scalability, the best choice for a base
structure is?
A. Sequence structure
B. Case structure
C. Formula node
D. Object-Oriented structure
Answer: B

37.Which of the following Block Diagrams could produce this result in Waveform Graph?

9 / 56
The safer , easier way to help you pass any IT exams.

A. Option A

10 / 56
The safer , easier way to help you pass any IT exams.

B. Option B
C. Option C
D. Option D
Answer: A

38.If an input name on the Show Context Help window is in bold for a SubVI, which of the following
conditions are true? (Choose all apply)
A. Input values must be scalar.
B. An input is recommended, but not required.
C. An input is required.
D. A broken run arrow will result unless the input is wired.
Answer: CD

39.Which of the following apply to Property Nodes? (Choose all apply)


A. Property Nodes allow attributes of front panel objects to be programmatically manipulated.
B. Property Nodes can be used to u pdate the values contained in a front panel object.
C. More than one Property Node can be used for a single front panel object.
D. Property Nodes contained in a SubVI will always cause the front panel to be loaded in memory.
Answer: ABCD

40.Which VI memory components are ALWAYS S resident for a SubVI? (Choose all apply)
A. Data Space
B. Front Panel
C. Block Diagram
D. Code
Answer: AD

41.Which of the following statements regarding Array constants are NOT true?
A. When you create an Array constant on the block diagram, it is not visible on the Front Panel.
B. You cannot resize an Array constant to include more than one element.
C. You can copy or drag an existing Array on the Front Panel to the Block Diagram to create a constant of
the same data type.
D. All array operations can be performed on an Array constant
Answer: B

42.In the figure below, what will Result equal when this calculation is executed?

11 / 56
The safer , easier way to help you pass any IT exams.

A. 55
B. 70
C. 65
D. Indeterminate
Answer: B

43.The function of a Cluster is to:


A. Allow grouping of mixed data types into logical structures.
B. Present data on the Front Panel using charts or graphs.
C. Provide a means of differentiating between data types on the Block Diagram.
D. Separate data objects by data type on the Front Panel.
Answer: A

44.Can Probes be attached to objects on the Front Panel?


A. Yes
B. No
Answer: B

45.What is the result in Array after the following code has executed?

A. A 1-D array of {1, 4, 3, 2, 1, 0}


B. A 1-D array of {1, 8, 0, 1, 2, 3, 4, 6, 2}
C. A 1-D array of {1, 4, 3, 2, 1, 0, 8, 6, 2}
D. A 1-D array of {1, 8, 0, 1, 2, 2, 9}
Answer: C

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

12 / 56
The safer , easier way to help you pass any IT exams.

A. Hello to you!
B. Hello Wto you!
C. Hello to you!!
D. Helloto you!
Answer: A

47.Which of the following display options are available for strings on the Front Panel?
A. ‘\’ Codes
B. Password
C. Hex
D. All of the above
Answer: D

48.What is the result in subarray after the following code has executed?

A. A 1-D Array of {8, 5, 7}


B. A 1-D Array of {10, 8, 5}
C. A 1-D Array of {10, 8, 5, 7}
D. A 1-D Array of {7, 10, 8, 5}
Answer: C

49.In the figure below, the output of Array Size is

A. a 1-D Array of {2, 3}


B. a 1-D Array of {3,2}

13 / 56
The safer , easier way to help you pass any IT exams.

C. 2
D. None of the above
Answer: A

50.What is the result of the following Array subtraction?

A. A 1-D Array of {-25, 25, 50}


B. A 1-D Array of {-25, 25}
C. A 2-D Array of {{-25, -50, -50}, {50, 25, 25}}
D. A 1-D Array of {75, -50, 25}
Answer: B

51.Which of the following allows you to plot any set of points, evenly distributed or not?
A. Waveform Graph
B. Waveform Chart
C. XY Graph
D. Both A. and C.
Answer: C

52.Which of the following produces this XY Graph?

14 / 56
The safer , easier way to help you pass any IT exams.

A. Option A
B. Option B
C. Option C
D. Option D
Answer: B

53.Which of the graphs below matches the output in the Waveform Graph indicator after the following
code has executed?

15 / 56
The safer , easier way to help you pass any IT exams.

16 / 56
The safer , easier way to help you pass any IT exams.

17 / 56
The safer , easier way to help you pass any IT exams.

A. Option A
B. Option B
C. Option C
D. Option D
Answer: D

54.The Wait function can be added to While Loops:


A. To free up available memory.
B. To allocate memory used by the CPU.
C. To allow the processor time to complete other tasks.
D. To reserve which processor the code is running on.
Answer: C

55.Which of the following methods is NOT a method to create a 1-D Array?


A. Place an Array Shell on the Front Panel and drag a Control into the shell.
B. Use a While Loop with auto-indexing disabled.
C. Use a For Loop with auto-indexing enabled.
D. Use the Initialize Array function.
Answer: B

56.Which of the following statements is true regarding the execution of the following code?
A. The loop will iterate 51 times.
B. The loop will iterate 50 times.
C. The loop will iterate 49 times.
D. A For Loop that has a 50 wired to the count terminal will perform the same operation.
Answer: A

57.Which of the following accurately describes the output that results from execution of the following
loop?

A. The last three values from the DAQ Assistant will be displayed.

18 / 56
The safer , easier way to help you pass any IT exams.

B. A running average of all measurements will be displayed.


C. An average of the last four measurements will be displayed.
D. None of the above
Answer: C

58.Which of the following statements is NOT valid?


A. You can make a Cluster of Clusters.
B. You can make an Array of Arrays.
C. You can make a Cluster of Arrays.
D. You can make an Array of Clusters.
Answer: B

59.Which of the following statements is true?


A. The default setting for a tunnel into or out of a For Loop has auto-indexing enabled if the data being
passed is an array.
B. The default setting for a tunnel into or out of a While Loop has auto-indexing disabled if the data being
passed is an array.
C. Both A. and B. are trued.
D. None of the above
Answer: C

60.Which of the following statements is true regarding the use of Coercion Dots?
A. Coercion Dots improve program performance.
B. Coercion Dots represent a conversion from one data type to another.
C. Coercion Dots increases memory usage
D. Both A. and B.
E. Both B. and C.
Answer: E

61.Which of the following graphs matches the result in Comparison Values after the following code has
executed?

19 / 56
The safer , easier way to help you pass any IT exams.

20 / 56
The safer , easier way to help you pass any IT exams.

A. Option A
B. Option B
C. Option C
D. Option D
Answer: A

62.Which combination of words correctly completes the following statement?


Unlike__________, which display only the most recent array of values written to them, ___________
update periodically and maintain a history of the past data.
A. graphs; charts
B. charts; plots
C. plots; graphs
D. charts; graphs
Answer: A

63.Which of the following will allow you to have multiple plots on a Waveform Graph?
A. Bundle two 1D arrays of X and Y data together for each plot. Then build an array of these clusters and
wire it to the Waveform Graph indicator.
B. Build an n-dimensional array of data with each plot in a separate row (or column) in the array, then wire
the array to the Waveform Graph indicator.
C. Bundle the elements of each waveform into a cluster and build an array of these clusters, then wire the
array to the Waveform Graph indicator.
D. Both B. and C.
Answer: D

64.Which of the following is NOT a traditional debugging feature used to help find errors in a VI:
A. Highlight Execution.
B. Single Stepping
C. Breakpoints
D. Stop Values
Answer: D

65.What VI is typically used to terminate an Error Cluster wire and to display any error message?
A. Merge Errors
B. One Button Dialog/Two Button Dialog
C. Generate Front Panel Activity
D. Simple Error Handler
Answer: D

66.The following figure is an example of which common type of VI architecture?


A. Multiple Case Structure VI
B. General VI
C. State Machine VI
D. Parallel Loop VI

21 / 56
The safer , easier way to help you pass any IT exams.

Answer: C

67.Clicking on the _________ button allows you to bypass a node in the Block Diagram without
single-stepping through the node.
A. Step Into
B. Step Over
C. Step Out
D. Step Through
Answer: B

68.Variants are used for all of the following but:


A. Passing values between programs written with different compilers
B. Allowing software to achieve a greater degree of generality
C. Representing any data type
D. Converting from fixed point to floating point data
Answer: D

69.You can use all of the following data types as inputs to the case selector terminal except:
A. Doubles
B. Enumerated type values
C. Strings
D. Integers
Answer: A

70.The Error list shows all of the following but:


A. Items with errors
B. Errors and warnings
C. Details about the warnings
D. Error Codes
Answer: D

71.The following breakpoint does which of the following:


A. Causes the VI to abort
B. Causes the VI to pause
C. Causes the VI to single step over the addition
D. Causes the VI to single step over the indicator
Answer: B

72.Which of the following is NOT a component of an Error Cluster?


A. Status.
B. Code.
C. Source.
D. VI name
Answer: D

22 / 56
The safer , easier way to help you pass any IT exams.

73.What is the value in XOR Result after the following code has executed?
A. 0
B. 1
C. True
D. False
Answer: B

74.Which of the following statements regarding the index of Arrays are NOT true?
A. The index is used to access a particular element of an Array.
B. The index ranges from 1 to n.
C. A 2-D Array has both a column index and a row index.
D. The index ranges from 0 to n-1.
Answer: B

75.Clusters provide a user with which of the following benefits?


A. Clusters allow a logical grouping of related data elements.
B. Clusters increase the number of Connector Pane terminals of SubVI’s.
C. Clusters help to reduce wire clutter on the Block Diagram.
D. Both A. and C.
Answer: D

76.Which chart update mode plots new data from left to right, then clears the chart and plots the newer
data?
A. Strip Chart
B. Scope Chart
C. Sweep Chart
D. Step Chart
Answer: B

77.Which of the following methods will create an XY Graph with two plots?
A. Create a single cluster from two arrays of X values and two arrays of Y values in an X, Y, X, Y pattern.
B. Bundle the X and Y array pairs together into two clusters and then create an array of these two
clusters.
C. Bundle the X and Y array pairs together into two clusters and create a cluster of these two clusters.
D. Create a single array of each of the X arrays and Y arrays in an X, Y, X, Y pattern.
Answer: B

78.Which of the following terminals controls how many times a For Loop will execute?
A. Option A
B. Option B
C. Option C
D. Option D
Answer: D

23 / 56
The safer , easier way to help you pass any IT exams.

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

A. world!
B. rld!
C. h hello world!
D. <blank>
Answer: B

80.Which of the following cannot be used to transfer data?


A. Local variables
B. Queues
C. Semaphores
D. Notifiers
Answer: C

81.The VI begins execution with the values of X=255 and Y=9.


What will be the value of x+y after the VI completes execution?

A. 8
B. 0
C. 264
D. 255

24 / 56
The safer , easier way to help you pass any IT exams.

Answer: C

82.What value will be displayed in Concatenated Array indicator when the VI completes execution?

A. Option
B. Option
C. Option
D. Option
Answer: A

83.Consider the VI and user actions.

25 / 56
The safer , easier way to help you pass any IT exams.

What value will be displayed in the Boolean indicator at 7 seconds and 17 seconds, respectively?
A. TRUE, TRUE
B. FALSE, TRUE
C. FALSE, FALSE
D. TRUE, FALSE
Answer: A

84.To determine the frequency distribution of a signal, the sampling rate must be at least.
A. greater than ten times the highest frequency in the signal
B. greater than the highest frequency of the signal
C. greater than twice the highest frequency in the signal
D. greater than five times the highest frequency in the signal
Answer: C

85.What value will be displayed in the array w/ subset deleted and the deleted portion indicators after the
VI completes execution?

26 / 56
The safer , easier way to help you pass any IT exams.

27 / 56
The safer , easier way to help you pass any IT exams.

A. Option A
B. Option B
C. Option C
D. Option D
Answer: D

86.The operator of this VI presses the run arrow, then presses the Start button.
After 3 seconds the Process SubVI sends a “True” value for “Process Complete.”
What is the entire sequence of States this VI goes through, starting when the run arrow is pressed?

28 / 56
The safer , easier way to help you pass any IT exams.

A. Run, Wait for Start, End, Wait for Start


B. Run, Wait for Start, End
C. Wait for Start, Run, End, Wait for Start
D. Wait for Start, Run, End
Answer: B

87.The Time Target (s) control is set for 10 seconds.


Which VI will collect all the data into a 1D array to be processed later?

29 / 56
The safer , easier way to help you pass any IT exams.

A. Option A
B. Option B
C. Option C
D. Option D
Answer: C

88.The SubVI PROCESS represents a test that outputs one line of text each time the test runs. When the
VI stops, we need to have a log showing every line of data output from PROCESS.
Which of the following VIs meets all these requirements?

30 / 56
The safer , easier way to help you pass any IT exams.

A. Option A
B. Option B
C. Option C
D. Option D
Answer: C

31 / 56
The safer , easier way to help you pass any IT exams.

89.The following code executes with the error in control configured as shown.
What value will be displayed in the error out indicator when the VI completes execution?

32 / 56
The safer , easier way to help you pass any IT exams.

A. Option A
B. Option B
C. Option C
D. Option D
Answer: A

90.This VI is started with a value of 7 in the Repetitions control. The SubVI Grind.vi returns an error the
fifth time it runs.
What is the value in the Numeric indicator after this VI has run?

33 / 56
The safer , easier way to help you pass any IT exams.

A. 6
B. 5
C. 4
D. 7
Answer: B

91.Which of the following is a manual step when creating a SubVI from a section of Code using
Edit>Create SubVI?
A. Select the section of the block diagram you want to convert to a SubVI
B. Connect the controls and indicators on the front panel to terminals on the connector pane
C. Assigning terminals to the appropriate indicators and controls
D. Configure the Connector Pane to have enough terminals for all inputs and outputs
Answer: A
Explanation:
Selected section of the block diagram is replaced with an icon for the subVI. Reference:
http://www.ni.com/white-paper/7593/en/

92.The DAQmx task is set to acquire at a rate of 1000 Hz.


Which VI Snippet acquires and plots only the maximum value for each set of 1000 samples, for a period
of 5 seconds?

34 / 56
The safer , easier way to help you pass any IT exams.

35 / 56
The safer , easier way to help you pass any IT exams.

A. Option A
B. Option B
C. Option C
D. Option D
Answer: A

93.Which VI will acquire one temperature data point every 5 minutes for 12 hours?

A. Option A
B. Option B
C. Option C
D. Option D
Answer: B

36 / 56
The safer , easier way to help you pass any IT exams.

94.Which Waveform Graph could be a representation of the data in the Numeric Array control?

37 / 56
The safer , easier way to help you pass any IT exams.

38 / 56
The safer , easier way to help you pass any IT exams.

A. Option A
B. Option B
C. Option C
D. Option D
Answer: C

95.The VI begins execution with the value of Numeric as 5, at the end of the 4th loop iteration (i=3), the
user changes the front panel control Numeric to value 2.
What value will be displayed in the front panel Numeric indicator after the VI completes execution?

A. 3
B. 10
C. 5
D. 6
Answer: C

96.Which code will remove any and all samples in the array that are between 2 and 3, exclusive?

39 / 56
The safer , easier way to help you pass any IT exams.

40 / 56
The safer , easier way to help you pass any IT exams.

Answer: C

97.Which is the correct order for the signal to propagate through components when acquiring a signal?
A. Sensor>Terminal Block>DAQ>LabVIEW
B. DAQ>Sensor>Terminal Block>LabVIEW
C. Terminal Block>LabVIEW>Sensor>DAQ
D. Sensor>DAQ>Terminal Block>LabVIEW
Answer: B

98.You create an indicator from the shift register terminal on the right side of the loop.

What will that indicator look like after the VI completes execution?

A. Option A
B. Option B
C. Option C
D. Option D
Answer: A

99.After this VI has run 3 times, what value is displayed in the indicators Loop Iterations and Time?

41 / 56
The safer , easier way to help you pass any IT exams.

A. Loop Iterations = 3, Time = Seconds between the 2nd and 3rd time the VI ran.
B. Loop Iterations = 0, Time = Seconds between the 1st and 3rd time the VI ran.
C. Loop Iterations = 3, Time = Seconds between the 1st and 3rd time the VI ran.
D. Loop Iterations = 0, Time = Seconds between the 2nd and 3rd time the VI ran.
Answer: A

100.Your application has prices stored as numeric values in the format XXX.XX. Your VI must convert the
price to text in the format $XXX.XX and make the text price available for later display. The original
numeric must also be retained unchanged.
Which VI best meets these requirements?

A. Option A
B. Option B
C. Option C
D. Option D

42 / 56
The safer , easier way to help you pass any IT exams.

Answer: D

101.Which VI will acquire data indefinitely until the stop button is pressed or an error occurs?

A. Option A
B. Option B
C. Option C
D. Option D
Answer: A

102.What string will be displayed in the Result indicator after the VI completes execution?

43 / 56
The safer , easier way to help you pass any IT exams.

A. ’’’’12345
B. 12345
C. ’’’’012345
D. 012345
Answer: C

103.The SubVI is opened and then run three times.

What is the value of Sum when the VI completes execution?


A. Indeterminate
B. 15
C. 5
D. 10
Answer: B

104.When run, this VI will:

44 / 56
The safer , easier way to help you pass any IT exams.

A. Error because no file path and no prompt are specified


B. Write to a default text file in the application directory
C. Prompt for the location of an existing file and write to that file
D. Prompt for a location to create a text file and write to that file
Answer: D

105.Which code will produce this front panel? (Time zone set to UTC+00:00)

45 / 56
The safer , easier way to help you pass any IT exams.

46 / 56
The safer , easier way to help you pass any IT exams.

A. Option A
B. Option B
C. Option C
D. Option D
Answer: A

106.The Current 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 entered in the Start Timeout and Stop Timeout constants in the Start Timing and the
Stop Timing event structure cases?

47 / 56
The safer , easier way to help you pass any IT exams.

A. Start Timeout = 1, Stop Timeout = -1


B. Start Timeout = 1, Stop Timeout = 0
C. Start Timeout = 1000, Stop Timeout = -1
D. Start Timeout = 1000, Stop Timeout = 0
Answer: C

48 / 56
The safer , easier way to help you pass any IT exams.

107.Which of the following VIs will generate a human-readable text file?

49 / 56
The safer , easier way to help you pass any IT exams.

A. Option A
B. Option B
C. Option C
D. Option D
Answer: B

108.Which of the following scenarios would case this VI to be broken?

A. String has a default value other than “test1” or “test2”


B. Handling more than one value of String in the same case
C. The case structure does not have a Default case
D. The selector tunnel is not wired within the case structure
Answer: C

109.The DAQmx Read Task is configured to read between -10V and +10V. The DAQmx Write Task is
configured to write between -5V and +5V.
Which VI Snippet will continually output all acquired values without error or loss of data?

50 / 56
The safer , easier way to help you pass any IT exams.

51 / 56
The safer , easier way to help you pass any IT exams.

A. Option A
B. Option B
C. Option C
D. Option D
Answer: B

110.What is the behavior of this VI when the code executes?

A. Loop 1 runs after Loop 2 stops


B. Loop 1 and Loop 2 are deadlocked
C. Loop 2 runs after Loop 1 stops
D. Loop 1 and Loop 2 run simultaneously
Answer: D

111.All eight inputs on cDAQ1Mod2 are reading data from thermocouples.


What settings for Physical Channel and data index would allow data indicator to display the data from the
fourth thermocouple?

52 / 56
The safer , easier way to help you pass any IT exams.

A. Option A
B. Option B
C. Option C
D. Option D
Answer: B

112.After this VI runs, what will be the size of the Data indicator array?

53 / 56
The safer , easier way to help you pass any IT exams.

A. 80 rows, 5000 columns


B. 20 rows, 5000 columns
C. 401 rows, 5000 columns
D. 81 rows, 5000 columns
Answer: D

113.What will be displayed in Data Array Out after the VI runs with Data Array In and name input as
shown?

54 / 56
The safer , easier way to help you pass any IT exams.

A. Option A
B. Option B
C. Option C
D. Option D
Answer: A

114.What of these could cause the Case Structure’s case selector to show numbers instead of the Enum
text?

55 / 56
The safer , easier way to help you pass any IT exams.

A. The Case Structure Options are set to display Enum as Numeric


B. The Enum constants are not Type Defs
C. The Coercion dots prevent the text from displaying
D. The Enum constants have inconsistent sets of cases
Answer: A

56 / 56

Вам также может понравиться